/* /Components/Home/ContactForm.razor.rz.scp.css */
/* Wrapper for the contact form */
.contact-form-wrapper[b-nw5s8bfk36] {
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 2rem 1rem;
    box-sizing: border-box;
}

/* Main contact box */
.contact-box[b-nw5s8bfk36] {
    max-width: 600px;
    width: 100%;
    background: #fff;
    border-radius: 8px;
    padding: 2rem;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

    /* Logo */
    .contact-box .logo[b-nw5s8bfk36] {
        display: block;
        max-width: 200px;
        width: 100%;
        margin: 0 auto 1rem auto;
    }

/* Contact details section */
.contact-details[b-nw5s8bfk36] {
    text-align: center;
    line-height: 1.6;
    font-size: 0.95rem;
    color: #333;
}

    .contact-details h3[b-nw5s8bfk36] {
        margin-bottom: 0.5rem;
    }

    .contact-details a[b-nw5s8bfk36] {
        color: #007bff;
        text-decoration: none;
    }

        .contact-details a:hover[b-nw5s8bfk36] {
            text-decoration: underline;
        }

/* Form styling */
.contact-form[b-nw5s8bfk36] {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

    .contact-form .form-group[b-nw5s8bfk36] {
        display: flex;
        flex-direction: column;
        gap: 0.25rem;
    }

    .contact-form label[b-nw5s8bfk36] {
        font-weight: 600;
    }

    .contact-form .form-control[b-nw5s8bfk36] {
        padding: 0.5rem 0.75rem;
        font-size: 1rem;
        border: 1px solid #ccc;
        border-radius: 4px;
        transition: border-color 0.2s;
    }

        .contact-form .form-control:focus[b-nw5s8bfk36] {
            border-color: #007bff;
            outline: none;
            box-shadow: 0 0 0 2px rgba(0,123,255,0.2);
        }

    /* Submit button */
    .contact-form .submit-btn[b-nw5s8bfk36] {
        background-color: #007bff;
        color: #fff;
        font-weight: 600;
        border: none;
        border-radius: 4px;
        padding: 0.75rem 1.25rem;
        cursor: pointer;
        transition: background-color 0.2s;
    }

        .contact-form .submit-btn:hover[b-nw5s8bfk36] {
            background-color: #0056b3;
        }

/* Success message */
.success-message[b-nw5s8bfk36] {
    margin-top: 1rem;
    padding: 0.75rem 1rem;
    border-radius: 4px;
    background-color: #d4edda;
    color: #155724;
    font-size: 0.95rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .contact-box[b-nw5s8bfk36] {
        padding: 1.5rem;
    }

    .contact-form-wrapper[b-nw5s8bfk36] {
        padding: 1rem;
    }
}
/* /Components/Home/Testimonials.razor.rz.scp.css */
/* ================================
   Reviews Cards & Stars (Universal)
=============================== */
#reviewsCarousel[b-7qzydpzees] {
    width: 100%;
}

/* --------------------------
   Default Review Card
-------------------------- */
.review-card[b-7qzydpzees] {
    background-color: var(--brand-white);
    border-radius: 12px;
    padding: 1.5rem;
    max-width: 600px;
    width: 100%;
    margin: 1rem auto;
    border: 1px solid rgba(0, 0, 0, 0.08); /* subtle border */
    color: var(--brand-dark);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

    /* Blockquote styling */
    .review-card blockquote[b-7qzydpzees] {
        font-style: italic;
        font-size: 1.05rem;
        line-height: 1.5;
        margin-bottom: 0.75rem;
        padding-left: 0.8rem;
        position: relative;
    }

/* Reviewer name */
.fw-bold[b-7qzydpzees] {
    font-weight: 600;
    font-size: 1rem;
    margin-top: 0.5rem;
    color: var(--brand-red);
}


/* Stars */
.star[b-7qzydpzees] {
    font-size: 1.5rem;
    color: var(--brand-grey);
    margin-right: 2px;
    transition: color 0.2s ease, text-shadow 0.2s ease;
}

    .star.branded[b-7qzydpzees] {
        color: var(--brand-red);
        text-shadow: 0 0 6px rgba(255, 100, 100, 0.4);
    }

/* --------------------------
   Carousel Navigation Buttons
-------------------------- */
.carousel-nav .btn-circle[b-7qzydpzees] {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    font-size: 1.5rem;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--brand-red);
    color: var(--brand-white);
    border: none;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    transition: transform 0.2s ease, background-color 0.2s ease, color 0.2s ease;
}

    .carousel-nav .btn-circle:hover[b-7qzydpzees] {
        transform: scale(1.1);
        background-color: var(--brand-dark);
    }

/* --------------------------
   Theme Overrides
-------------------------- */

/* Branded Section */
.section-branded #reviewsCarousel .review-card[b-7qzydpzees] {
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--brand-white);
}

    .section-branded #reviewsCarousel .review-card blockquote[b-7qzydpzees] {
        color: rgba(255, 255, 255, 0.9);
    }

.section-branded #reviewsCarousel .fw-bold[b-7qzydpzees] {
    color: var(--brand-white);
}

.section-branded #reviewsCarousel .star[b-7qzydpzees] {
    color: rgba(255, 255, 255, 0.7);
}

    .section-branded #reviewsCarousel .star.branded[b-7qzydpzees] {
        color: var(--brand-white);
        text-shadow: 0 0 4px rgba(255, 255, 255, 0.7);
    }

.section-branded #reviewsCarousel .carousel-nav .btn-circle[b-7qzydpzees] {
    background-color: var(--brand-white);
    color: var(--brand-red);
    border: 1px solid var(--brand-red);
}

    .section-branded #reviewsCarousel .carousel-nav .btn-circle:hover[b-7qzydpzees] {
        background-color: var(--brand-grey);
        color: var(--brand-white);
    }

/* Light Section */
.section-light #reviewsCarousel .review-card[b-7qzydpzees] {
    background-color: var(--brand-white);
    border: 1px solid rgba(0, 0, 0, 0.08);
    color: var(--brand-dark);
}

    .section-light #reviewsCarousel .review-card blockquote[b-7qzydpzees] {
        color: var(--brand-dark);
        opacity: 0.85;
    }

.section-light #reviewsCarousel .fw-bold[b-7qzydpzees] {
    color: var(--brand-red);
}

.section-light #reviewsCarousel .star[b-7qzydpzees] {
    color: var(--brand-grey);
}

    .section-light #reviewsCarousel .star.branded[b-7qzydpzees] {
        color: var(--brand-red);
        text-shadow: 0 0 6px rgba(255, 100, 100, 0.4);
    }

.section-light #reviewsCarousel .carousel-nav .btn-circle[b-7qzydpzees] {
    background-color: var(--brand-red);
    color: var(--brand-white);
    border: none;
}

    .section-light #reviewsCarousel .carousel-nav .btn-circle:hover[b-7qzydpzees] {
        background-color: var(--brand-dark);
    }

/* --------------------------
   Mobile adjustments
-------------------------- */
@media (max-width: 768px) {
    .review-card[b-7qzydpzees] {
        max-width: 280px;
        padding: 1rem;
    }

    .section-text[b-7qzydpzees] {
        font-size: 1rem;
    }

    .star[b-7qzydpzees] {
        font-size: 1.3rem;
    }
}
/* /Components/Products/BundleList.razor.rz.scp.css */
/* ================================
   Product Grid & Cards (Modern)
================================ */
.product-list-wrapper[b-s7o4iwa3vg] {
    margin-top: 2rem;
}



/* ================================
   Filter & Sort Bar
================================ */
.filter-bar[b-s7o4iwa3vg] {
    display: flex;
    justify-content: center;
    margin-bottom: 2rem;
}

.filter-controls[b-s7o4iwa3vg] {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    width: 100%;
    max-width: 1100px;
    justify-content: space-between;
    align-items: center;
}

.filter-search[b-s7o4iwa3vg] {
    flex: 1;
    min-width: 200px;
    padding: 0.6rem 1rem;
    border: 1px solid #ddd;
    border-radius: var(--btn-radius);
    font-size: 0.95rem;
}

.filter-select[b-s7o4iwa3vg] {
    padding: 0.6rem 1rem;
    border: 1px solid #ddd;
    border-radius: var(--btn-radius);
    background: var(--brand-white);
    font-size: 0.95rem;
    cursor: pointer;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

    .filter-select:hover[b-s7o4iwa3vg],
    .filter-search:focus[b-s7o4iwa3vg] {
        border-color: var(--brand-red);
        box-shadow: 0 0 0 2px rgba(255,0,0,0.1);
    }

/* Mobile */
@media (max-width: 768px) {
    .filter-controls[b-s7o4iwa3vg] {
        flex-direction: column;
        align-items: stretch;
        gap: 0.75rem;
    }

    .filter-select[b-s7o4iwa3vg], .filter-search[b-s7o4iwa3vg] {
        width: 100%;
    }
}


/* Grid Layout */
.product-grid[b-s7o4iwa3vg] {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2rem;
}

/* Modern Product Card */
.product-card[b-s7o4iwa3vg] {
    background: var(--brand-white);
    border-radius: var(--btn-radius);
    padding: 1.25rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    cursor: pointer;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    box-shadow: 0 1px 4px rgba(0,0,0,0.05);
}

    .product-card:hover[b-s7o4iwa3vg] {
        transform: translateY(-5px);
        box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    }

/* Product Image */
.product-img[b-s7o4iwa3vg] {
    width: 100%;
    aspect-ratio: 1/1;
    object-fit: contain;
    border-radius: var(--btn-radius);
    margin-bottom: 1rem;
    background: #fafafa; /* subtle background to define space */
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* Product Name */
.product-name[b-s7o4iwa3vg] {
    font-size: 1rem;
    font-weight: 600;
    color: var(--brand-dark);
    margin-top: 0.5rem;
    margin-bottom: 0.25rem;
    line-height: 1.3;
    font-family: var(--text-font);
}

/* Product Price */
.product-price[b-s7o4iwa3vg] {
    margin-top: 0.25rem;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--brand-red);
}

    .product-price .old-price[b-s7o4iwa3vg] {
        text-decoration: line-through;
        color: #999;
        font-size: 0.9rem;
        margin-right: 0.4rem;
    }

/* Button (more refined) */
.add-to-cart-btn[b-s7o4iwa3vg] {
    margin-top: auto;
    width: 100%;
    background: var(--brand-red);
    color: #fff;
    border: none;
    border-radius: var(--btn-radius);
    padding: 0.6rem 1rem;
    font-size: 0.9rem;
    font-weight: 500;
    transition: background 0.25s ease, transform 0.25s ease;
}

    .add-to-cart-btn:hover[b-s7o4iwa3vg] {
        background: var(--brand-dark);
        transform: translateY(-2px);
    }

/* Responsive */
@media (max-width: 1024px) {
    .product-grid[b-s7o4iwa3vg] {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
        gap: 1.25rem;
    }

    .product-name[b-s7o4iwa3vg] {
        font-size: 1rem;
    }

    .product-price[b-s7o4iwa3vg] {
        font-size: 1rem;
    }
}

@media (max-width: 767px) {
    .product-grid[b-s7o4iwa3vg] {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
        gap: 1rem;
    }

    .product-card[b-s7o4iwa3vg] {
        padding: 1rem;
    }

    .product-name[b-s7o4iwa3vg] {
        font-size: 0.95rem;
    }

    .product-price[b-s7o4iwa3vg] {
        font-size: 0.95rem;
    }
}
/* /Components/Products/ProductCarousel.razor.rz.scp.css */
/* ================================
   Carousel Wrapper
================================ */
.products-carousel[b-kpe654ce18] {
    position: relative;
    margin: 2rem auto;
    width: 100%;
    max-width: 1200px;
}

    /* Align title above carousel */
    .products-carousel + .carousel-nav[b-kpe654ce18] {
        margin-top: 1rem;
    }

/* ================================
   Swiper Slides / Card Layout
================================ */
.swiper-slide[b-kpe654ce18] {
    display: flex;
    justify-content: center;
    align-items: stretch;
    height: auto;
}

/* Product Card — same modern style as product list */
.product-card[b-kpe654ce18] {
    background: var(--brand-white);
    border-radius: var(--btn-radius);
    padding: 1.25rem;
    height: 100%;
    width: 100%;
    max-width: 320px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    cursor: pointer;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    box-shadow: 0 1px 4px rgba(0,0,0,0.05);
}

    .product-card:hover[b-kpe654ce18] {
        transform: translateY(-5px);
        box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    }

/* Product Image (thumb) */
.product-thumb[b-kpe654ce18] {
    width: 100%;
    aspect-ratio: 1/1;
    object-fit: contain;
    border-radius: var(--btn-radius);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* Product Title */
.product-card h4[b-kpe654ce18] {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--brand-dark);
    margin-bottom: 0.4rem;
    line-height: 1.3;
    font-family: var(--text-font);
}

/* Price */
.product-price[b-kpe654ce18] {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--brand-red);
    font-family: var(--text-font);
}

/* ================================
   Carousel Navigation
================================ */
.carousel-nav[b-kpe654ce18] {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.25rem;
    margin-top: 3rem;
}

    .carousel-nav .swiper-button-prev[b-kpe654ce18],
    .carousel-nav .swiper-button-next[b-kpe654ce18] {
        position: static !important;
        width: 40px;
        height: 40px;
        border-radius: 50%;
        background: var(--brand-white);
        color: var(--brand-dark);
        box-shadow: 0 1px 5px rgba(0,0,0,0.1);
        display: flex;
        align-items: center;
        justify-content: center;
        transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease;
    }

        .carousel-nav .swiper-button-prev:hover[b-kpe654ce18],
        .carousel-nav .swiper-button-next:hover[b-kpe654ce18] {
            background: var(--brand-red);
            color: var(--brand-white);
            transform: translateY(-2px);
        }

/* ================================
   Responsive Adjustments
================================ */
@media (max-width: 1024px) {
    .product-card[b-kpe654ce18] {
        max-width: 250px;
        padding: 1rem;
    }

        .product-card h4[b-kpe654ce18] {
            font-size: 0.95rem;
        }

    .product-price[b-kpe654ce18] {
        font-size: 1rem;
    }
}

@media (max-width: 767px) {
    .product-card[b-kpe654ce18] {
        max-width: 200px;
        padding: 0.9rem;
    }

        .product-card h4[b-kpe654ce18] {
            font-size: 0.9rem;
        }

    .product-price[b-kpe654ce18] {
        font-size: 0.95rem;
    }

    .carousel-nav[b-kpe654ce18] {
        gap: 0.75rem;
    }

        .carousel-nav .swiper-button-prev[b-kpe654ce18],
        .carousel-nav .swiper-button-next[b-kpe654ce18] {
            width: 36px;
            height: 36px;
        }
}
/* /Components/Products/ProductList.razor.rz.scp.css */
/* ================================
   Product Grid & Cards (Modern)
================================ */
.product-list-wrapper[b-ex2fj3ovha] {
    margin-top: 2rem;
}

/* ================================
   Filter & Sort Bar
================================ */
.filter-bar[b-ex2fj3ovha] {
    display: flex;
    justify-content: center;
    margin-bottom: 2rem;
}

.filter-controls[b-ex2fj3ovha] {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    width: 100%;
    max-width: 1100px;
    justify-content: space-between;
    align-items: center;
}

.filter-search[b-ex2fj3ovha] {
    flex: 1;
    min-width: 200px;
    padding: 0.6rem 1rem;
    border: 1px solid #ddd;
    border-radius: var(--btn-radius);
    font-size: 0.95rem;
}

.filter-select[b-ex2fj3ovha] {
    padding: 0.6rem 1rem;
    border: 1px solid #ddd;
    border-radius: var(--btn-radius);
    background: var(--brand-white);
    font-size: 0.95rem;
    cursor: pointer;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

    .filter-select:hover[b-ex2fj3ovha],
    .filter-search:focus[b-ex2fj3ovha] {
        border-color: var(--brand-red);
        box-shadow: 0 0 0 2px rgba(255, 0, 0, 0.1);
    }

/* Mobile */
@media (max-width: 768px) {
    .filter-controls[b-ex2fj3ovha] {
        flex-direction: column;
        align-items: stretch;
        gap: 0.75rem;
    }

    .filter-select[b-ex2fj3ovha], .filter-search[b-ex2fj3ovha] {
        width: 100%;
    }
}

/* ================================
   Grid Layout
================================ */
.product-grid[b-ex2fj3ovha] {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2rem;
}

/* ================================
   Modern Product Card
================================ */
.product-card[b-ex2fj3ovha] {
    background: var(--brand-white);
    border-radius: var(--btn-radius);
    padding: 1.25rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    cursor: pointer;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.05);
    position: relative;
}

    .product-card:hover[b-ex2fj3ovha] {
        transform: translateY(-5px);
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    }

/* ================================
   Product Image + Badge
================================ */
.product-img-wrapper[b-ex2fj3ovha] {
    position: relative;
    width: 100%;
}

.product-img[b-ex2fj3ovha] {
    width: 100%;
    aspect-ratio: 1/1;
    object-fit: contain;
    border-radius: var(--btn-radius);
    margin-bottom: 1rem;
    background: #fafafa;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* Badges */
.product-badge[b-ex2fj3ovha] {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--brand-red);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.25rem 0.6rem;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.15);
}

    .product-badge.featured[b-ex2fj3ovha] {
        background: var(--brand-dark);
    }

/* ================================
   Product Name
================================ */
.product-name[b-ex2fj3ovha] {
    font-size: 1rem;
    font-weight: 600;
    color: var(--brand-dark);
    margin-top: 0.5rem;
    margin-bottom: 0.25rem;
    line-height: 1.3;
    font-family: var(--text-font);
}

/* ================================
   Product Pricing (Discount + Variants)
================================ */
.product-pricing[b-ex2fj3ovha] {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.4rem;
    margin-top: 0.4rem;
}

.price-original[b-ex2fj3ovha] {
    text-decoration: line-through;
    color: #999;
    font-size: 0.9rem;
    font-weight: 500;
}

.price-sale[b-ex2fj3ovha] {
    color: var(--brand-red);
    font-weight: 700;
    font-size: 1.1rem;
}

.price-normal[b-ex2fj3ovha] {
    color: var(--brand-dark);
    font-weight: 600;
    font-size: 1.1rem;
}

/* "From:" prefix for variants */
.price-from[b-ex2fj3ovha]::before {
    content: "From: ";
    font-size: 0.9rem;
    color: var(--brand-dark);
    font-weight: 500;
}

/* ================================
   Add to Cart Button
================================ */
.add-to-cart-btn[b-ex2fj3ovha] {
    margin-top: auto;
    width: 100%;
    background: var(--brand-red);
    color: #fff;
    border: none;
    border-radius: var(--btn-radius);
    padding: 0.6rem 1rem;
    font-size: 0.9rem;
    font-weight: 500;
    transition: background 0.25s ease, transform 0.25s ease;
}

    .add-to-cart-btn:hover[b-ex2fj3ovha] {
        background: var(--brand-dark);
        transform: translateY(-2px);
    }

/* ================================
   Responsive Layout
================================ */
@media (max-width: 1024px) {
    .product-grid[b-ex2fj3ovha] {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
        gap: 1.25rem;
    }

    .product-name[b-ex2fj3ovha] {
        font-size: 1rem;
    }

    .price-sale[b-ex2fj3ovha], .price-normal[b-ex2fj3ovha] {
        font-size: 1rem;
    }
}

@media (max-width: 767px) {
    .product-grid[b-ex2fj3ovha] {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
        gap: 1rem;
    }

    .product-card[b-ex2fj3ovha] {
        padding: 1rem;
    }

    .product-name[b-ex2fj3ovha] {
        font-size: 0.95rem;
    }

    .price-sale[b-ex2fj3ovha], .price-normal[b-ex2fj3ovha] {
        font-size: 0.95rem;
    }
}
/* /Components/Shared/AdvancedSection.razor.rz.scp.css */
/* ==========================
   Base Section Styles
=========================== */
.website-section[b-7o1io5pzoi] {
    width: 100%;
    padding: 4rem 2rem;
    box-sizing: border-box;
}

.section-inner[b-7o1io5pzoi] {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

/* --------------------------
   Banner / Hero Carousel
--------------------------- */
.section-banner[b-7o1io5pzoi] {
    position: relative;
    width: 100%;
    min-height: 400px;
    overflow: hidden;
    border-radius: 0.75rem;
    margin-bottom: 2rem;
}

    .section-banner img[b-7o1io5pzoi],
    .section-banner picture[b-7o1io5pzoi],
    .section-banner .swiper[b-7o1io5pzoi] {
        display: block;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

/* --------------------------
   Section Header
--------------------------- */
.section-header[b-7o1io5pzoi] {
    text-align: center;
}

/* --------------------------
   Full-width Section Content
--------------------------- */
.section-content[b-7o1io5pzoi] {
    width: 100%;
    line-height: 1.6;
}

/* --------------------------
   Two-column body layout
--------------------------- */
.section-body-row[b-7o1io5pzoi] {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.section-left[b-7o1io5pzoi],
.section-right[b-7o1io5pzoi] {
    flex: 1; /* share available space on desktop */
    min-width: 0; /* prevent overflow from long content */
}


.section-left[b-7o1io5pzoi] {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.section-right[b-7o1io5pzoi] {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

    /* Make carousels/images always visible */
    .section-right img[b-7o1io5pzoi],
    .section-right .swiper[b-7o1io5pzoi],
    .section-left img[b-7o1io5pzoi],
    .section-left .swiper[b-7o1io5pzoi] {
        width: 100%;
        min-height: 200px;
        object-fit: cover;
    }

/* --------------------------
   Extra Content / Main / Footer
--------------------------- */
.section-extra[b-7o1io5pzoi],
.section-main[b-7o1io5pzoi],
.section-footer[b-7o1io5pzoi] {
    width: 100%;
    margin-top: 2rem;
}

    /* Footer banner */
    .section-footer .swiper[b-7o1io5pzoi],
    .section-footer img[b-7o1io5pzoi] {
        width: 100%;
        min-height: 250px;
        object-fit: cover;
    }

/* --------------------------
   Skeleton / Loading placeholders
--------------------------- */
.skeleton *[b-7o1io5pzoi] {
    pointer-events: none;
}

.skeleton-banner[b-7o1io5pzoi],
.skeleton-title[b-7o1io5pzoi],
.skeleton-subtitle[b-7o1io5pzoi],
.skeleton-text[b-7o1io5pzoi],
.skeleton-left[b-7o1io5pzoi],
.skeleton-right[b-7o1io5pzoi],
.skeleton-extra[b-7o1io5pzoi],
.skeleton-footer[b-7o1io5pzoi],
.skeleton-footer-banner[b-7o1io5pzoi] {
    background: #e0e0e0;
    border-radius: 6px;
    min-height: 20px;
    margin-bottom: 1rem;
}

.skeleton-banner[b-7o1io5pzoi],
.skeleton-footer-banner[b-7o1io5pzoi] {
    min-height: 400px;
}

.skeleton-left[b-7o1io5pzoi],
.skeleton-right[b-7o1io5pzoi] {
    min-height: 200px;
}

.skeleton-text[b-7o1io5pzoi],
.skeleton-extra[b-7o1io5pzoi] {
    min-height: 150px;
}

/* --------------------------
   Responsive Adjustments
--------------------------- */
@media (max-width: 1024px) {

    .website-section[b-7o1io5pzoi] {
        padding: 4rem 0.5rem;
    }

    .section-body-row[b-7o1io5pzoi] {
        flex-direction: column; /* stack instead of row */
    }

    .section-left[b-7o1io5pzoi],
    .section-right[b-7o1io5pzoi] {
        min-height: 180px;
    }

    .skeleton-left[b-7o1io5pzoi],
    .skeleton-right[b-7o1io5pzoi] {
        min-height: 180px;
    }

    .section-left[b-7o1io5pzoi],
    .section-right[b-7o1io5pzoi] {
        width: 100%; /* full width when stacked */
    }

}

@media (max-width: 600px) {
    .section-banner[b-7o1io5pzoi],
    .skeleton-banner[b-7o1io5pzoi],
    .section-footer .swiper[b-7o1io5pzoi],
    .skeleton-footer-banner[b-7o1io5pzoi] {
        min-height: 200px;
    }

    .section-right img[b-7o1io5pzoi],
    .section-right .swiper[b-7o1io5pzoi],
    .section-left img[b-7o1io5pzoi],
    .section-left .swiper[b-7o1io5pzoi] {
        min-height: 150px;
    }
}
/* /Components/Shared/BannerCarousel.razor.rz.scp.css */
/* ==============================
   Promotion Slide Styling
============================== */
.promo-slide[b-3jvgbupojl] {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.promo-bg.halloween[b-3jvgbupojl] {
    background: url('/assets/halloween-overlay.png') center/cover no-repeat;
}

.promo-bg.christmas[b-3jvgbupojl] {
    background: url('/assets/christmas-overlay.png') center/cover no-repeat;
}

.promo-bg.blackfriday[b-3jvgbupojl] {
    background: url('/assets/blackfriday-overlay.png') center/cover no-repeat;
}


.promo-bg[b-3jvgbupojl] {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    z-index: 0;
    filter: brightness(0.6);
    border-radius: 12px; /* match promo-slide */
}

    .promo-bg.gradient-bg[b-3jvgbupojl] {
        /* Modern brand gradient using your brand colors */
        background: linear-gradient( 135deg, var(--brand-red) 0%, var(--brand-dark) 100% );
    }


.promo-content[b-3jvgbupojl] {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 2rem;
    max-width: 90%;
    font-family: var(--text-font);
    color: var(--brand-white);
    height:100dvh;
}

.promo-title[b-3jvgbupojl] {
    font-size: 2rem;
    font-weight: 700;
    text-shadow: 0 2px 8px rgba(0,0,0,0.5);
    color: var(--brand-white);
}

.promo-desc[b-3jvgbupojl] {
    font-size: 1.1rem;
    text-shadow: 0 1px 4px rgba(0,0,0,0.5);
    color: var(--brand-white);
}


/* Optional CTA button inside promo */
.promo-cta[b-3jvgbupojl] {
    margin-top: 1rem;
}

.btn-gradient[b-3jvgbupojl] {
    background: linear-gradient(90deg, #ff416c, #ff4b2b);
    border: none;
    color: #fff;
    padding: 0.5rem 1.5rem;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
}

    .btn-gradient:hover[b-3jvgbupojl] {
        transform: translateY(-2px);
        box-shadow: 0 8px 15px rgba(0,0,0,0.3);
    }

/* ==============================
   Banner Carousel Styling
============================== */
.banner-carousel[b-3jvgbupojl] {
    width: 100vw;
    height: calc(100vh - 100px); /* full screen minus navbar */
    overflow: hidden;
}

    /* Center content in each slide */
    .banner-carousel .swiper-slide[b-3jvgbupojl] {
        display: flex;
        justify-content: center;
        align-items: center;
        position: relative;
    }

        .banner-carousel .swiper-slide img[b-3jvgbupojl] {
            width: 100%;
            height: 100%;
            object-fit: cover; /* show full image, may add letterboxing */
            display: block;
        }

/* Match banner height for promo slides */
.banner-carousel[b-3jvgbupojl], .promo-slide[b-3jvgbupojl] {
    display: flex;
    align-items: center;
    justify-content: center;
}

    .promo-slide img[b-3jvgbupojl] {
        width: 100%;
        height: 100%;
        object-fit: cover;
        position: absolute;
        top: 0;
        left: 0;
        z-index: 0;
    }

    /* Text stays above image */
    .promo-slide .promo-content[b-3jvgbupojl] {
        z-index: 1;
    }

/* ==============================
   Tablet Responsive
============================== */
@media (max-width: 1024px) {
    .banner-carousel[b-3jvgbupojl] {
        height: 450px;
    }

    .promo-slide[b-3jvgbupojl] {
        min-height: 400px;
    }

    .promo-content[b-3jvgbupojl] {
        height:100%;
    }

    .promo-title[b-3jvgbupojl] {
        font-size: 1.7rem;
    }

    .promo-desc[b-3jvgbupojl] {
        font-size: 1rem;
    }
}

/* ==============================
   Mobile Responsive
============================== */
@media (max-width: 768px) {


        .banner-carousel .swiper-slide img[b-3jvgbupojl] {
            width: 100%;
            object-fit: cover;
        }

    .promo-slide[b-3jvgbupojl] {
        min-height: 250px;
        padding: 1rem;
    }

    .promo-title[b-3jvgbupojl] {
        font-size: 1.4rem;
    }

    .promo-desc[b-3jvgbupojl] {
        font-size: 0.95rem;
    }
}
/* /Components/Shared/CartComponent.razor.rz.scp.css */
/* ==============================
   Cart Component (Unified Layout)
============================== */

.cart-lines[b-hcnn9rb39e] {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1.5rem;
    max-height: 50vh;
    overflow-y: auto;
    padding-right: 0.5rem;
}

/* Each cart line (normal + bundle) */
.cart-line[b-hcnn9rb39e] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--brand-white);
    border-radius: var(--btn-radius);
    padding: 0.75rem 1rem;
    gap: 1rem;
    box-shadow: 0 2px 6px rgba(0,0,0,0.05);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

    /* Bundle distinction (background & border only) */
    .cart-line.bundle[b-hcnn9rb39e] {
        background: #f9ecec;
    }

    /* Left info section */
    .cart-line .line-info[b-hcnn9rb39e] {
        flex: 1;
        display: flex;
        flex-direction: column;
        gap: 0.25rem;
    }

    /* Product name */
    .cart-line .line-name[b-hcnn9rb39e] {
        font-weight: 600;
        font-size: 1rem;
        color: var(--brand-dark);
    }

    /* Meta info (quantity, etc.) */
    .cart-line .meta[b-hcnn9rb39e] {
        font-size: 0.85rem;
        color: var(--brand-muted);
    }

    /* Right actions */
    .cart-line .line-actions[b-hcnn9rb39e] {
        display: flex;
        align-items: center;
        gap: 0.5rem;
        flex-shrink: 0;
    }

        .cart-line .line-actions input[type="number"][b-hcnn9rb39e] {
            width: 55px;
            text-align: center;
            border: 1px solid var(--brand-light);
            border-radius: 6px;
            padding: 0.25rem;
            font-size: 0.95rem;
            color: var(--brand-dark);
        }

        .cart-line .line-actions button[b-hcnn9rb39e] {
            width: 32px;
            height: 32px;
            border-radius: 6px;
            border: 1px solid var(--brand-light);
            background: var(--brand-light);
            font-weight: 600;
            font-size: 1.1rem;
            color: var(--brand-dark);
            cursor: pointer;
            transition: all 0.2s ease;
        }

            .cart-line .line-actions button:hover[b-hcnn9rb39e] {
                background: var(--brand-red);
                border-color: var(--brand-red);
                color: #fff;
            }

    /* Remove button */
    .cart-line .remove-btn[b-hcnn9rb39e] {
        background: transparent;
        border: none;
        color: var(--brand-red);
        font-size: 1rem;
        padding: 0.25rem 0.5rem;
        cursor: pointer;
        transition: color 0.2s ease;
    }

        .cart-line .remove-btn:hover[b-hcnn9rb39e] {
            color: var(--brand-dark);
        }

    /* Line total */
    .cart-line .line-total[b-hcnn9rb39e] {
        min-width: 80px;
        text-align: right;
        font-weight: 600;
        font-size: 0.95rem;
        color: var(--brand-dark);
    }

    /* ==============================
   Nested Bundle Items
============================== */

    .cart-line.bundle .bundle-items[b-hcnn9rb39e] {
        display: flex;
        flex-wrap: wrap;
        gap: 0.5rem;
        margin-top: 0.5rem;
        padding-top: 0.5rem;
    }

    .cart-line.bundle .bundle-item-card[b-hcnn9rb39e] {
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 90px;
        background: #fff;
        border-radius: 0.375rem;
        padding: 0.5rem;
        text-align: center;
        font-size: 0.85rem;
        transition: transform 0.2s ease;
    }

        .cart-line.bundle .bundle-item-card:hover[b-hcnn9rb39e] {
            transform: translateY(-2px);
        }

        .cart-line.bundle .bundle-item-card img[b-hcnn9rb39e] {
            width: 50px;
            height: 50px;
            object-fit: cover;
            border-radius: 0.25rem;
            margin-bottom: 0.25rem;
        }

        .cart-line.bundle .bundle-item-card .item-name[b-hcnn9rb39e] {
            font-weight: 500;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
            color: var(--brand-dark);
        }

        .cart-line.bundle .bundle-item-card .variant-name[b-hcnn9rb39e] {
            font-weight: 400;
            font-size: 0.8rem;
            color: var(--brand-muted);
        }

        .cart-line.bundle .bundle-item-card .item-qty[b-hcnn9rb39e] {
            margin-top: 0.25rem;
            background: var(--brand-red);
            color: #fff;
            font-size: 0.75rem;
            font-weight: 600;
            padding: 2px 6px;
            border-radius: 12px;
        }

/* ==============================
   Footer & Totals
============================== */

.cart-footer[b-hcnn9rb39e] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid var(--brand-light);
    padding-top: 1rem;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.cart-total[b-hcnn9rb39e] {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--brand-dark);
}

.cart-footer .btn[b-hcnn9rb39e] {
    padding: 0.5rem 1.25rem;
    border-radius: var(--btn-radius);
    font-weight: 600;
    transition: all 0.25s ease;
}

/* Scrollbar */
.cart-lines[b-hcnn9rb39e]::-webkit-scrollbar {
    width: 8px;
}

.cart-lines[b-hcnn9rb39e]::-webkit-scrollbar-track {
    background: var(--brand-light);
    border-radius: 4px;
}

.cart-lines[b-hcnn9rb39e]::-webkit-scrollbar-thumb {
    background: var(--brand-red);
    border-radius: 4px;
}

/* ==============================
   Responsive
============================== */

/* Tablet */
@media (max-width: 1024px) {
    .cart-line[b-hcnn9rb39e] {
        flex-direction: row;
        align-items: center;
        gap: 0.5rem;
    }

        .cart-line .line-actions[b-hcnn9rb39e] {
            width: auto;
            justify-content: flex-end;
        }

    .cart-footer[b-hcnn9rb39e] {
        flex-direction: column;
        align-items: stretch;
    }

        .cart-footer .btn[b-hcnn9rb39e] {
            width: 100%;
        }

    .cart-line.bundle .bundle-item-card[b-hcnn9rb39e] {
        width: 80px;
    }

        .cart-line.bundle .bundle-item-card img[b-hcnn9rb39e] {
            width: 45px;
            height: 45px;
        }
}

/* Mobile */
@media (max-width: 768px) {
    .cart-line[b-hcnn9rb39e] {
        padding: 0.75rem;
    }

        .cart-line .line-name[b-hcnn9rb39e] {
            font-size: 0.95rem;
        }

        .cart-line .line-actions input[b-hcnn9rb39e] {
            width: 45px;
            font-size: 0.9rem;
        }

        .cart-line .line-actions button[b-hcnn9rb39e] {
            width: 28px;
            height: 28px;
            font-size: 1rem;
        }

    .cart-total[b-hcnn9rb39e] {
        font-size: 1rem;
    }

    .cart-lines[b-hcnn9rb39e] {
        max-height: 50vh;
    }
}
/* /Components/Shared/ContextPanel.razor.rz.scp.css */
/* ================================
   Context Panel (Branded)
================================ */

/* ===== Backdrop ===== */
.context-backdrop[b-k4hv5bk1ij] {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    backdrop-filter: blur(4px);
    z-index: 1040;
    opacity: 0;
    animation-fill-mode: forwards;
}

.fade-in[b-k4hv5bk1ij] {
    animation: backdrop-fade-in-b-k4hv5bk1ij 0.25s forwards;
}

.fade-out[b-k4hv5bk1ij] {
    animation: backdrop-fade-out-b-k4hv5bk1ij 0.25s forwards;
}

@keyframes backdrop-fade-in-b-k4hv5bk1ij {
    to {
        opacity: 1;
    }
}

@keyframes backdrop-fade-out-b-k4hv5bk1ij {
    from {
        opacity: 1;
    }

    to {
        opacity: 0;
    }
}

/* ===== Panel Container ===== */
.context-panel[b-k4hv5bk1ij] {
    position: fixed;
    top: 0;
    right: 0;
    height: 100%;
    background: var(--brand-white);
    z-index: 1050;
    box-shadow: -6px 0 25px rgba(0, 0, 0, 0.25);
    display: flex;
    flex-direction: column;
    width: 45%;
    max-width: 12000px;
    min-width: 380px;
    border-top-left-radius: 16px;
    border-bottom-left-radius: 16px;
    overflow-y: auto;
    transition: transform 0.35s ease-in-out, box-shadow 0.35s ease-in-out;
}

/* Slide Animations */
.slide-in[b-k4hv5bk1ij] {
    animation: slide-in-b-k4hv5bk1ij 0.35s ease-out forwards;
    transform: translateX(100%);
}

.slide-out[b-k4hv5bk1ij] {
    animation: slide-out-b-k4hv5bk1ij 0.3s ease-in forwards;
    transform: translateX(0);
}

@keyframes slide-in-b-k4hv5bk1ij {
    from {
        transform: translateX(100%);
    }

    to {
        transform: translateX(0);
    }
}

@keyframes slide-out-b-k4hv5bk1ij {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(100%);
    }
}

/* ===== Header ===== */
.context-panel-header[b-k4hv5bk1ij] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--brand-red);
    color: var(--brand-white);
    padding: 1rem 1.25rem;
    border-top-left-radius: 16px;
    flex-shrink: 0;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.context-panel-title[b-k4hv5bk1ij] {
    flex: 1;
    margin: 0;
    font-weight: 600;
    font-size: 1.6rem;
    letter-spacing: 0.5px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    text-align: center;
    color: var(--brand-grey);
}

.context-close-btn[b-k4hv5bk1ij] {
    background: transparent;
    border: none;
    font-size: 1.6rem;
    cursor: pointer;
    color: var(--brand-white);
    padding: 0.25rem 0.5rem;
    transition: transform 0.25s ease, opacity 0.25s ease;
}

    .context-close-btn:hover[b-k4hv5bk1ij] {
        opacity: 0.8;
        transform: scale(1.1);
    }

/* ===== Panel Content ===== */
.context-content[b-k4hv5bk1ij] {
    flex: 1;
    overflow-y: auto;
    padding: 1.75rem;
    background: var(--brand-light);
    color: var(--brand-dark);
    font-family: var(--text-font);
    font-size: 1.05rem;
    line-height: 1.8;
    border-bottom-left-radius: 16px;
}

    /* ===== Scrollbar (Subtle) ===== */
    .context-content[b-k4hv5bk1ij]::-webkit-scrollbar {
        width: 6px;
    }

    .context-content[b-k4hv5bk1ij]::-webkit-scrollbar-thumb {
        background-color: rgba(0,0,0,0.15);
        border-radius: 3px;
    }

        .context-content[b-k4hv5bk1ij]::-webkit-scrollbar-thumb:hover {
            background-color: rgba(0,0,0,0.25);
        }

/* ===== Desktop Width ===== */
@media (min-width: 1025px) {
    .context-panel[b-k4hv5bk1ij] {
        width: 45%;
    }
}

/* ===== Tablet ===== */
@media (min-width: 768px) and (max-width: 1024px) {
    .context-panel[b-k4hv5bk1ij] {
        width: 100%;
        max-width: 100%;
        min-width: 100%;
        border-radius: 0;
    }
}

/* ===== Mobile ===== */
@media (max-width: 768px) {
    .context-panel[b-k4hv5bk1ij] {
        width: 100%;
        max-width: 100%;
        min-width: 100%;
        border-radius: 0;
        box-shadow: none;
    }

    .context-panel-header[b-k4hv5bk1ij] {
        padding: 0.85rem 1rem;
        font-size: 1.25rem;
    }

    .context-panel-title[b-k4hv5bk1ij] {
        font-size: 1.25rem;
    }

    .context-close-btn[b-k4hv5bk1ij] {
        font-size: 1.4rem;
    }

    .context-content[b-k4hv5bk1ij] {
        padding: 1.25rem;
    }
}
/* /Components/Shared/HeroSection.razor.rz.scp.css */
/* ==============================
   Hero Banner
============================== */
.hero-banner[b-y819iz4woh] {
    width: 100%;
    max-height: 100dvh; /* full viewport height */
    overflow: hidden;
}

/* Content below the banner */
.hero-content[b-y819iz4woh] {
    max-width: 1200px;
    margin: 3rem auto;
    padding: 0 1rem;
    text-align: center;
}

.hero-text[b-y819iz4woh] {
    font-size: 1.5rem;
}

.hero-cta[b-y819iz4woh] {
    margin-top: 2rem;
}

/* Optional media below content */
.hero-media[b-y819iz4woh] {
    margin: 2rem auto;
    max-width: 1200px;
}
/* /Components/Shared/ImageCarousel.razor.rz.scp.css */
/* ==============================
   Swiper Layout
============================== */
.swiper[b-htnuzm5tre] {
    width: 100%;
    height: 100%; /* fill parent */
    position: relative;
    box-sizing: border-box;
    overflow: hidden;
}

.swiper-wrapper[b-htnuzm5tre] {
    width: 100%;
    height: 100%;
}

.swiper-slide[b-htnuzm5tre] {
    display: flex;
    justify-content: center;
    align-items: center;
}

    .swiper-slide img[b-htnuzm5tre] {
        max-width: 100%;
        max-height: 100%;
        width: auto; /* don’t force stretch */
        height: auto; /* keep natural aspect */
        object-fit: contain;
        display: block;
    }

/* --- Desktop --- */
@media (min-width: 992px) {
    .section-col.section-images .swiper[b-htnuzm5tre],
    .section-images .swiper[b-htnuzm5tre] {
        max-height: 500px; /* cap height, don’t force */
    }
}

/* --- Tablet --- */
@media (min-width: 768px) and (max-width: 991px) {
    .section-col.section-images[b-htnuzm5tre],
    .section-images[b-htnuzm5tre] {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        height: auto; /* allow natural height */
        min-height: 0;
        max-height: none;
    }

        .section-col.section-images .swiper[b-htnuzm5tre],
        .section-images .swiper[b-htnuzm5tre] {
            width: 100%;
            height: auto; /* adapt to image */
            max-height: 400px; /* cap */
        }

        .section-col.section-images .swiper-slide img[b-htnuzm5tre],
        .section-images .swiper-slide img[b-htnuzm5tre] {
            max-width: 100%;
            max-height: 100%;
            width: auto;
            height: auto;
            object-fit: contain;
            display: block;
        }
}

/* --- Mobile --- */
@media (max-width: 767px) {
    .section-col.section-images .swiper[b-htnuzm5tre],
    .section-images .swiper[b-htnuzm5tre] {
        height: auto;
        max-height: 320px; /* cap */
    }
}
/* /Components/Shared/LoginRegister.razor.rz.scp.css */
/* ==============================
   Auth Box (Themed Layout)
============================== */

.auth-box[b-t094w7qnhc] {
    max-width: 420px;
    margin: 2rem auto;
    background: var(--brand-white);
    border: 1px solid var(--brand-grey);
    border-radius: 8px;
    padding: 2rem;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

/* Toggle buttons row */
.auth-toggle[b-t094w7qnhc] {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

    .auth-toggle .btn[b-t094w7qnhc] {
        flex: 1;
    }

        /* Active state (highlight selected mode) */
        .auth-toggle .btn.active[b-t094w7qnhc] {
            background: var(--brand-red);
            color: var(--brand-white);
            border: none;
        }

/* Form controls */
.auth-box .form-control[b-t094w7qnhc] {
    width: 100%;
    display: block;
    border: 1px solid var(--brand-grey);
    border-radius: var(--btn-radius);
    padding: 0.6rem 0.75rem;
    margin-bottom: 0.75rem;
    font-size: 1rem;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

    .auth-box .form-control:focus[b-t094w7qnhc] {
        border-color: var(--brand-red);
        box-shadow: 0 0 0 2px rgba(180, 12, 13, 0.15);
        outline: none;
    }

/* Hint text */
.auth-box .text-muted.small[b-t094w7qnhc] {
    font-size: 0.85rem;
    color: var(--text-grey);
    margin-bottom: 0.75rem;
}

/* Profile section */
.auth-box h5[b-t094w7qnhc] {
    margin-bottom: 0.75rem;
    color: var(--brand-red);
    font-family: var(--brand-font);
}

.auth-box p[b-t094w7qnhc] {
    margin: 0.25rem 0;
}

/* Validation */
.validation-summary-errors[b-t094w7qnhc],
.field-validation-error[b-t094w7qnhc] {
    color: var(--brand-red);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

/* Logout button uses existing .btn-alt for consistency */
.auth-box .btn-outline-danger[b-t094w7qnhc] {
    @apply btn-alt;
    display: block;
    width: 100%;
    margin-top: 1rem;
}

/* Mobile tweaks */
@media (max-width: 480px) {
    .auth-box[b-t094w7qnhc] {
        padding: 1.5rem 1.25rem;
        margin: 1rem;
    }

    .auth-toggle[b-t094w7qnhc] {
        gap: 0.5rem;
    }

        .auth-toggle .btn[b-t094w7qnhc] {
            font-size: 0.9rem;
            padding: 0.5rem;
        }
}
/* /Components/Shared/PromotionSignup.razor.rz.scp.css */
/* ==============================
   Promotion Signup Section
============================== */
.promotion-signup[b-wgue1pvgqr] {
    background: var(--brand-white); /* light card to contrast red background */
    border-radius: 20px;
    padding: 3rem 2rem;
    max-width: 650px;
    margin: 3rem auto;
    text-align: center;
    box-shadow: 0 12px 30px rgba(0,0,0,0.12);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

    .promotion-signup:hover[b-wgue1pvgqr] {
        transform: translateY(-3px);
        box-shadow: 0 18px 40px rgba(0,0,0,0.18);
    }

    /* Header */
    .promotion-signup .promo-header[b-wgue1pvgqr] {
        margin-bottom: 2rem;
    }

    .promotion-signup .section-title[b-wgue1pvgqr] {
        font-size: 2rem;
        font-weight: 800;
        color: var(--brand-red);
        margin-bottom: 0.5rem;
    }

    .promotion-signup .section-subtitle[b-wgue1pvgqr] {
        font-size: 1.1rem;
        color: rgba(0,0,0,0.7);
        margin-bottom: 2rem;
        line-height: 1.5;
    }

    /* Form */
    .promotion-signup .promo-form[b-wgue1pvgqr] {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
    }

    .promotion-signup .form-label[b-wgue1pvgqr] {
        display: none; /* cleaner look */
    }

    .promotion-signup .form-control[b-wgue1pvgqr] {
        flex: 1 1 260px;
        max-width: 340px;
        padding: 0.85rem 1rem;
        border-radius: 12px;
        border: 1px solid #ccc;
        font-size: 1rem;
        background: #f9f9f9;
        box-shadow: inset 0 2px 4px rgba(0,0,0,0.05);
        transition: all 0.25s ease;
    }

        .promotion-signup .form-control:focus[b-wgue1pvgqr] {
            border-color: var(--brand-red);
            box-shadow: 0 0 0 3px rgba(199, 39, 39, 0.2);
            outline: none;
        }

    /* Button */
    .promotion-signup .btn[b-wgue1pvgqr] {
        background: var(--brand-red);
        color: #fff;
        font-weight: 700;
        font-size: 1.1rem;
        border-radius: 12px;
        padding: 0.9rem 1.75rem;
        border: none;
        cursor: pointer;
        transition: all 0.25s ease;
        box-shadow: 0 6px 16px rgba(199,39,39,0.3);
    }

        .promotion-signup .btn:hover:not(:disabled)[b-wgue1pvgqr] {
            transform: translateY(-2px) scale(1.03);
            box-shadow: 0 8px 20px rgba(199,39,39,0.35);
            background: #a41010; /* slightly darker red on hover */
        }

    /* Alerts */
    .promotion-signup .alert[b-wgue1pvgqr] {
        margin-top: 1.5rem;
        border-radius: 10px;
        text-align: center;
        font-weight: 500;
    }

    .promotion-signup .alert-success[b-wgue1pvgqr] {
        background: rgba(34, 197, 94, 0.15);
        border: 1px solid rgba(34, 197, 94, 0.4);
        color: #166534;
    }

    .promotion-signup .alert-danger[b-wgue1pvgqr] {
        background: rgba(220, 53, 69, 0.15);
        border: 1px solid rgba(220, 53, 69, 0.3);
        color: #7f1d1d;
    }

    /* Loading text */
    .promotion-signup em[b-wgue1pvgqr] {
        color: var(--brand-dark);
        opacity: 0.8;
    }

/* Responsive */
@media (max-width: 768px) {
    .promotion-signup[b-wgue1pvgqr] {
        padding: 2rem 1.5rem;
    }

        .promotion-signup .section-title[b-wgue1pvgqr] {
            font-size: 1.8rem;
        }

        .promotion-signup .section-subtitle[b-wgue1pvgqr] {
            font-size: 1rem;
        }

        .promotion-signup .promo-form[b-wgue1pvgqr] {
            flex-direction: column;
            align-items: center;
        }
}
/* /Components/Shared/WebsiteSection.razor.rz.scp.css */
/* Default section wrapper */
.website-section[b-sbnnsap2yf] {
    width: 100%;
    padding: 2rem 1rem;
    box-sizing: border-box;
    height:100%;
}

.section-banner[b-sbnnsap2yf] {
    position: relative;
    width: 100%;
    height: 100%; /* Adjust to desired banner height */
    overflow: hidden;
    border-radius: 0.75rem;
}

.section-inner[b-sbnnsap2yf] {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 1rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

/* Headers */
.section-header[b-sbnnsap2yf] {
    text-align: center;
}

.section-main[b-sbnnsap2yf] {
    padding: 1rem 1rem;
}

/* Section body */
.section-body[b-sbnnsap2yf] {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

/* Row for content + images */
.section-body-row[b-sbnnsap2yf] {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

    .section-body-row .section-text[b-sbnnsap2yf],
    .section-body-row .section-gallery[b-sbnnsap2yf] {
        flex: 1 1 0; /* allow both to share space equally */
        min-width: 300px; /* optional, prevents too small on narrow screens */
    }

/* Only content or only images take full width */
.section-text[b-sbnnsap2yf],
.section-gallery[b-sbnnsap2yf] {
    width: 100%;
}

    .section-banner img[b-sbnnsap2yf],
    .section-banner picture[b-sbnnsap2yf],
    .section-banner .swiper[b-sbnnsap2yf] {
        display: block;
        width: auto;
        max-width: 100%;
        height: auto;
    }

/* Responsive: stack everything on mobile */
@media (max-width: 900px) {
    .section-body-row[b-sbnnsap2yf] {
        flex-direction: column;
    }

        .section-body-row .section-text[b-sbnnsap2yf],
        .section-body-row .section-gallery[b-sbnnsap2yf] {
            min-width: 100%;
        }
}
/* /Layout/MainLayout.razor.rz.scp.css */
/* ===========================
   Global Box-Sizing
   =========================== */
*[b-jpdqon1vt8],
*[b-jpdqon1vt8]::before,
*[b-jpdqon1vt8]::after {
    box-sizing: border-box;
}

/* ===========================
   Page Layout
   =========================== */
.page[b-jpdqon1vt8] {
    display: flex;
    flex-direction: column;
    min-height: 100dvh; /* full viewport height */
    overflow-x: hidden; /* prevent horizontal scroll */
}

main[b-jpdqon1vt8] {
    flex: 1 0 auto; /* allow content to grow */
    display: flex;
    flex-direction: column;
}

/* ===========================
   Header / Top Row
   =========================== */
header.top-row[b-jpdqon1vt8] {
    background-color: #f7f7f7;
    border-bottom: 1px solid #d6d5d5;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 1rem;
    position: sticky;
    top: 0;
    z-index: 10;
}

    header.top-row a[b-jpdqon1vt8] {
        text-decoration: none;
        margin-left: 1rem;
    }

        header.top-row a:hover[b-jpdqon1vt8] {
            text-decoration: underline;
        }

/* ===========================
   Layout Body
   =========================== */
.layout-body[b-jpdqon1vt8] {
    flex: 1;
    display: flex;
    flex-direction: column; /* mobile stacked */
    width: 100%;
}

.content[b-jpdqon1vt8] {
    flex: 1;
    width: 100%;
    display: flex;
    flex-direction: column;
}

/* Optional Sidebar */
.sidebar[b-jpdqon1vt8] {
    background: linear-gradient(180deg, rgb(5, 39, 103) 0%, #3a0647 70%);
}

/* Desktop Layout */
@media (min-width: 641px) {
    .layout-body[b-jpdqon1vt8] {
        flex-direction: row;
    }

    .sidebar[b-jpdqon1vt8] {
        width: 250px;
        flex-shrink: 0;
        position: sticky;
        top: 3.5rem; /* below header */
        align-self: flex-start;
        height: auto;
    }

    .content[b-jpdqon1vt8] {
        flex: 1;
    }
}

/* ===========================
   Footer
   =========================== */
footer.footer[b-jpdqon1vt8] {
    width: 100%;
    background-color: var(--brand-red);
    color: var(--brand-light);
    text-align: center;
    padding: 2rem 1rem;
}

    footer.footer .container[b-jpdqon1vt8] {
        max-width: 1140px;
        margin: 0 auto;
        padding: 0 1rem;
    }

    footer.footer p[b-jpdqon1vt8] {
        margin: 0.5rem 0;
    }

    footer.footer .social-icon[b-jpdqon1vt8] {
        color: inherit;
        text-decoration: none;
        margin: 0 0.25rem;
    }

        footer.footer .social-icon:hover[b-jpdqon1vt8] {
            text-decoration: underline;
        }

    footer.footer .powered-by[b-jpdqon1vt8] {
        margin-top: 0.5rem;
        font-size: 0.875rem;
    }

    footer.footer .powered-link[b-jpdqon1vt8] {
        text-decoration: none;
        color: inherit;
    }

        footer.footer .powered-link:hover[b-jpdqon1vt8] {
            text-decoration: underline;
        }

/* ===========================
   Blazor Error UI
   =========================== */
#blazor-error-ui[b-jpdqon1vt8] {
    background: lightyellow;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.2);
    padding: 0.6rem 1.25rem 0.7rem 1.25rem;
    display: none;
}

    #blazor-error-ui .dismiss[b-jpdqon1vt8] {
        cursor: pointer;
        position: absolute;
        right: 0.75rem;
        top: 0.5rem;
    }
/* /Layout/NavMenu.razor.rz.scp.css */
/* ==========================
   Navbar Icon Buttons
========================== */
.nav-icon-btn[b-sfd6y4k00e] {
    background-color: transparent;
    border: none;
    border-radius: var(--btn-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--brand-white);
    padding: 0.25rem 0.5rem;
    font-size: 1.25rem;
    transition: all 0.2s ease-in-out;
}

    .nav-icon-btn:hover[b-sfd6y4k00e] {
        background-color: rgba(255, 255, 255, 0.1);
        color: var(--brand-white);
        text-shadow: none;
    }

    .nav-icon-btn .bi[b-sfd6y4k00e] {
        font-size: 1.25rem;
        color: var(--brand-white);
    }

/* Cart Badge */
.cart-badge[b-sfd6y4k00e] {
    position: absolute;
    top: 0;
    start: 100%;
    transform: translate(-50%, -50%);
    background-color: var(--brand-white);
    color: var(--brand-dark);
    font-size: 0.8rem;
    border-radius: 50%;
    padding: 0.2rem 0.5rem;
}


/* ==========================
   Navbar Base Styles
   ========================== */
.navbar[b-sfd6y4k00e] {
    background: linear-gradient(to right, var(--brand-dark), var(--brand-red), var(--brand-dark));
    color: var(--brand-white);
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    padding: 0 1rem;
    height: 100px;
}

/* Brand */
.navbar-brand[b-sfd6y4k00e] {
    font-size: 1.25rem;
    color: var(--brand-white);
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
}

    .navbar-brand img[b-sfd6y4k00e] {
        height: 75px;
        width: auto;
    }

/* Toggler */
.navbar-toggler[b-sfd6y4k00e] {
    border: 2px solid var(--brand-white);
    background-color: transparent;
    padding: 0.5rem;
    margin-left: auto;
}

.navbar-toggler-icon[b-sfd6y4k00e] {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='white' stroke-linecap='round' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
    background-size: 1.5rem;
    background-repeat: no-repeat;
    background-position: center;
    width: 1.5rem;
    height: 1.5rem;
}

.navbar-toggler:hover[b-sfd6y4k00e] {
    background-color: rgba(255, 255, 255, 0.1);
}

/* Nav items */
.navbar-nav[b-sfd6y4k00e] {
    display: flex;
    align-items: center;
    gap: 20px;
}

.nav-item[b-sfd6y4k00e] {
    position: relative;
}

.nav-link[b-sfd6y4k00e] {
    font-size: 1rem;
    color: var(--brand-white);
    font-weight: 600;
    position: relative;
    padding: 0.5rem 1rem;
    transition: all 0.3s ease-in-out;
}

    .nav-link:hover[b-sfd6y4k00e] {
        color: #ffeaea;
        text-shadow: 0 0 5px rgba(255, 255, 255, 0.6);
    }

    .nav-link[b-sfd6y4k00e]::after {
        content: "";
        position: absolute;
        width: 0%;
        height: 2px;
        bottom: 4px;
        left: 0;
        background-color: var(--brand-white);
        transition: width 0.3s ease-in-out;
    }

    .nav-link:hover[b-sfd6y4k00e]::after {
        width: 100%;
    }

    .nav-link.active[b-sfd6y4k00e] {
        background-color: rgba(255, 255, 255, 0.15);
        border-radius: var(--btn-radius);
    }

/* Cart button */
.cart-btn[b-sfd6y4k00e] {
    background-color: transparent;
    color: var(--brand-white);
    border: none;
}

    .cart-btn:hover[b-sfd6y4k00e] {
        background-color: rgba(255, 255, 255, 0.1);
    }

    .cart-btn .bi[b-sfd6y4k00e] {
        color: var(--brand-white);
    }

    .cart-btn .badge[b-sfd6y4k00e] {
        background-color: var(--brand-white);
        color: var(--brand-dark);
        font-size: 0.8rem;
        border-radius: 50%;
        padding: 0.2rem 0.5rem;
    }

/* ==========================
   Mobile / Tablet Adjustments
   ========================== */
@media (max-width: 991.98px) {
    /* Ensure navbar collapse covers full width and has a solid background */
    .navbar-collapse[b-sfd6y4k00e] {
        background-color: var(--brand-dark); /* solid dark background */
        width: 100%;
    }

    /* Stack nav items vertically with some spacing */
    .navbar-nav[b-sfd6y4k00e] {
        flex-direction: column;
        align-items: center;
        gap: 0.5rem;
        width: 100%;
    }

    /* Cart button alignment */
    .cart-btn[b-sfd6y4k00e] {
        margin: 0.5rem 0;
    }

    /* Optional: make dropdown menus match the navbar background */
    .dropdown-menu[b-sfd6y4k00e] {
        background-color: var(--brand-dark);
        border-radius: var(--btn-radius);
        width: 100%;
    }
}

/* /Pages/Home/Profile.razor.rz.scp.css */
/* ================================
   Profile Page Layout
================================ */
.profile-layout[b-bg8jf3frue] {
    max-width: 1200px; /* usually limit content width */
    margin: 0 auto;
    padding: 1rem;
    display: flex;
    flex-wrap: wrap; /* allow sidebar + content to wrap on smaller screens */
    gap: 1rem;
}

/* Sidebar */
.profile-sidebar[b-bg8jf3frue] {
    flex: 0 0 250px;
    min-width: 220px;
}

    .profile-sidebar h5[b-bg8jf3frue] {
        font-weight: 600;
        margin-bottom: 1rem;
    }

    .profile-sidebar .nav .btn[b-bg8jf3frue] {
        text-align: left;
        width: 100%;
        display: flex;
        align-items: center;
        gap: 0.5rem;
    }

/* Content Card */
.profile-content[b-bg8jf3frue] {
    flex: 1 1 0;
    min-width: 600px;
}

/* Profile Card (overview & edit) */
.profile-card[b-bg8jf3frue] {
    max-width: 100%;
    border-radius: var(--btn-radius);
    padding: 1.5rem;
}

    .profile-card h4[b-bg8jf3frue] {
        font-weight: 600;
        margin-bottom: 0.5rem;
    }

    .profile-card p[b-bg8jf3frue] {
        margin-bottom: 0.5rem;
    }

/* Loading Spinner */
.loading-container[b-bg8jf3frue] {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 300px;
}

/* ================================
   Responsive Adjustments
================================ */
@media (max-width: 991px) { /* Tablet */
    .profile-layout[b-bg8jf3frue] {
        flex-direction: column;
        padding: 0.5rem;
    }

    .profile-sidebar[b-bg8jf3frue] {
        flex: 1 1 100%;
        min-width: auto;
        margin-bottom: 1rem;
    }

    .profile-content[b-bg8jf3frue] {
        flex: 1 1 100%;
        min-width: auto;
    }
}

@media (max-width: 576px) { /* Mobile */
    .profile-sidebar .nav .btn[b-bg8jf3frue] {
        font-size: 0.95rem;
        padding: 0.5rem 0.75rem;
    }

    .profile-card[b-bg8jf3frue] {
        padding: 1rem;
    }

    .profile-content[b-bg8jf3frue] {
        min-width: 100%;
    }
}
/* /Pages/Products/BundlePage.razor.rz.scp.css */
/* ==============================
   Loading Spinner
============================== */
.spinner[b-oww63ttfnp] {
    width: 50px;
    height: 50px;
    border: 5px solid #ccc;
    border-top-color: var(--brand-red);
    border-radius: 50%;
    animation: spin-b-oww63ttfnp 1s linear infinite;
    margin: 1rem auto;
}

@keyframes spin-b-oww63ttfnp {
    to {
        transform: rotate(360deg);
    }
}

/* ==============================
   Product Page Container
============================== */
.product-page-container[b-oww63ttfnp] {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    background-color: var(--brand-light);
    padding: 2rem 3rem;
    height: 100%;
    width: 100%;
    box-sizing: border-box;
}

.loading-state[b-oww63ttfnp] {
    text-align: center;
    font-family: 'Lobster', cursive;
    color: #666;
}

/* ==============================
   Product Main Layout
============================== */
.product-main[b-oww63ttfnp] {
    display: flex;
    gap: 2rem;
    border-radius: 12px;
    flex-wrap: wrap;
}

.product-images[b-oww63ttfnp] {
    flex: 1 1 48%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0.5rem;
    border-radius: 8px;
    background-color: var(--brand-light);
}

.product-info[b-oww63ttfnp] {
    flex: 1 1 48%;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    border-radius: 8px;
    background-color: #f9ecec;
    padding: 2rem;
}

.image-wrapper[b-oww63ttfnp] {
    width: 100%;
}

.product-main-image[b-oww63ttfnp] {
    width: 100%;
    max-height: 500px;
    object-fit: contain;
    border-radius: 8px;
}

.image-controls[b-oww63ttfnp] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 0.5rem;
    width: 100%;
}

.image-counter[b-oww63ttfnp] {
    flex: 1;
    text-align: center;
    font-weight: 600;
    font-family: 'Lobster', cursive;
}

.image-controls button[b-oww63ttfnp] {
    min-width: 80px;
    padding: 0.5rem 1rem;
    border: 1px solid var(--brand-red);
    background-color: var(--brand-white);
    color: var(--brand-red);
    border-radius: 6px;
    cursor: pointer;
    font-family: 'Lobster', cursive;
}

    .image-controls button:hover:not(:disabled)[b-oww63ttfnp] {
        background-color: var(--brand-red);
        color: #fff;
    }

    .image-controls button:disabled[b-oww63ttfnp] {
        opacity: 0.5;
        cursor: not-allowed;
    }

/* ==============================
   Product Title & Description
============================== */
.product-title[b-oww63ttfnp] {
    font-size: 3rem;
    font-weight: 700;
    color: var(--brand-red);
    font-family: 'Lobster', cursive;
    text-align: center;
}

.product-description[b-oww63ttfnp] {
    font-size: 1rem;
    line-height: 1.6;
    color: #333;
    padding: 1rem 1.25rem;
    border-radius: 16px;
    background-color: #f9ecec;
}

/* ==============================
   Price Box
============================== */
.price-box[b-oww63ttfnp] {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    font-family: 'Lobster', cursive;
}

.price[b-oww63ttfnp] {
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--brand-red);
    text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
}

.qty-add-container[b-oww63ttfnp] {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.add-cart[b-oww63ttfnp] {
    flex: 0 0 auto;
}

.add-cart-btn[b-oww63ttfnp] {
    background-color: var(--brand-red);
    color: #fff;
    border-radius: 6px;
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: all 0.2s;
}

    .add-cart-btn:hover[b-oww63ttfnp] {
        background-color: var(--brand-dark);
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    }

/* ==============================
   Bundle Items List
============================== */
.bundle-items[b-oww63ttfnp] {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-top: 1rem;
}

.bundle-item-card[b-oww63ttfnp] {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.5rem 1rem;
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.05);
    transition: box-shadow 0.2s;
    border: 1px solid var(--brand-red);
}

    .bundle-item-card:hover[b-oww63ttfnp] {
        box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    }

    .bundle-item-card .product-img[b-oww63ttfnp] {
        width: 150px;
        height: 150px;
        object-fit: contain;
        border-radius: 8px;
    }

    .bundle-item-card .product-name[b-oww63ttfnp] {
        flex: 1;
        font-size: 1rem;
        font-weight: 600;
        color: #222;
    }

.variant-name[b-oww63ttfnp] {
    font-size: 0.85rem;
    color: var(--brand-red);
}

/* ==============================
   Quantity Selector
============================== */
.quantity-selector[b-oww63ttfnp] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.qty-input[b-oww63ttfnp] {
    width: 60px;
    text-align: center;
    border: 1px solid #ccc;
    border-radius: 6px;
    padding: 0.25rem 0.5rem;
    outline: none;
}

    .qty-input:focus[b-oww63ttfnp] {
        border-color: #007bff;
        box-shadow: 0 0 0 2px rgba(0,123,255,0.2);
    }

.qty-btn[b-oww63ttfnp] {
    width: 32px;
    height: 32px;
    border-radius: 6px;
    border: none;
    background-color: var(--brand-red);
    color: #fff;
    font-weight: bold;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}

    .qty-btn:hover[b-oww63ttfnp] {
        background-color: var(--brand-dark);
    }

    .qty-btn:active[b-oww63ttfnp] {
        transform: scale(0.95);
    }

/* ==============================
   Selected Items & Panel Actions
============================== */
.selected-items-grid[b-oww63ttfnp] {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.selected-item-card[b-oww63ttfnp] {
    background: #f8f9fa;
    border: 1px solid #dee2e6;
    border-radius: 0.5rem;
    padding: 0.5rem 0.75rem;
    display: flex;
    align-items: center;
}

.selected-item-info[b-oww63ttfnp] {
    display: flex;
    justify-content: space-between;
    width: 100%;
    gap: 0.5rem;
}

.selected-item-name[b-oww63ttfnp] {
    font-weight: 500;
}

.selected-item-qty[b-oww63ttfnp] {
    font-size: 0.85rem;
    padding: 0.2rem 0.5rem;
}

.panel-actions[b-oww63ttfnp] {
    display: flex;
    justify-content: flex-end;
    gap: 0.75rem;
}

    .panel-actions .btn[b-oww63ttfnp] {
        min-width: 120px;
    }

/* ==============================
   ContextPanel: Available Items Grid
============================== */
.available-items[b-oww63ttfnp] {
    max-height: 50dvh;
    overflow-y: auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-top: 1rem;
}

.bundle-item-card .item-image[b-oww63ttfnp] {
    width: 100px;
    height: 100px;
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f9f9f9;
}

    .bundle-item-card .item-image img[b-oww63ttfnp] {
        width: 100%;
        height: 100%;
        object-fit: contain;
    }

.bundle-item-card .item-info[b-oww63ttfnp] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
}

/* ==============================
   Responsive Adjustments
============================== */
@media (max-width: 1024px) {
    .product-images[b-oww63ttfnp], .product-info[b-oww63ttfnp] {
        flex: 1 1 100%;
    }

    .product-main-image[b-oww63ttfnp] {
        max-height: 400px;
    }

    .product-title[b-oww63ttfnp] {
        font-size: 2rem;
    }

    .available-items[b-oww63ttfnp] {
        grid-template-columns: repeat(2, 1fr);
        max-height: 50dvh;
    }
}

@media (max-width: 768px) {
    .product-page-container[b-oww63ttfnp] {
        padding: 1rem 1rem;
    }

    .available-items[b-oww63ttfnp] {
        grid-template-columns: repeat(2, 1fr);
        max-height: 400px;
    }

    .bundle-item-card[b-oww63ttfnp] {
        width: 100%;
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 0.5rem;
    }

        .bundle-item-card .item-image[b-oww63ttfnp],
        .bundle-item-card .item-image img[b-oww63ttfnp] {
            width: 100px;
            height: 100px;
            margin-bottom: 0.5rem;
        }

        .bundle-item-card .item-info[b-oww63ttfnp] {
            font-size: 0.9rem;
        }

    .quantity-selector[b-oww63ttfnp] {
        justify-content: center;
    }
}

@media (max-width: 400px) {
    .available-items[b-oww63ttfnp] {
        grid-template-columns: repeat(2, 1fr);
        max-height: 50dvh;
    }
}
/* /Pages/Products/Bundles.razor.rz.scp.css */
/* ================================
   Bundles Page Styling (Themed)
================================ */

/* ==============================
   Category Buttons
============================== */
.category-buttons[b-lf5dux183n] {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 2rem;
    padding-bottom: 0.5rem;
    position: relative;
}

    .category-buttons .btn[b-lf5dux183n] {
        background: var(--brand-light);
        border: 2px solid var(--brand-red);
        border-radius: var(--btn-radius);
        padding: 0.5rem 1.25rem;
        font-size: 0.95rem;
        font-weight: 600;
        color: var(--brand-red);
        white-space: nowrap;
        transition: all 0.25s ease-in-out;
    }

        .category-buttons .btn:hover[b-lf5dux183n] {
            background: var(--brand-red);
            color: var(--brand-white);
            transform: translateY(-2px);
        }

        .category-buttons .btn.active[b-lf5dux183n] {
            background: var(--brand-dark);
            border-color: var(--brand-dark);
            color: var(--brand-white);
        }

/* --- Mobile & Tablet: Horizontal scroll --- */
@media (max-width: 1024px) {
    .category-buttons[b-lf5dux183n] {
        flex-wrap: nowrap;
        overflow-x: auto;
        overflow-y: hidden;
        white-space: nowrap;
        scroll-behavior: smooth;
        justify-content: flex-start;
        padding: 0 1rem 0.75rem;
        margin: 0 auto 2rem;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }

        .category-buttons[b-lf5dux183n]::-webkit-scrollbar {
            display: none;
        }

        .category-buttons .btn[b-lf5dux183n] {
            flex: 0 0 auto;
        }

        .category-buttons[b-lf5dux183n]::before,
        .category-buttons[b-lf5dux183n]::after {
            content: "";
            flex: 0 0 1rem;
        }

        .category-buttons[b-lf5dux183n]::after {
            position: absolute;
            top: 0;
            right: 0;
            width: 40px;
            height: 100%;
            pointer-events: none;
            background: linear-gradient(to left, var(--brand-white) 70%, transparent);
        }
}

@media (max-width: 768px) {
    .category-buttons[b-lf5dux183n] {
        padding: 0 0.75rem 0.5rem;
    }

        .category-buttons .btn[b-lf5dux183n] {
            padding: 0.45rem 1rem;
            font-size: 0.9rem;
        }
}

/* ==============================
   Pagination
============================== */
nav.d-flex[b-lf5dux183n] {
    margin: 2rem 0;
    font-size: 0.95rem;
}

    nav.d-flex .btn[b-lf5dux183n] {
        background: var(--brand-light);
        border: 1px solid var(--brand-light);
        border-radius: var(--btn-radius);
        padding: 0.4rem 1rem;
        font-size: 0.9rem;
        transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
        color: var(--brand-dark);
    }

        nav.d-flex .btn:hover:not(:disabled)[b-lf5dux183n] {
            background: var(--brand-dark);
            color: var(--brand-white);
            border-color: var(--brand-dark);
        }

        nav.d-flex .btn:disabled[b-lf5dux183n] {
            opacity: 0.5;
            cursor: not-allowed;
        }

/* ==============================
   Bundle List Layout
============================== */
.bundle-list[b-lf5dux183n] {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

/* Bundle Card (matching product card) */
.bundle-card[b-lf5dux183n] {
    background: var(--brand-white);
    border: 1px solid var(--brand-light);
    border-radius: var(--btn-radius);
    padding: 1rem;
    text-align: center;
    transition: box-shadow 0.2s ease, transform 0.2s ease;
}

    .bundle-card:hover[b-lf5dux183n] {
        box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
        transform: translateY(-3px);
    }

/* --- Mobile tweaks --- */
@media (max-width: 768px) {
    .bundle-list[b-lf5dux183n] {
        grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
        gap: 1rem;
    }
}

/* ==============================
   Loading Spinner
============================== */
.spinner[b-lf5dux183n] {
    width: 50px;
    height: 50px;
    border: 5px solid #ccc;
    border-top-color: var(--brand-red);
    border-radius: 50%;
    animation: spin-b-lf5dux183n 1s linear infinite;
    margin: 1rem auto;
}

@keyframes spin-b-lf5dux183n {
    to {
        transform: rotate(360deg);
    }
}

/* ==============================
   Bundle Configuration Panel
============================== */
.available-items[b-lf5dux183n] {
    max-height: 400px;
    overflow-y: auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-top: 1rem;
}

.bundle-item-card[b-lf5dux183n] {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.5rem 1rem;
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.05);
    transition: box-shadow 0.2s;
    border: 1px solid var(--brand-red);
}

    .bundle-item-card:hover[b-lf5dux183n] {
        box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    }

    .bundle-item-card .item-image[b-lf5dux183n] {
        width: 100px;
        height: 100px;
        border-radius: 8px;
        overflow: hidden;
        display: flex;
        align-items: center;
        justify-content: center;
        background: #f9f9f9;
    }

        .bundle-item-card .item-image img[b-lf5dux183n] {
            width: 100%;
            height: 100%;
            object-fit: contain;
        }

    .bundle-item-card .item-info[b-lf5dux183n] {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 0.25rem;
    }

    .bundle-item-card .product-img[b-lf5dux183n] {
        width: 150px;
        height: 150px;
        object-fit: contain;
        border-radius: 8px;
    }

    .bundle-item-card .product-name[b-lf5dux183n] {
        flex: 1;
        font-size: 1rem;
        font-weight: 600;
        color: #222;
        text-align: center;
    }

.variant-name[b-lf5dux183n] {
    font-size: 0.85rem;
    color: var(--brand-red);
}

.quantity-selector[b-lf5dux183n] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.qty-input[b-lf5dux183n] {
    width: 60px;
    text-align: center;
    border: 1px solid #ccc;
    border-radius: 6px;
    padding: 0.25rem 0.5rem;
    outline: none;
}

    .qty-input:focus[b-lf5dux183n] {
        border-color: #007bff;
        box-shadow: 0 0 0 2px rgba(0,123,255,0.2);
    }

.qty-btn[b-lf5dux183n] {
    width: 32px;
    height: 32px;
    border-radius: 6px;
    border: none;
    background-color: var(--brand-red);
    color: #fff;
    font-weight: bold;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}

    .qty-btn:hover[b-lf5dux183n] {
        background-color: var(--brand-dark);
    }

    .qty-btn:active[b-lf5dux183n] {
        transform: scale(0.95);
    }

/* Selected Items & Panel Actions */
.selected-items-grid[b-lf5dux183n] {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.selected-item-card[b-lf5dux183n] {
    background: #f8f9fa;
    border: 1px solid #dee2e6;
    border-radius: 0.5rem;
    padding: 0.5rem 0.75rem;
    display: flex;
    align-items: center;
}

.selected-item-info[b-lf5dux183n] {
    display: flex;
    justify-content: space-between;
    width: 100%;
    gap: 0.5rem;
}

.selected-item-name[b-lf5dux183n] {
    font-weight: 500;
}

.selected-item-qty[b-lf5dux183n] {
    font-size: 0.85rem;
    padding: 0.2rem 0.5rem;
}

.panel-actions[b-lf5dux183n] {
    display: flex;
    justify-content: flex-end;
    gap: 0.75rem;
}

    .panel-actions .btn[b-lf5dux183n] {
        min-width: 120px;
    }

/* ==============================
   Responsive Adjustments
============================== */
@media (max-width: 1024px) {
    .available-items[b-lf5dux183n] {
        grid-template-columns: repeat(2, 1fr);
        max-height: 50dvh;
    }
}

@media (max-width: 768px) {
    .available-items[b-lf5dux183n] {
        grid-template-columns: repeat(2, 1fr);
        max-height: 50dvh;
    }

    .bundle-item-card[b-lf5dux183n] {
        width: 100%;
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 0.5rem;
    }

        .bundle-item-card .item-image[b-lf5dux183n],
        .bundle-item-card .item-image img[b-lf5dux183n] {
            width: 100px;
            height: 100px;
            margin-bottom: 0.5rem;
        }

        .bundle-item-card .item-info[b-lf5dux183n] {
            font-size: 0.9rem;
        }

    .quantity-selector[b-lf5dux183n] {
        justify-content: center;
    }
}

@media (max-width: 400px) {
    .available-items[b-lf5dux183n] {
        grid-template-columns: 1fr;
        max-height: 50dvh;
    }
}
/* /Pages/Products/ProductCategories.razor.rz.scp.css */
/* ================================
   Shop Page Styling (Themed)
================================ */


/* ==============================
   Category Description
============================== */
.category-description[b-5j6b9eplh0] {
    font-family: var(--text-font);
    text-align: center;
    max-width: 800px;
    margin: 0.5rem auto 2.5rem;
    font-size: 1.5rem;
    color: var(--text-grey); /* fallback if no variable */
}

/* Optional: slightly smaller on mobile */
@media (max-width: 768px) {
    .category-description[b-5j6b9eplh0] {
        font-size: 1rem;
        line-height: 1.6;
        margin-bottom: 2rem;
        padding: 0 1rem;
    }
}



/* Category Buttons */
.category-buttons[b-5j6b9eplh0] {
    display: flex;
    flex-wrap: wrap;
    justify-content: center; /* center buttons on desktop */
    gap: 0.75rem;
    margin-bottom: 2rem;
    padding-bottom: 0.5rem;
    position: relative;
}

    .category-buttons .btn[b-5j6b9eplh0] {
        background: var(--brand-light);
        border: 2px solid var(--brand-red);
        border-radius: var(--btn-radius);
        padding: 0.5rem 1.25rem;
        font-size: 0.95rem;
        font-weight: 600;
        color: var(--brand-red);
        white-space: nowrap;
        transition: all 0.25s ease-in-out;
    }

        .category-buttons .btn:hover[b-5j6b9eplh0] {
            background: var(--brand-red);
            color: var(--brand-white);
            transform: translateY(-2px);
        }

        .category-buttons .btn.active[b-5j6b9eplh0] {
            background: var(--brand-dark);
            border-color: var(--brand-dark);
            color: var(--brand-white);
        }

/* --- Mobile & Tablet: Horizontal scroll --- */
@media (max-width: 1024px) {
    .category-buttons[b-5j6b9eplh0] {
        flex-wrap: nowrap; /* single line */
        overflow-x: auto;
        overflow-y: hidden;
        white-space: nowrap;
        scroll-behavior: smooth;
        justify-content: flex-start; /* critical: allow full scroll range */
        padding: 0 1rem 0.75rem;
        margin: 0 auto 2rem;
        scrollbar-width: none; /* Firefox */
        -ms-overflow-style: none; /* IE/Edge */
    }

        .category-buttons[b-5j6b9eplh0]::-webkit-scrollbar {
            display: none; /* Chrome/Safari */
        }

        .category-buttons .btn[b-5j6b9eplh0] {
            flex: 0 0 auto; /* prevent shrinking */
        }

        /* Optional: create visual centering illusion */
        .category-buttons[b-5j6b9eplh0]::before,
        .category-buttons[b-5j6b9eplh0]::after {
            content: "";
            flex: 0 0 1rem; /* side padding for nicer centering look */
        }
}

/* --- Mobile tweaks --- */
@media (max-width: 768px) {
    .category-buttons[b-5j6b9eplh0] {
        padding: 0 0.75rem 0.5rem;
    }

        .category-buttons .btn[b-5j6b9eplh0] {
            padding: 0.45rem 1rem;
            font-size: 0.9rem;
        }
}
/* /Pages/Products/ProductPage.razor.rz.scp.css */
/* ==============================
   Loading Spinner
============================= */
.spinner[b-4s0w3pza2a] {
    width: 50px;
    height: 50px;
    border: 5px solid #ccc;
    border-top-color: var(--brand-red);
    border-radius: 50%;
    animation: spin-b-4s0w3pza2a 1s linear infinite;
    margin: 1rem auto;
}

@keyframes spin-b-4s0w3pza2a {
    to {
        transform: rotate(360deg);
    }
}

/* ==============================
   Price Styling
============================= */
.price:not(.price-box .price)[b-4s0w3pza2a] {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--brand-red);
    margin-bottom: 1rem;
}

/* ==============================
   Add to Cart Container
============================= */
.add-cart[b-4s0w3pza2a] {
    margin-top: 1rem;
    display: flex;
    justify-content: flex-start;
}

/* ==============================
   No Images Placeholder
============================= */
.no-images[b-4s0w3pza2a] {
    padding: 1rem;
}

/* ==============================
   Variant Options
============================= */
.variant-options[b-4s0w3pza2a] {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 0.5rem;
}

.variant-selector label[b-4s0w3pza2a] {
    font-size: 1.5rem;
}

.variant-btn[b-4s0w3pza2a] {
    border-radius: 20px;
    border: 1px solid var(--brand-red);
    padding: 0.5rem 1rem;
    cursor: pointer;
    font-size: 1.5rem;
    transition: all 0.2s;
    background-color: var(--brand-white);
    color: var(--brand-red);
}

    .variant-btn:hover[b-4s0w3pza2a] {
        background-color: var(--brand-red);
        color: var(--brand-white);
    }

    .variant-btn.active[b-4s0w3pza2a] {
        background-color: var(--brand-red);
        color: var(--brand-white);
        font-weight: 600;
    }

/* ==============================
   Image Controls
============================= */
.image-controls[b-4s0w3pza2a] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 0.5rem;
    width: 100%;
    font-size: 0.95rem;
}

    .image-controls button[b-4s0w3pza2a] {
        min-width: 80px;
        padding: 0.5rem 1rem;
        border: 1px solid var(--brand-red);
        background-color: var(--brand-white);
        color: var(--brand-red);
        border-radius: var(--btn-radius);
        cursor: pointer;
        font-size: 0.9rem;
        transition: all 0.2s;
        font-family: 'Lobster', cursive;
    }

        .image-controls button:hover:not(:disabled)[b-4s0w3pza2a] {
            background-color: var(--brand-red);
            color: var(--brand-white);
        }

        .image-controls button:disabled[b-4s0w3pza2a] {
            opacity: 0.5;
            cursor: not-allowed;
        }

.image-counter[b-4s0w3pza2a] {
    flex: 1;
    text-align: center;
    font-weight: 600;
    margin: 0 0.5rem;
    font-family: 'Lobster', cursive;
}

/* ==============================
   Product Page Layout
============================= */
.loading-state[b-4s0w3pza2a],
.no-images[b-4s0w3pza2a] {
    font-size: 1rem;
    color: #666;
    text-align: center;
    font-family: 'Lobster', cursive;
}

.product-page-container[b-4s0w3pza2a] {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    background-color: var(--brand-light);
    padding: 2rem 3rem;
}

.product-main[b-4s0w3pza2a] {
    display: flex;
    gap: 2rem;
    justify-content: space-between;
    border-radius: 12px;
    align-items: flex-start; /* <-- prevents stretching */
}


.product-images[b-4s0w3pza2a] {
    flex: 1 1 48%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0.5rem;
    border-radius: 8px;
    background-color: var(--brand-light);
}

.product-info[b-4s0w3pza2a] {
    flex: 1 1 48%;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    border-radius: 8px;
    background-color: #f9ecec;
    padding: 2rem;
}

.image-wrapper[b-4s0w3pza2a] {
    width: 100%;
}

.product-main-image[b-4s0w3pza2a] {
    width: 100%;
    max-height: 700px;
    object-fit: contain;
    border-radius: 8px;
}

.product-info .product-title[b-4s0w3pza2a] {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    padding-top: 2rem;
    color: var(--brand-red);
    font-family: 'Lobster', cursive;
    text-align: center;
}

.product-description[b-4s0w3pza2a] {
    font-size: 1rem;
    line-height: 1.6;
    color: #333;
    margin-bottom: 1.5rem;
    padding: 1rem 1.25rem;
    border-radius: 16px;
    background-color: #f9ecec;
}

.price-box[b-4s0w3pza2a] {
    border-radius: var(--btn-radius);
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    font-family: 'Lobster', cursive;
}

    .price-box .price[b-4s0w3pza2a] {
        font-size: 2rem;
        font-weight: 700;
        color: var(--brand-red);
    }

    .price-box .stock[b-4s0w3pza2a] {
        font-size: 0.9rem;
        color: #666;
    }

/* ==============================
   Product Price Styling
============================= */
.price[b-4s0w3pza2a] {
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--brand-red);
    letter-spacing: 0.05em;
    line-height: 1.1;
    margin: 0.75rem 0 1.5rem 0;
    display: inline-block;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
    font-family: 'Lobster', cursive;
    position: relative;
}

    .price[b-4s0w3pza2a]::before {
        font-size: 2rem;
        vertical-align: super;
        margin-right: 0.1em;
        font-weight: 700;
    }

    .price.animate[b-4s0w3pza2a] {
        animation: popPrice-b-4s0w3pza2a 0.4s ease-in-out;
    }

@keyframes popPrice-b-4s0w3pza2a {
    0% {
        transform: scale(1);
        opacity: 0.8;
    }

    50% {
        transform: scale(1.2);
        opacity: 1;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

/* ==============================
   Quantity Selector
============================= */
.quantity-selector[b-4s0w3pza2a] {
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

    .quantity-selector .selector-label[b-4s0w3pza2a] {
        font-weight: 600;
        font-size: 2rem;
        color: var(--brand-red);
        margin-bottom: 0.5rem;
    }

.qty-wrapper[b-4s0w3pza2a] {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.qty-input[b-4s0w3pza2a] {
    width: 70px;
    padding: 0.4rem 0.6rem;
    font-size: 1rem;
    text-align: center;
    border: 1px solid #ccc;
    border-radius: 6px;
    outline: none;
    transition: border-color 0.2s, box-shadow 0.2s;
}

    .qty-input:focus[b-4s0w3pza2a] {
        border-color: #007bff;
        box-shadow: 0 0 0 2px rgba(0, 123, 255, 0.2);
    }

    .qty-input[b-4s0w3pza2a]::-webkit-inner-spin-button,
    .qty-input[b-4s0w3pza2a]::-webkit-outer-spin-button {
        display: none;
    }

.qty-btn[b-4s0w3pza2a] {
    background-color: var(--brand-red);
    color: var(--brand-white);
    border: none;
    border-radius: 6px;
    font-size: 1.25rem;
    font-weight: bold;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background-color 0.2s, transform 0.1s;
}

    .qty-btn:hover[b-4s0w3pza2a] {
        background-color: var(--brand-dark);
    }

    .qty-btn:active[b-4s0w3pza2a] {
        transform: scale(0.95);
    }

/* ==============================
   Quantity + Add to Cart Container
============================= */
.qty-add-container[b-4s0w3pza2a] {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 1rem;
}

    .qty-add-container .quantity-selector[b-4s0w3pza2a] {
        margin: 0;
        flex: 1 1 auto;
    }

    .qty-add-container .add-cart-btn[b-4s0w3pza2a] {
        flex: 0 0 auto;
        white-space: nowrap;
    }

/* ==============================
   Quantity Tiers
============================= */
.quantity-tiers[b-4s0w3pza2a] {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 0.75rem;
}

.tier-btn[b-4s0w3pza2a] {
    border-radius: var(--btn-radius);
    border: 1px solid var(--brand-red);
    background-color: #fdf7f5;
    color: var(--brand-red);
    min-width: 80px;
    text-align: center;
    padding: 0.5rem 0.75rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

    .tier-btn:hover[b-4s0w3pza2a] {
        background-color: var(--brand-red);
        color: var(--brand-white);
        box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    }

    .tier-btn .tier-quantity[b-4s0w3pza2a] {
        font-weight: 600;
        font-size: 1rem;
    }

    .tier-btn .tier-price[b-4s0w3pza2a] {
        font-size: 0.9rem;
        margin-top: 0.25rem;
    }

    .tier-btn .tier-note[b-4s0w3pza2a] {
        font-size: 0.75rem;
        margin-top: 0.25rem;
        color: #555;
    }

/* ==============================
   Add to Cart Button
============================= */
.add-cart-btn[b-4s0w3pza2a] {
    background-color: var(--brand-red);
    color: var(--brand-white);
    border-radius: var(--btn-radius);
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    font-weight: 600;
    transition: all 0.2s;
    cursor: pointer;
    border: none;
}

    .add-cart-btn:hover[b-4s0w3pza2a] {
        background-color: var(--brand-dark);
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    }

/* ==============================
   Responsive Breakpoints
============================= */
@media (min-width: 1025px) {
    .product-main[b-4s0w3pza2a] {
        flex-direction: row;
    }

    .product-images[b-4s0w3pza2a] {
        flex: 1 1 48%;
    }

    .product-info[b-4s0w3pza2a] {
        flex: 1 1 48%;
    }

    .product-title[b-4s0w3pza2a] {
        font-size: 2rem;
    }

    .product-description[b-4s0w3pza2a] {
        font-size: 1rem;
    }

    .price-box .price[b-4s0w3pza2a] {
        font-size: 2rem;
    }
}

@media (min-width: 768px) and (max-width: 1024px) {
    .product-page-container[b-4s0w3pza2a] {
        padding: 1rem 1.5rem;
    }

    .product-main[b-4s0w3pza2a] {
        flex-direction: column;
    }

    .product-images[b-4s0w3pza2a],
    .product-info[b-4s0w3pza2a] {
        flex: 1 1 100%;
    }

    .product-main-image[b-4s0w3pza2a] {
        max-height: 400px;
    }

    .product-title[b-4s0w3pza2a] {
        font-size: 1.75rem;
    }

    .product-description[b-4s0w3pza2a] {
        font-size: 1.3rem;
    }

    .price-box .price[b-4s0w3pza2a] {
        font-size: 2.5rem;
    }

    .quantity-selector .selector-label[b-4s0w3pza2a] {
        font-size: 2.5rem;
    }

    .tier-btn[b-4s0w3pza2a] {
        flex: 1 1 calc(50% - 0.5rem);
        max-width: 200px;
    }

        .tier-btn .tier-quantity[b-4s0w3pza2a] {
            font-size: 1.5rem;
        }

        .tier-btn .tier-price[b-4s0w3pza2a] {
            font-size: 1.5rem;
        }

    .qty-btn[b-4s0w3pza2a] {
        width: 44px;
        height: 44px;
        font-size: 1.5rem;
    }
}

@media (max-width: 767px) {
    .product-page-container[b-4s0w3pza2a] {
        padding: 1rem 1rem;
    }

    .product-main[b-4s0w3pza2a] {
        flex-direction: column;
        gap: 1.5rem;
        padding: 0;
    }

    .product-images[b-4s0w3pza2a],
    .product-info[b-4s0w3pza2a] {
        flex: 1 1 100%;
    }

    .product-main-image[b-4s0w3pza2a] {
        max-height: 300px;
    }

    .product-info .product-title[b-4s0w3pza2a] {
        font-size: 2.25rem;
    }

    .product-description[b-4s0w3pza2a] {
        font-size: 1.2rem;
    }

    .price-box .price[b-4s0w3pza2a] {
        font-size: 2.5rem;
    }

    .variant-btn[b-4s0w3pza2a] {
        font-size: 1rem;
    }

    .variant-selector label[b-4s0w3pza2a] {
        font-size: 1.25rem;
        font-weight: bold;
        color: var(--brand-red);
    }

    .tier-btn[b-4s0w3pza2a] {
        flex: 1 1 calc(50% - 0.5rem);
        max-width: 160px;
    }

        .tier-btn .tier-quantity[b-4s0w3pza2a] {
            font-size: 1.1rem;
        }

        .tier-btn .tier-price[b-4s0w3pza2a] {
            font-size: 1rem;
        }

    .qty-btn[b-4s0w3pza2a] {
        width: 44px;
        height: 44px;
        font-size: 1.5rem;
    }
}
/* /Pages/Products/Products.razor.rz.scp.css */
 /* ================================
   Products Page Styling (Themed)
================================ */
/* ==============================
   Variant Selection Panel
============================== */
.variant-panel[b-04drlpxkxy] {
    padding: 1.5rem;
    background: var(--brand-light);
    border-radius: 16px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.1);
    font-family: var(--text-font);
}

/* Title and description */
.variant-panel p[b-04drlpxkxy] {
    font-size: 1.05rem;
    color: var(--brand-dark);
    margin-bottom: 1rem;
}

/* Variant list */
.variant-options[b-04drlpxkxy] {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.variant-option[b-04drlpxkxy] {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: var(--brand-white);
    border: 2px solid transparent;
    border-radius: 12px;
    padding: 0.75rem 1rem;
    transition: all 0.25s ease;
    cursor: pointer;
}

    .variant-option:hover[b-04drlpxkxy] {
        border-color: var(--brand-red);
        background: rgba(255, 0, 0, 0.05);
    }

    .variant-option input[type="radio"][b-04drlpxkxy] {
        accent-color: var(--brand-red);
        width: 1.1rem;
        height: 1.1rem;
    }

    .variant-option label[b-04drlpxkxy] {
        margin: 0;
        font-size: 1rem;
        font-weight: 500;
        color: var(--brand-dark);
    }

/* Quantity input */
.variant-quantity[b-04drlpxkxy] {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-top: 1rem;
}

    .variant-quantity label[b-04drlpxkxy] {
        font-weight: 600;
        color: var(--brand-dark);
    }

    .variant-quantity input[b-04drlpxkxy] {
        width: 80px;
        border-radius: 8px;
        border: 2px solid var(--brand-border, #ddd);
        padding: 0.4rem 0.5rem;
        font-size: 1rem;
        text-align: center;
        transition: border 0.2s ease;
    }

        .variant-quantity input:focus[b-04drlpxkxy] {
            outline: none;
            border-color: var(--brand-red);
        }

/* Add to Cart button */
.variant-panel .btn[b-04drlpxkxy] {
    background: var(--brand-red);
    border: none;
    color: var(--brand-white);
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    border-radius: 10px;
    transition: all 0.25s ease;
}

    .variant-panel .btn:hover[b-04drlpxkxy] {
        background: var(--brand-dark);
        transform: translateY(-2px);
    }

.variant-option input[type="radio"]:checked + label[b-04drlpxkxy] {
    color: var(--brand-red);
    font-weight: 600;
}

/* ==============================
   Category Buttons
============================== */
.category-buttons[b-04drlpxkxy] {
    display: flex;
    flex-wrap: wrap;
    justify-content: center; /* center buttons on desktop */
    gap: 0.75rem;
    margin-bottom: 2rem;
    padding-bottom: 0.5rem;
    position: relative;
}

    .category-buttons .btn[b-04drlpxkxy] {
        background: var(--brand-light);
        border: 2px solid var(--brand-red);
        border-radius: var(--btn-radius);
        padding: 0.5rem 1.25rem;
        font-size: 0.95rem;
        font-weight: 600;
        color: var(--brand-red);
        white-space: nowrap;
        transition: all 0.25s ease-in-out;
    }

        .category-buttons .btn:hover[b-04drlpxkxy] {
            background: var(--brand-red);
            color: var(--brand-white);
            transform: translateY(-2px);
        }

        .category-buttons .btn.active[b-04drlpxkxy] {
            background: var(--brand-dark);
            border-color: var(--brand-dark);
            color: var(--brand-white);
        }

/* --- Mobile & Tablet: Horizontal scroll --- */
@media (max-width: 1024px) {
    .category-buttons[b-04drlpxkxy] {
        flex-wrap: nowrap; /* single line */
        overflow-x: auto;
        overflow-y: hidden;
        white-space: nowrap;
        scroll-behavior: smooth;
        justify-content: flex-start; /* allow full scroll range */
        padding: 0 1rem 0.75rem;
        margin: 0 auto 2rem;
        scrollbar-width: none; /* Firefox */
        -ms-overflow-style: none; /* IE/Edge */
    }

        .category-buttons[b-04drlpxkxy]::-webkit-scrollbar {
            display: none; /* Chrome/Safari */
        }

        .category-buttons .btn[b-04drlpxkxy] {
            flex: 0 0 auto; /* prevent shrinking */
        }

        /* Padding illusion to prevent edge cut-offs */
        .category-buttons[b-04drlpxkxy]::before,
        .category-buttons[b-04drlpxkxy]::after {
            content: "";
            flex: 0 0 1rem;
        }
}

/* --- Mobile tweaks --- */
@media (max-width: 768px) {
    .category-buttons[b-04drlpxkxy] {
        padding: 0 0.75rem 0.5rem;
    }

        .category-buttons .btn[b-04drlpxkxy] {
            padding: 0.45rem 1rem;
            font-size: 0.9rem;
        }
}

/* ==============================
   Pagination
============================== */
nav.d-flex[b-04drlpxkxy] {
    margin: 2rem 0;
    font-size: 0.95rem;
}

    nav.d-flex .btn[b-04drlpxkxy] {
        background: var(--brand-light);
        border: 1px solid var(--brand-light);
        border-radius: var(--btn-radius);
        padding: 0.4rem 1rem;
        font-size: 0.9rem;
        transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
        color: var(--brand-dark);
    }

        nav.d-flex .btn:hover:not(:disabled)[b-04drlpxkxy] {
            background: var(--brand-dark);
            color: var(--brand-white);
            border-color: var(--brand-dark);
        }

        nav.d-flex .btn:disabled[b-04drlpxkxy] {
            opacity: 0.5;
            cursor: not-allowed;
        }

/* ==============================
   Product List Layout
============================== */
.product-list[b-04drlpxkxy] {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

/* Product Card */
.product-card[b-04drlpxkxy] {
    background: var(--brand-white);
    border: 1px solid var(--brand-light);
    border-radius: var(--btn-radius);
    padding: 1rem;
    text-align: center;
    transition: box-shadow 0.2s ease, transform 0.2s ease;
}

    .product-card:hover[b-04drlpxkxy] {
        box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
        transform: translateY(-3px);
    }

/* Responsive tweaks */
@media (max-width: 768px) {
    .product-list[b-04drlpxkxy] {
        grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
        gap: 1rem;
    }
}
