/* /Pages/Cart.cshtml.rz.scp.css */
.main-cart-container[b-7as4sross5] {
    background-color: #faf9f6;
    padding-top: 60px;
    padding-bottom: 80px;
    min-height: calc(100vh - var(--top-nav-h));
    max-width: 100% !important;
    width: 100% !important;
}

.cart-page[b-7as4sross5] {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin-top: var(--top-nav-h);
}

.page-title[b-7as4sross5] {
    font-size: 2.6rem;
    font-family: var(--font-serif);
    font-weight: 500;
    color: var(--color-text);
    margin-bottom: 12px;
}

.cart-main-grid[b-7as4sross5] {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
}

.cart-items[b-7as4sross5] {
    display: flex;
    flex-direction: column;
}

.cart-item[b-7as4sross5] {
    display: flex;
    gap: 24px;
    padding: 28px 0;
    border-bottom: 1px solid var(--color-border-light);
}

.cart-item:first-child[b-7as4sross5] {
    padding-top: 0;
}

.cart-item:last-child[b-7as4sross5] {
    border-bottom: none;
}

.item-image-wrap[b-7as4sross5] {
    width: 120px;
    height: 120px;
    background-color: #f5f3ef;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    cursor: pointer;
    overflow: hidden;
    padding: 10px;
    transition: background-color var(--transition-fast);
}

.item-image-wrap img[b-7as4sross5] {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: transform var(--transition-smooth);
}

.item-image-wrap:hover[b-7as4sross5] {
    background-color: #edebe7;
}

.item-image-wrap:hover img[b-7as4sross5] {
    transform: scale(1.06);
}

.item-details[b-7as4sross5] {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    justify-content: space-between;
}

.header-row[b-7as4sross5] {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.item-name[b-7as4sross5] {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--color-text);
    margin: 0;
    font-family: var(--font-sans);
}

.item-price[b-7as4sross5] {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--color-text);
    margin: 0;
    font-family: var(--font-sans);
}

.item-size[b-7as4sross5] {
    font-size: 0.9rem;
    color: rgba(0, 0, 0, 0.5);
    margin: 4px 0 0 0;
    font-family: var(--font-sans);
}

.actions-row[b-7as4sross5] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 12px;
}

.quantity-selector[b-7as4sross5] {
    display: flex;
    align-items: center;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 24px;
    padding: 4px 14px;
    background-color: white;
}

.quantity-selector button[b-7as4sross5] {
    background: none;
    border: none;
    font-size: 1.1rem;
    cursor: pointer;
    color: var(--color-text);
    padding: 0 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity var(--transition-fast);
}

.quantity-selector button:hover[b-7as4sross5] {
    opacity: 0.6;
}

.quantity-selector .qty[b-7as4sross5] {
    min-width: 28px;
    text-align: center;
    font-size: 1rem;
    font-weight: 600;
    font-family: var(--font-sans);
}

.remove-btn[b-7as4sross5] {
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #555;
    transition: opacity var(--transition-fast), transform var(--transition-fast), background-color var(--transition-fast);
    border-radius: 50%;
}

.remove-btn:hover[b-7as4sross5] {
    background-color: rgba(0, 0, 0, 0.04);
    transform: scale(1.05);
}

.summary-box-wrap[b-7as4sross5] {
    display: flex;
    flex-direction: column;
}

.summary-box[b-7as4sross5] {
    background: #ffffff;
    border: 1px solid var(--color-border-light);
    border-radius: 16px;
    padding: 36px 28px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.summary-header[b-7as4sross5] {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
}

.summary-header h2[b-7as4sross5] {
    font-size: 1.6rem;
    font-family: var(--font-serif);
    font-weight: 500;
    margin: 0;
}

.summary-header .subtotal-price[b-7as4sross5] {
    font-size: 1.6rem;
    font-family: var(--font-serif);
    font-weight: 600;
    color: var(--color-text);
}

.shipping-note[b-7as4sross5] {
    font-size: 0.9rem;
    color: rgba(0, 0, 0, 0.5);
    margin: 0;
    line-height: 1.5;
    font-family: var(--font-sans);
}

.checkout-btn[b-7as4sross5] {
    background-color: var(--color-primary);
    color: white;
    border: none;
    border-radius: 28px;
    padding: 16px;
    font-size: 1.15rem;
    font-weight: 700;
    cursor: pointer;
    transition: background-color var(--transition-fast), transform var(--transition-fast);
    width: 100%;
    font-family: var(--font-sans);
    text-align: center;
    text-decoration: none;
}

.checkout-btn:hover[b-7as4sross5] {
    background-color: var(--color-primary-hover);
}

.checkout-btn:active[b-7as4sross5] {
    transform: scale(0.98);
}

.empty-cart[b-7as4sross5] {
    text-align: center;
    padding: 80px 0;
    background: #ffffff;
    border: 1px solid var(--color-border-light);
    border-radius: 16px;
}

.empty-cart p[b-7as4sross5] {
    font-size: 1.25rem;
    margin-bottom: 24px;
    color: var(--color-text);
    font-family: var(--font-sans);
}

.empty-cart .continue-shopping[b-7as4sross5] {
    display: inline-block;
    background-color: var(--color-primary);
    color: white;
    text-decoration: none;
    padding: 14px 32px;
    border-radius: 28px;
    font-weight: 700;
    font-family: var(--font-sans);
    transition: background-color var(--transition-fast);
}

.empty-cart .continue-shopping:hover[b-7as4sross5] {
    background-color: var(--color-primary-hover);
}

.related-section[b-7as4sross5] {
    border-top: 1px solid var(--color-border-light);
    padding-top: 48px;
    margin-top: 24px;
}

.related-section h2[b-7as4sross5] {
    font-family: var(--font-serif);
    font-size: 1.8rem;
    font-weight: 500;
    margin-bottom: 28px;
    color: var(--color-text);
}

.related-section .products[b-7as4sross5] {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

/* PRODUCT CARD STYLES FOR RELATED SECTION */
.product-card[b-7as4sross5] {
    display: flex;
    flex-direction: column;
    gap: 12px;
    cursor: pointer;
    width: 100%;
    text-decoration: none;
    color: inherit;
}

.product-card .product-image-wrap[b-7as4sross5] {
    background-color: #f5f3ef;
    border-radius: 16px;
    aspect-ratio: 1 / 1;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    transition: background-color var(--transition-fast);
    padding: 12px;
}

.product-card .product-image-wrap img[b-7as4sross5] {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 8px;
    transition: transform var(--transition-smooth);
}

.product-card:hover .product-image-wrap[b-7as4sross5] {
    background-color: #edebe7;
}

.product-card:hover .product-image-wrap img[b-7as4sross5] {
    transform: scale(1.04);
}

.product-card .product-info[b-7as4sross5] {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 0 4px;
}

.product-card .product-info .product-name[b-7as4sross5] {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--color-text);
    line-height: 1.3;
    margin: 0;
    font-family: var(--font-sans);
}

.product-card .product-info .product-price[b-7as4sross5] {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--color-text);
    opacity: 0.75;
    margin: 0;
    font-family: var(--font-sans);
}

@media (min-width: 768px) {
    .cart-main-grid[b-7as4sross5] {
        grid-template-columns: 1.15fr 0.85fr;
        gap: 48px;
        align-items: flex-start;
    }

    .summary-box-wrap[b-7as4sross5] {
        position: sticky;
        top: calc(var(--top-nav-h) + 40px);
        z-index: 10;
    }

    .related-section .products[b-7as4sross5] {
        grid-template-columns: repeat(4, 1fr);
        gap: 24px;
    }
}

@media (min-width: 1024px) {
    .cart-main-grid[b-7as4sross5] {
        gap: 64px;
    }
}
/* /Pages/Checkout.cshtml.rz.scp.css */
.checkout-layout-wrapper[b-fu47q0gwak] {
    background-color: #faf9f6;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    color: var(--color-text);
}

/* Distraction-free Header */
.checkout-header[b-fu47q0gwak] {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 32px 0 20px 0;
    background-color: #faf9f6;
}

.checkout-logo[b-fu47q0gwak] {
    height: 48px;
    object-fit: contain;
}

.main-checkout-container[b-fu47q0gwak] {
    padding-top: 10px;
    padding-bottom: 60px;
    flex: 1;
}

.checkout-page[b-fu47q0gwak] {
    display: flex;
    flex-direction: column;
}

.checkout-form[b-fu47q0gwak] {
    width: 100%;
}

.checkout-main-grid[b-fu47q0gwak] {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
}

.checkout-fields[b-fu47q0gwak] {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.section h2[b-fu47q0gwak] {
    font-family: var(--font-serif);
    font-size: 1.8rem;
    font-weight: 500;
    margin-bottom: 24px;
    color: var(--color-text);
}

.form-row[b-fu47q0gwak] {
    display: flex;
    gap: 16px;
}

.form-row .form-group[b-fu47q0gwak] {
    flex: 1;
}

@media (max-width: 600px) {
    .form-row[b-fu47q0gwak] {
        flex-direction: column;
        gap: 0;
    }
}

.form-group[b-fu47q0gwak] {
    display: flex;
    flex-direction: column;
    margin-bottom: 20px;
}

.form-group label[b-fu47q0gwak] {
    font-size: 0.9rem;
    color: rgba(0, 0, 0, 0.6);
    margin-bottom: 8px;
    font-weight: 600;
    font-family: var(--font-sans);
}

.form-group input[b-fu47q0gwak],
.form-group select[b-fu47q0gwak] {
    padding: 14px 16px;
    border: 1px solid rgba(0, 0, 0, 0.12);
    border-radius: 8px;
    font-size: 0.95rem;
    background-color: white;
    outline: none;
    transition: border-color var(--transition-fast);
    font-family: var(--font-sans);
}

.form-group input:focus[b-fu47q0gwak],
.form-group select:focus[b-fu47q0gwak] {
    border-color: var(--color-primary);
}

.form-group input[b-fu47q0gwak]::placeholder {
    color: rgba(0, 0, 0, 0.35);
}

.select-wrapper[b-fu47q0gwak] {
    position: relative;
    display: flex;
}

.select-wrapper select[b-fu47q0gwak] {
    width: 100%;
    appearance: none;
    cursor: pointer;
    padding-right: 40px;
}

.select-wrapper[b-fu47q0gwak]::after {
    content: "▼";
    font-size: 0.7rem;
    color: rgba(0, 0, 0, 0.4);
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
}

.phone-prefix[b-fu47q0gwak] {
    width: 90px !important;
    border-right: none !important;
    border-top-right-radius: 0 !important;
    border-bottom-right-radius: 0 !important;
    background-color: #f7f5f0 !important;
    cursor: not-allowed;
    text-align: center;
}

.phone-input[b-fu47q0gwak] {
    flex: 1;
    border-top-left-radius: 0 !important;
    border-bottom-left-radius: 0 !important;
}

.summary-section-wrap[b-fu47q0gwak] {
    display: flex;
    flex-direction: column;
}

.summary-section[b-fu47q0gwak] {
    background: #ffffff;
    border: 1px solid var(--color-border-light);
    border-radius: 16px;
    padding: 36px 28px;
}

.cart-items[b-fu47q0gwak] {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 24px;
    border-bottom: 1px solid var(--color-border-light);
    padding-bottom: 24px;
}

.cart-item[b-fu47q0gwak] {
    display: flex;
    align-items: center;
    gap: 16px;
}

.cart-item .item-img[b-fu47q0gwak] {
    width: 64px;
    height: 64px;
    background: #f5f3ef;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    padding: 6px;
}

.cart-item .item-img img[b-fu47q0gwak] {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.cart-item .item-info[b-fu47q0gwak] {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.cart-item .item-info .item-name[b-fu47q0gwak] {
    font-weight: 600;
    color: var(--color-text);
    font-size: 1rem;
    margin-bottom: 4px;
    font-family: var(--font-sans);
}

.cart-item .item-info .item-qty[b-fu47q0gwak] {
    font-size: 0.85rem;
    color: rgba(0, 0, 0, 0.5);
    font-family: var(--font-sans);
}

.cart-item .item-price[b-fu47q0gwak] {
    font-weight: 600;
    font-size: 1rem;
    font-family: var(--font-sans);
}

.totals-row[b-fu47q0gwak] {
    display: flex;
    justify-content: space-between;
    margin-bottom: 16px;
    font-size: 1rem;
    font-family: var(--font-sans);
    color: rgba(0, 0, 0, 0.7);
}

.totals-row.total[b-fu47q0gwak] {
    border-top: 1px solid var(--color-border-light);
    padding-top: 20px;
    margin-top: 20px;
    font-size: 1.6rem;
    font-family: var(--font-serif);
    font-weight: 600;
    color: var(--color-text);
}

.error-msg[b-fu47q0gwak] {
    color: red;
    font-size: 0.9rem;
    margin-bottom: 16px;
    text-align: center;
    font-family: var(--font-sans);
}

.place-order-btn[b-fu47q0gwak] {
    width: 100%;
    background-color: var(--color-primary);
    color: white;
    border: none;
    padding: 16px;
    border-radius: 28px;
    font-size: 1.15rem;
    font-weight: 700;
    cursor: pointer;
    margin-top: 16px;
    transition: background-color var(--transition-fast), transform var(--transition-fast);
    font-family: var(--font-sans);
}

.place-order-btn:hover[b-fu47q0gwak] {
    background-color: var(--color-primary-hover);
}

.place-order-btn:active[b-fu47q0gwak] {
    transform: scale(0.98);
}

.place-order-btn:disabled[b-fu47q0gwak] {
    opacity: 0.5;
    cursor: not-allowed;
}

.redirect-note[b-fu47q0gwak] {
    text-align: center;
    font-size: 0.85rem;
    color: rgba(0, 0, 0, 0.5);
    margin-top: 16px;
    font-family: var(--font-sans);
    line-height: 1.4;
}

/* Distraction-free Footer */
.checkout-footer[b-fu47q0gwak] {
    padding: 40px 0;
    background-color: #faf9f6;
    border-top: 1px solid rgba(0, 0, 0, 0.04);
    width: 100%;
}

.checkout-footer .footer-links[b-fu47q0gwak] {
    display: flex;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
}

.checkout-footer .footer-links a[b-fu47q0gwak] {
    font-size: 0.85rem;
    color: rgba(0, 0, 0, 0.6);
    font-family: var(--font-sans);
    transition: color var(--transition-fast);
}

.checkout-footer .footer-links a:hover[b-fu47q0gwak] {
    color: var(--color-primary);
}

@media (min-width: 768px) {
    .checkout-main-grid[b-fu47q0gwak] {
        grid-template-columns: 1.15fr 0.85fr;
        gap: 48px;
        align-items: flex-start;
    }

    .summary-section-wrap[b-fu47q0gwak] {
        position: sticky;
        top: 40px;
        z-index: 10;
    }
}

@media (min-width: 1024px) {
    .checkout-main-grid[b-fu47q0gwak] {
        gap: 64px;
    }
}
/* /Pages/Index.cshtml.rz.scp.css */
.hero[b-rw3b8rbjxo] {
    height: 480px;
    background-color: #FF7C05;
    background-image: url('/hero.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    margin-top: var(--top-nav-h);
}

.hero .hero-container[b-rw3b8rbjxo] {
    width: 100%;
    display: flex;
    align-items: center;
}

.hero .content[b-rw3b8rbjxo] {
    color: white;
    text-align: center;
    display: flex;
    flex-direction: column;
    row-gap: 20px;
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
}

.hero .content h1[b-rw3b8rbjxo] {
    font-size: 2.2rem;
    font-family: var(--font-serif);
    line-height: 1.2;
    font-weight: 500;
}

.hero .content p[b-rw3b8rbjxo] {
    font-family: var(--font-sans);
    font-size: 1.1rem;
    opacity: 0.9;
}

.hero .content a[b-rw3b8rbjxo] {
    height: 52px;
    border-radius: 26px;
    border: none;
    padding: 14px 28px;
    width: fit-content;
    margin: 0 auto;
    background-color: white;
    text-decoration: none;
    color: var(--color-text);
    font-weight: 700;
    font-family: var(--font-sans);
    box-shadow: var(--shadow-md);
    transition: transform var(--transition-fast), background-color var(--transition-fast);
}

.hero .content a:hover[b-rw3b8rbjxo] {
    background-color: #fcfcfc;
    transform: translateY(-2px);
}

/* BEST SELLERS */
.best-sellers[b-rw3b8rbjxo] {
    padding: 60px 0;
    background-color: #FFFDF8;
}

.best-sellers h2[b-rw3b8rbjxo] {
    font-family: var(--font-serif);
    font-weight: 500;
    font-size: 1.8rem;
    margin-bottom: 32px;
    text-align: center;
}

.best-sellers swiper-slide[b-rw3b8rbjxo] {
    cursor: pointer;
    display: flex;
    flex-direction: column;
    transition: transform var(--transition-smooth);
}

.best-sellers swiper-slide:hover[b-rw3b8rbjxo] {
    transform: translateY(-4px);
}

.best-sellers img[b-rw3b8rbjxo] {
    display: block;
    aspect-ratio: 1/1;
    width: 100%;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
}

.best-sellers .name[b-rw3b8rbjxo] {
    font-weight: 600;
    font-size: 1.15rem;
    margin-bottom: 6px;
    margin-top: 16px;
    color: var(--color-text);
    font-family: var(--font-sans);
}

.best-sellers .price[b-rw3b8rbjxo] {
    font-family: var(--font-sans);
    font-size: 1rem;
    opacity: 0.8;
    margin-bottom: 32px;
}

.best-sellers .loading-state[b-rw3b8rbjxo] {
    text-align: center;
    padding: 40px 0;
    font-family: var(--font-sans);
    opacity: 0.7;
}

/* EXPLORE PRODUCTS */
.explore-products[b-rw3b8rbjxo] {
    padding: 60px 0;
    background-color: #FFFDF8;
}

.explore-products h2[b-rw3b8rbjxo] {
    font-family: var(--font-serif);
    font-weight: 500;
    font-size: 1.8rem;
    margin-bottom: 32px;
    text-align: center;
}

.explore-products .explore-grid[b-rw3b8rbjxo] {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.explore-products .card[b-rw3b8rbjxo] {
    height: 260px;
    display: flex;
    padding: 32px;
    justify-content: space-between;
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition-smooth), box-shadow var(--transition-smooth);
    text-decoration: none;
    color: inherit;
}

.explore-products .card p[b-rw3b8rbjxo] {
    font-size: 1.4rem;
    font-weight: 600;
    font-family: var(--font-serif);
}

.explore-products .card button[b-rw3b8rbjxo] {
    height: 40px;
    padding: 0px 20px;
    border-radius: 20px;
    border: none;
    background-color: white;
    font-family: var(--font-sans);
    font-weight: 600;
    cursor: pointer;
    box-shadow: var(--shadow-sm);
    transition: background-color var(--transition-fast);
}

.explore-products .card button:hover[b-rw3b8rbjxo] {
    background-color: #f5f5f5;
}

.explore-products .card:hover[b-rw3b8rbjxo] {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.explore-products .card.teas[b-rw3b8rbjxo] {
    background-color: #fff0e0;
    background-image: url('/tea-explore-bg.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: bottom right;
}

.explore-products .card.spices[b-rw3b8rbjxo] {
    background-color: #e9f3e6;
    background-image: url('/spices-explore-bg.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: bottom right;
}

/* TESTIMONIALS */
.testimonials[b-rw3b8rbjxo] {
    padding: 60px 0;
    background-color: #ffffff;
}

.testimonials h2[b-rw3b8rbjxo] {
    font-family: var(--font-serif);
    font-weight: 500;
    font-size: 1.8rem;
    text-align: center;
    margin-bottom: 32px;
}

.testimonials .testimonials-grid[b-rw3b8rbjxo] {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.testimonials .card[b-rw3b8rbjxo] {
    padding: 32px;
    background-color: #FFFDF8;
    border: 1px solid var(--color-border-light);
    border-radius: 16px;
    height: 240px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition-smooth);
}

.testimonials .card p.feedback[b-rw3b8rbjxo] {
    font-family: var(--font-sans);
    font-size: 1rem;
    line-height: 1.6;
    opacity: 0.85;
}

.testimonials .card .name[b-rw3b8rbjxo] {
    font-weight: 600;
    font-size: 1.05rem;
    margin-bottom: 2px;
}

.testimonials .card .role[b-rw3b8rbjxo] {
    font-size: 0.85rem;
    opacity: 0.6;
    font-family: var(--font-sans);
}

.testimonials .card:hover[b-rw3b8rbjxo] {
    transform: translateY(-4px);
}

/* OUR STORY */
.our-story[b-rw3b8rbjxo] {
    background-color: #1A9741;
    padding: 80px 0;
    color: white;
}

.our-story .story-container[b-rw3b8rbjxo] {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.our-story .story-content[b-rw3b8rbjxo] {
    flex: 1.2;
}

.our-story .story-content h2[b-rw3b8rbjxo] {
    margin-bottom: 24px;
    font-family: var(--font-serif);
    font-weight: 500;
    font-size: 2.2rem;
    line-height: 1.2;
}

.our-story .story-content p[b-rw3b8rbjxo] {
    font-family: var(--font-sans);
    font-size: 1.05rem;
    line-height: 1.7;
    opacity: 0.9;
}

.our-story .story-image[b-rw3b8rbjxo] {
    flex: 0.8;
    display: flex;
    align-items: center;
}

.our-story .story-image img[b-rw3b8rbjxo] {
    width: 100%;
    height: 100%;
    max-height: 380px;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
}

/* Responsive Queries */
@media (min-width: 768px) {
    .hero[b-rw3b8rbjxo] {
        background-size: cover;
        background-position: right center;
    }

    .hero .content[b-rw3b8rbjxo] {
        text-align: left;
        margin: 0;
    }

    .hero .content h1[b-rw3b8rbjxo] {
        font-size: 3rem;
    }

    .hero .content a[b-rw3b8rbjxo] {
        margin: 0;
    }

    .explore-products .explore-grid[b-rw3b8rbjxo] {
        grid-template-columns: 1fr 1fr;
    }

    .testimonials .testimonials-grid[b-rw3b8rbjxo] {
        grid-template-columns: 1fr 1fr;
    }

    .our-story .story-container[b-rw3b8rbjxo] {
        flex-direction: row;
        align-items: center;
        gap: 60px;
    }
}

@media (min-width: 1024px) {
    .testimonials .testimonials-grid[b-rw3b8rbjxo] {
        grid-template-columns: repeat(3, 1fr);
        gap: 24px;
    }
}
/* /Pages/Order.cshtml.rz.scp.css */
.main-order-container[b-h2pzogz3yf] {
    padding-top: 40px;
    padding-bottom: 60px;
}

.order-confirmation-page[b-h2pzogz3yf] {
    display: flex;
    flex-direction: column;
    color: var(--color-text);
    margin-top: var(--top-nav-h);
    min-height: 80vh;
}

.content-wrapper[b-h2pzogz3yf] {
    max-width: 900px;
    width: 100%;
    margin: 0 auto;
    padding: 0 16px;
}

/* Success Banner Card */
.success-banner-card[b-h2pzogz3yf] {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    border-radius: 16px;
    padding: 48px 32px;
    text-align: center;
    box-shadow: var(--shadow-md);
    margin-bottom: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.success-circle-icon[b-h2pzogz3yf] {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    box-shadow: 0 0 0 8px rgba(255, 255, 255, 0.1);
    animation: success-pulse 2s infinite;
}

@@keyframes success-pulse {
    0%[b-h2pzogz3yf] {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.3);
    }
    70%[b-h2pzogz3yf] {
        box-shadow: 0 0 0 12px rgba(255, 255, 255, 0);
    }
    100%[b-h2pzogz3yf] {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
    }
}

.success-banner-card h1[b-h2pzogz3yf] {
    font-family: var(--font-serif);
    font-size: 2.6rem;
    font-weight: 500;
    margin-bottom: 12px;
}

.congrats-text[b-h2pzogz3yf] {
    font-size: 1.1rem;
    max-width: 600px;
    line-height: 1.6;
    margin-bottom: 28px;
    font-family: var(--font-sans);
    opacity: 0.95;
}

.tracking-prefill-promo[b-h2pzogz3yf] {
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 12px;
    padding: 20px 24px;
    max-width: 480px;
    width: 100%;
}

.tracking-prefill-promo p[b-h2pzogz3yf] {
    font-size: 0.88rem;
    margin-bottom: 12px;
    font-family: var(--font-sans);
}

.tracking-code-pill[b-h2pzogz3yf] {
    display: inline-block;
    background: white;
    color: #065f46;
    font-family: monospace;
    font-size: 1.2rem;
    font-weight: bold;
    padding: 8px 16px;
    border-radius: 6px;
    letter-spacing: 0.5px;
    margin-bottom: 16px;
    box-shadow: var(--shadow-sm);
}

.btn-track-directly[b-h2pzogz3yf] {
    display: block;
    background: #ff7c05;
    color: white;
    font-family: var(--font-sans);
    font-size: 0.95rem;
    font-weight: 700;
    padding: 12px 24px;
    border-radius: 20px;
    text-decoration: none;
    transition: background-color var(--transition-fast), transform var(--transition-fast);
    box-shadow: var(--shadow-sm);
}

.btn-track-directly:hover[b-h2pzogz3yf] {
    background: #e06800;
    box-shadow: var(--shadow-md);
}

.btn-track-directly:active[b-h2pzogz3yf] {
    transform: scale(0.98);
}

/* Order Details Grid */
.order-details-grid[b-h2pzogz3yf] {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

.order-card-panel[b-h2pzogz3yf] {
    background: white;
    border: 1px solid var(--color-border-light);
    border-radius: 16px;
    padding: 24px;
    box-shadow: var(--shadow-sm);
    margin-bottom: 24px;
}

.order-card-panel h3[b-h2pzogz3yf] {
    font-family: var(--font-serif);
    font-size: 1.3rem;
    font-weight: 500;
    border-bottom: 1px solid var(--color-border-light);
    padding-bottom: 12px;
    margin-bottom: 20px;
}

/* Items List */
.items-list[b-h2pzogz3yf] {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.order-item-row[b-h2pzogz3yf] {
    display: flex;
    align-items: center;
    gap: 16px;
    padding-bottom: 16px;
    border-bottom: 1px solid #f3f4f6;
}

.order-item-row:last-child[b-h2pzogz3yf] {
    border-bottom: none;
    padding-bottom: 0;
}

.item-img-container[b-h2pzogz3yf] {
    width: 56px;
    height: 56px;
    background: var(--color-surface);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6px;
    flex-shrink: 0;
}

.item-img-container img[b-h2pzogz3yf] {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.item-text-details[b-h2pzogz3yf] {
    display: flex;
    flex-direction: column;
    flex: 1;
    font-family: var(--font-sans);
}

.item-name[b-h2pzogz3yf] {
    font-weight: 500;
    color: var(--color-text);
    font-size: 0.95rem;
    margin-bottom: 4px;
}

.item-qty-price[b-h2pzogz3yf] {
    font-size: 0.8rem;
    color: rgba(0, 0, 0, 0.5);
}

.item-total-price[b-h2pzogz3yf] {
    font-weight: 600;
    font-size: 0.95rem;
    font-family: var(--font-sans);
}

/* Delivery summary details */
.delivery-summary-details[b-h2pzogz3yf] {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.detail-row[b-h2pzogz3yf] {
    display: flex;
    justify-content: space-between;
    font-size: 0.92rem;
    font-family: var(--font-sans);
    line-height: 1.5;
}

.detail-row .lbl[b-h2pzogz3yf] {
    color: rgba(0, 0, 0, 0.5);
    font-weight: 500;
    flex-shrink: 0;
    width: 120px;
}

.detail-row .val[b-h2pzogz3yf] {
    color: var(--color-text);
    font-weight: 600;
    text-align: right;
}

/* Price Breakdown Summary Totals */
.summary-totals-panel[b-h2pzogz3yf] {
    background: #fafaf9;
}

.price-totals-rows[b-h2pzogz3yf] {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.tot-row[b-h2pzogz3yf] {
    display: flex;
    justify-content: space-between;
    font-size: 0.95rem;
    font-family: var(--font-sans);
}

.tot-row.main-grand-total[b-h2pzogz3yf] {
    border-top: 1px solid var(--color-border-light);
    padding-top: 16px;
    margin-top: 8px;
    font-size: 1.3rem;
    font-family: var(--font-serif);
    font-weight: 600;
}

.tot-row.main-grand-total span:last-child[b-h2pzogz3yf] {
    color: var(--color-primary);
}

.secure-payment-badge[b-h2pzogz3yf] {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 24px;
    padding: 12px;
    background: white;
    border: 1px solid #d1fae5;
    border-radius: 8px;
    color: #065f46;
    font-size: 0.82rem;
    font-weight: 600;
    font-family: var(--font-sans);
}

.action-buttons[b-h2pzogz3yf] {
    margin-top: 24px;
}

.btn-continue-shopping[b-h2pzogz3yf] {
    display: block;
    text-align: center;
    background: transparent;
    color: var(--color-primary);
    border: 2px solid var(--color-primary);
    font-family: var(--font-sans);
    font-size: 0.95rem;
    font-weight: 700;
    padding: 12px 24px;
    border-radius: 24px;
    text-decoration: none;
    transition: all var(--transition-fast);
}

.btn-continue-shopping:hover[b-h2pzogz3yf] {
    background: var(--color-primary);
    color: white;
}

@media (min-width: 768px) {
    .order-details-grid[b-h2pzogz3yf] {
        grid-template-columns: 1.2fr 0.8fr;
        gap: 32px;
    }
}
/* /Pages/Product.cshtml.rz.scp.css */
.main-product-container[b-xl9wozivze] {
    padding-top: 40px;
    padding-bottom: 60px;
}

.product-page[b-xl9wozivze] {
    display: flex;
    flex-direction: column;
    gap: 32px;
    margin-top: var(--top-nav-h);
}

.breadcrumb[b-xl9wozivze] {
    font-size: 0.95rem;
    font-family: var(--font-sans);
    color: var(--color-text);
    opacity: 0.7;
}

.breadcrumb a[b-xl9wozivze] {
    color: inherit;
    text-decoration: none;
    transition: color var(--transition-fast);
}

.breadcrumb a:hover[b-xl9wozivze] {
    color: var(--color-primary);
    text-decoration: underline;
}

.breadcrumb span[b-xl9wozivze] {
    color: var(--color-text);
    font-weight: 500;
}

.product-main-grid[b-xl9wozivze] {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
}

.product-images[b-xl9wozivze] {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.product-images .main-image-container[b-xl9wozivze] {
    background-color: var(--color-surface);
    border-radius: 16px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 360px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.product-images .main-image-container .main-image[b-xl9wozivze] {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
    transition: transform var(--transition-smooth);
}

.product-images .thumbnail-list[b-xl9wozivze] {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    padding-bottom: 4px;
}

.product-images .thumbnail-list .thumbnail[b-xl9wozivze] {
    width: 80px;
    height: 80px;
    background-color: var(--color-surface);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border: 2px solid transparent;
    padding: 6px;
    flex-shrink: 0;
    transition: all var(--transition-fast);
}

.product-images .thumbnail-list .thumbnail img[b-xl9wozivze] {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.product-images .thumbnail-list .thumbnail.active[b-xl9wozivze],
.product-images .thumbnail-list .thumbnail:hover[b-xl9wozivze] {
    border-color: var(--color-primary);
    background-color: white;
    box-shadow: var(--shadow-sm);
}

.product-details[b-xl9wozivze] {
    display: flex;
    flex-direction: column;
    gap: 16px;
    justify-content: center;
}

.product-details .stock-status[b-xl9wozivze] {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--color-success);
    font-family: var(--font-sans);
}

.product-details .stock-status .status-dot[b-xl9wozivze] {
    width: 10px;
    height: 10px;
    background-color: var(--color-success);
    border-radius: 50%;
    display: inline-block;
}

.product-details .product-title[b-xl9wozivze] {
    font-size: 2.2rem;
    font-weight: 500;
    line-height: 1.2;
    margin: 0;
    font-family: var(--font-serif);
    color: var(--color-text);
}

.product-details .product-price[b-xl9wozivze] {
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--color-primary);
    font-family: var(--font-sans);
}

.product-details .product-size[b-xl9wozivze] {
    font-size: 1rem;
    color: var(--color-text);
    opacity: 0.8;
    font-family: var(--font-sans);
}

.product-details .quantity-selector[b-xl9wozivze] {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 8px;
}

.product-details .quantity-selector span[b-xl9wozivze] {
    font-size: 0.95rem;
    font-weight: 600;
    opacity: 0.8;
    font-family: var(--font-sans);
}

.product-details .quantity-selector .selector-controls[b-xl9wozivze] {
    display: inline-flex;
    align-items: center;
    border: 1px solid var(--color-border);
    border-radius: 24px;
    padding: 4px;
    width: 130px;
    justify-content: space-between;
    background-color: white;
    box-shadow: var(--shadow-sm);
}

.product-details .quantity-selector .selector-controls button[b-xl9wozivze] {
    background: none;
    border: none;
    font-size: 1.3rem;
    cursor: pointer;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--color-text);
    transition: background-color var(--transition-fast);
}

.product-details .quantity-selector .selector-controls button:hover[b-xl9wozivze] {
    background-color: var(--color-surface);
}

.product-details .quantity-selector .selector-controls .qty[b-xl9wozivze] {
    font-weight: 600;
    font-size: 1.05rem;
    font-family: var(--font-sans);
}

.product-details .add-to-cart-btn[b-xl9wozivze] {
    margin-top: 16px;
    background-color: var(--color-primary);
    color: white;
    border: none;
    border-radius: 24px;
    padding: 16px 24px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    box-shadow: var(--shadow-sm);
    transition: background-color var(--transition-fast), transform var(--transition-fast), box-shadow var(--transition-fast);
    width: 100%;
    font-family: var(--font-sans);
}

.product-details .add-to-cart-btn:hover[b-xl9wozivze] {
    background-color: var(--color-primary-hover);
    box-shadow: var(--shadow-md);
}

.product-details .add-to-cart-btn:active[b-xl9wozivze] {
    transform: scale(0.98);
}

.product-info-sections[b-xl9wozivze] {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    border-top: 1px solid var(--color-border-light);
    padding-top: 32px;
}

.info-section[b-xl9wozivze] {
    background: var(--color-bg-warm);
    border: 1px solid var(--color-border-light);
    border-radius: 16px;
    padding: 24px;
    box-shadow: var(--shadow-sm);
}

.info-section h2[b-xl9wozivze] {
    font-size: 1.3rem;
    font-weight: 500;
    margin-bottom: 12px;
    font-family: var(--font-serif);
    color: var(--color-text);
}

.info-section p[b-xl9wozivze] {
    font-size: 1.05rem;
    line-height: 1.6;
    color: var(--color-text);
    opacity: 0.85;
    font-family: var(--font-sans);
}

.related-section[b-xl9wozivze] {
    border-top: 1px solid var(--color-border-light);
    padding-top: 32px;
    margin-top: 16px;
}

.related-section h2[b-xl9wozivze] {
    font-size: 1.6rem;
    font-weight: 500;
    margin-bottom: 24px;
    font-family: var(--font-serif);
    color: var(--color-text);
    text-align: center;
}

.related-section .products[b-xl9wozivze] {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

/* PRODUCT CARD STYLES FOR RELATED SECTION */
.product-card[b-xl9wozivze] {
    display: flex;
    flex-direction: column;
    gap: 14px;
    cursor: pointer;
    width: 100%;
    text-decoration: none;
    color: inherit;
}

.product-card .product-image-wrap[b-xl9wozivze] {
    background-color: var(--color-surface, #f1f1f1);
    border-radius: 16px;
    aspect-ratio: 1 / 1;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    transition: background-color var(--transition-fast, 0.2s ease);
}

.product-card .product-image-wrap img[b-xl9wozivze] {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 8px;
    transition: transform var(--transition-smooth, 0.3s cubic-bezier(0.4, 0, 0.2, 1));
}

.product-card:hover .product-image-wrap[b-xl9wozivze] {
    background-color: var(--color-surface-hover, #e6e6e6);
}

.product-card:hover .product-image-wrap img[b-xl9wozivze] {
    transform: scale(1.04);
}

.product-card .product-info[b-xl9wozivze] {
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 0 4px;
}

.product-card .product-info .product-name[b-xl9wozivze] {
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--color-text);
    line-height: 1.3;
    margin: 0;
    font-family: var(--font-sans);
}

.product-card .product-info .product-price[b-xl9wozivze] {
    font-size: 1rem;
    font-weight: 500;
    color: var(--color-text);
    opacity: 0.75;
    margin: 0;
    font-family: var(--font-sans);
}

/* Responsiveness */
@media (min-width: 768px) {
    .product-main-grid[b-xl9wozivze] {
        grid-template-columns: 1.1fr 0.9fr;
        gap: 40px;
        align-items: center;
    }

    .product-images .main-image-container[b-xl9wozivze] {
        height: 420px;
    }

    .product-info-sections[b-xl9wozivze] {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }

    .related-section h2[b-xl9wozivze] {
        text-align: left;
    }

    .related-section .products[b-xl9wozivze] {
        grid-template-columns: repeat(4, 1fr);
        gap: 24px;
    }
}

@media (min-width: 1024px) {
    .product-main-grid[b-xl9wozivze] {
        gap: 60px;
    }

    .product-images .main-image-container[b-xl9wozivze] {
        height: 480px;
    }
}
/* /Pages/Shared/_Layout.cshtml.rz.scp.css */
/* /Pages/Shared/_MainLayout.cshtml.rz.scp.css */
/* SIDEBAR START */
.side-bar .overlay[b-iopn85wx91] {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100dvh;
    background-color: rgba(0, 0, 0, 0.4);
    z-index: 999;
    opacity: 0;
    pointer-events: none;
    transition: opacity 100ms ease-in-out;
}

    .side-bar .overlay.show[b-iopn85wx91] {
        opacity: 1;
        pointer-events: auto;
    }

.side-bar .wrapper[b-iopn85wx91] {
    position: fixed;
    height: 100dvh;
    width: calc(100% - 62px);
    background-color: #FFFDF8;
    top: 0px;
    left: 0px;
    padding: 12px;
    z-index: 1000;
    transition: all 100ms ease-in-out;
    transform: translateX(-100%);
}

    .side-bar .wrapper.show[b-iopn85wx91] {
        transform: translateX(0%);
    }

.side-bar .back[b-iopn85wx91] {
    height: 32px;
    width: 32px;
    background-color: transparent;
    border: none;
}

.side-bar .links[b-iopn85wx91] {
    display: flex;
    flex-direction: column;
    row-gap: 20px;
    margin-top: 24px;
}

    .side-bar .links a[b-iopn85wx91] {
        display: block;
        text-decoration: none;
        color: black;
    }

.side-bar hr[b-iopn85wx91] {
    margin: 64px 0px;
}

.side-bar .btn[b-iopn85wx91] {
    height: 32px;
    width: 32px;
    background-color: transparent;
    border: none;
}

.side-bar .info[b-iopn85wx91] {
    margin-bottom: 24px;
}

    .side-bar .info p[b-iopn85wx91] {
        font-size: 0.75rem;
    }

.side-bar ul[b-iopn85wx91] {
    display: flex;
    column-gap: 8px;
}

    .side-bar ul li[b-iopn85wx91] {
        height: 40px;
        width: 40px;
        border-radius: 20px;
        border: 1px solid #C4C4C4;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
    }

@media (min-width: 1025px) {
    .side-bar .overlay[b-iopn85wx91],
    .side-bar .wrapper[b-iopn85wx91] {
        display: none !important;
    }
}
/* SIDEBAR END */

/* TOPBAR START */
.top-bar[b-iopn85wx91] {
    position: fixed;
    height: var(--top-nav-h);
    width: 100%;
    background-color: rgba(255, 253, 248, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    top: 0px;
    left: 0px;
    display: flex;
    align-items: center;
    z-index: 1000;
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
    box-shadow: var(--shadow-sm);
}

    .top-bar .nav-container[b-iopn85wx91] {
        display: flex;
        justify-content: space-between;
        align-items: center;
        height: 100%;
        width: 100%;
    }

    .top-bar .brand[b-iopn85wx91],
    .top-bar .actions[b-iopn85wx91] {
        display: flex;
        column-gap: 16px;
        align-items: center;
    }

    .top-bar .logo[b-iopn85wx91] {
        height: 38px;
    }

    .top-bar .btn[b-iopn85wx91] {
        height: 36px;
        width: 36px;
        background-color: transparent;
        border: none;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        transition: background-color var(--transition-fast);
    }

        .top-bar .btn:hover[b-iopn85wx91] {
            background-color: rgba(0, 0, 0, 0.03);
        }

    .top-bar .desktop-menu[b-iopn85wx91] {
        display: none;
        column-gap: 32px;
        align-items: center;
    }

        .top-bar .desktop-menu a[b-iopn85wx91] {
            font-family: var(--font-sans);
            text-decoration: none;
            color: var(--color-text);
            font-size: 1rem;
            font-weight: 500;
            opacity: 0.8;
            padding: 8px 0;
            position: relative;
            transition: color var(--transition-fast), opacity var(--transition-fast);
        }

            .top-bar .desktop-menu a[b-iopn85wx91]::after {
                content: "";
                position: absolute;
                bottom: 0;
                left: 0;
                width: 100%;
                height: 2px;
                background-color: var(--color-primary);
                transform: scaleX(0);
                transform-origin: right;
                transition: transform var(--transition-fast);
            }

            .top-bar .desktop-menu a:hover[b-iopn85wx91],
            .top-bar .desktop-menu a.active[b-iopn85wx91] {
                color: var(--color-primary);
                opacity: 1;
            }

                .top-bar .desktop-menu a:hover[b-iopn85wx91]::after, .top-bar .desktop-menu a.active[b-iopn85wx91]::after {
                    transform: scaleX(1);
                    transform-origin: left;
                }

    .top-bar .badge[b-iopn85wx91] {
        position: absolute;
        top: -4px;
        right: -4px;
        background-color: var(--color-primary);
        color: white;
        font-size: 10px;
        font-weight: 600;
        width: 17px;
        height: 17px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-family: var(--font-sans);
    }

@media (max-width: 1024px) {
    .top-bar .logo[b-iopn85wx91] {
        height: 34px;
    }
}

@media (min-width: 1025px) {
    .top-bar .menu.btn[b-iopn85wx91] {
        display: none;
    }

    .top-bar .desktop-menu[b-iopn85wx91] {
        display: flex;
    }
}
/* TOPBAR END */

/* FOOTER START */
.footer[b-iopn85wx91] {
    background-color: var(--color-bg-warm, #FFFDF8);
    border-top: 1px solid var(--color-border, rgba(0, 0, 0, 0.06));
}

    .footer .footer-container[b-iopn85wx91] {
        padding: 60px 20px 45px;
    }

    .footer .footer-grid[b-iopn85wx91] {
        display: grid;
        grid-template-columns: 1fr;
        gap: 40px;
    }

@media (min-width: 600px) {
    .footer .footer-grid[b-iopn85wx91] {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .footer .footer-grid[b-iopn85wx91] {
        grid-template-columns: 1.3fr 0.8fr 0.8fr 1.1fr;
    }
}

.footer .footer-col[b-iopn85wx91] {
    display: flex;
    flex-direction: column;
}

.footer .col-title[b-iopn85wx91] {
    font-family: var(--font-sans, sans-serif);
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--color-text, #1a1a1a);
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.footer .col-links[b-iopn85wx91] {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

    .footer .col-links li a[b-iopn85wx91] {
        font-family: var(--font-sans, sans-serif);
        font-size: 0.95rem;
        color: rgba(26, 26, 26, 0.65);
        text-decoration: none;
        transition: all var(--transition-fast, 0.2s);
        display: inline-block;
    }

        .footer .col-links li a:hover[b-iopn85wx91] {
            color: var(--color-primary, #ff7c05);
            transform: translateX(3px);
        }

.footer .brand-col .logo-link[b-iopn85wx91] {
    display: inline-block;
    margin-bottom: 16px;
}

    .footer .brand-col .logo-link svg.logo[b-iopn85wx91] {
        height: 48px;
        width: auto;
        max-width: 100%;
    }

.footer .brand-col .brand-desc[b-iopn85wx91] {
    font-family: var(--font-sans, sans-serif);
    font-size: 0.95rem;
    color: rgba(26, 26, 26, 0.65);
    line-height: 1.6;
    margin-bottom: 24px;
}

.footer .brand-col .copyright-text[b-iopn85wx91] {
    font-family: var(--font-sans, sans-serif);
    font-size: 0.85rem;
    color: rgba(26, 26, 26, 0.4);
    margin-top: auto;
}

.footer .connect-col .connect-desc[b-iopn85wx91] {
    font-family: var(--font-sans, sans-serif);
    font-size: 0.95rem;
    color: rgba(26, 26, 26, 0.65);
    line-height: 1.5;
    margin-bottom: 16px;
}

.footer .connect-col .newsletter-form[b-iopn85wx91] {
    display: flex;
    gap: 8px;
    margin-bottom: 24px;
}

    .footer .connect-col .newsletter-form input[b-iopn85wx91] {
        flex: 1;
        padding: 10px 14px;
        border: 1px solid rgba(0, 0, 0, 0.1);
        border-radius: 8px;
        background: #ffffff;
        font-family: var(--font-sans, sans-serif);
        font-size: 0.9rem;
        color: var(--color-text, #1a1a1a);
        transition: border-color var(--transition-fast, 0.2s);
    }

        .footer .connect-col .newsletter-form input:focus[b-iopn85wx91] {
            outline: none;
            border-color: var(--color-primary, #ff7c05);
        }

    .footer .connect-col .newsletter-form button[b-iopn85wx91] {
        padding: 10px 18px;
        background: var(--color-primary, #ff7c05);
        color: #ffffff;
        border: none;
        border-radius: 8px;
        font-family: var(--font-sans, sans-serif);
        font-weight: 600;
        font-size: 0.9rem;
        cursor: pointer;
        transition: all var(--transition-fast, 0.2s);
    }

        .footer .connect-col .newsletter-form button:hover[b-iopn85wx91] {
            background: var(--color-primary-hover, #e56d00);
        }

.footer .connect-col .social-links .social-title[b-iopn85wx91] {
    font-family: var(--font-sans, sans-serif);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--color-text, #1a1a1a);
    margin-bottom: 12px;
    letter-spacing: 0.5px;
}

.footer .connect-col .social-links .social-list[b-iopn85wx91] {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 12px;
}

    .footer .connect-col .social-links .social-list li a[b-iopn85wx91] {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 36px;
        height: 36px;
        border: 1px solid rgba(0, 0, 0, 0.08);
        border-radius: 50%;
        color: rgba(26, 26, 26, 0.6);
        background: #ffffff;
        transition: all var(--transition-fast, 0.2s);
    }

        .footer .connect-col .social-links .social-list li a:hover[b-iopn85wx91] {
            color: #ffffff;
            background: var(--color-primary, #ff7c05);
            border-color: var(--color-primary, #ff7c05);
            transform: translateY(-2px);
        }
/* FOOTER END */

/* /Pages/Shop.cshtml.rz.scp.css */
.banner[b-j6bey02cmm] {
    margin-top: var(--top-nav-h);
    position: relative;
    height: 120px;
    overflow: hidden;
}

.banner img[b-j6bey02cmm] {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.banner .banner-overlay[b-j6bey02cmm] {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(26, 26, 26, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
}

.banner h1[b-j6bey02cmm] {
    font-family: var(--font-serif);
    font-size: 2rem;
    font-weight: 500;
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.shop-container[b-j6bey02cmm] {
    padding-top: 40px;
    padding-bottom: 60px;
}

.filters[b-j6bey02cmm] {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    margin-bottom: 40px;
}

.filters a[b-j6bey02cmm] {
    background-color: transparent;
    border: 1px solid var(--color-border);
    font-family: var(--font-sans);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--color-text);
    cursor: pointer;
    padding: 10px 20px;
    border-radius: 20px;
    transition: all var(--transition-fast);
    text-decoration: none;
}

.filters a:hover[b-j6bey02cmm] {
    border-color: var(--color-primary);
    color: var(--color-primary);
}

.filters a.active[b-j6bey02cmm] {
    background-color: var(--color-primary);
    border-color: var(--color-primary);
    color: white;
    box-shadow: var(--shadow-sm);
}

.products-grid[b-j6bey02cmm] {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.products-grid .loading-state[b-j6bey02cmm] {
    grid-column: 1 / -1;
    padding: 60px 0;
    text-align: center;
    font-size: 1.15rem;
    color: var(--color-text);
    opacity: 0.6;
}

/* PRODUCT CARD STYLES */
.product-card[b-j6bey02cmm] {
    display: flex;
    flex-direction: column;
    gap: 14px;
    cursor: pointer;
    width: 100%;
    text-decoration: none;
    color: inherit;
}

.product-card .product-image-wrap[b-j6bey02cmm] {
    background-color: var(--color-surface, #f1f1f1);
    border-radius: 16px;
    aspect-ratio: 1 / 1;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    transition: background-color var(--transition-fast, 0.2s ease);
}

.product-card .product-image-wrap img[b-j6bey02cmm] {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 8px;
    transition: transform var(--transition-smooth, 0.3s cubic-bezier(0.4, 0, 0.2, 1));
}

.product-card:hover .product-image-wrap[b-j6bey02cmm] {
    background-color: var(--color-surface-hover, #e6e6e6);
}

.product-card:hover .product-image-wrap img[b-j6bey02cmm] {
    transform: scale(1.04);
}

.product-card .product-info[b-j6bey02cmm] {
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 0 4px;
}

.product-card .product-info .product-name[b-j6bey02cmm] {
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--color-text);
    line-height: 1.3;
    margin: 0;
    font-family: var(--font-sans);
}

.product-card .product-info .product-price[b-j6bey02cmm] {
    font-size: 1rem;
    font-weight: 500;
    color: var(--color-text);
    opacity: 0.75;
    margin: 0;
    font-family: var(--font-sans);
}

/* Responsiveness */
@media (min-width: 640px) {
    .banner[b-j6bey02cmm] {
        height: 160px;
    }

    .banner h1[b-j6bey02cmm] {
        font-size: 2.5rem;
    }

    .products-grid[b-j6bey02cmm] {
        grid-template-columns: repeat(3, 1fr);
        gap: 24px;
    }
}

@media (min-width: 1024px) {
    .products-grid[b-j6bey02cmm] {
        grid-template-columns: repeat(4, 1fr);
        gap: 30px;
    }
}
/* /Pages/TrackOrder.cshtml.rz.scp.css */
.main-track-container[b-otyk8dvnt2] {
    padding-top: 40px;
    padding-bottom: 60px;
}

.track-order-page[b-otyk8dvnt2] {
    display: flex;
    flex-direction: column;
    color: var(--color-text);
    margin-top: var(--top-nav-h);
    min-height: 80vh;
}

.content-wrapper[b-otyk8dvnt2] {
    max-width: 900px;
    width: 100%;
    margin: 0 auto;
    padding: 0 16px;
}

/* Tracking Card Search Box */
.search-box-card[b-otyk8dvnt2] {
    background: white;
    border: 1px solid var(--color-border-light);
    border-radius: 16px;
    padding: 40px 32px;
    box-shadow: var(--shadow-md);
    max-width: 540px;
    margin: 40px auto;
    text-align: center;
}

.search-box-card h1[b-otyk8dvnt2] {
    font-family: var(--font-serif);
    font-size: 2.2rem;
    font-weight: 500;
    margin-bottom: 12px;
}

.search-box-card .subtitle[b-otyk8dvnt2] {
    font-size: 0.95rem;
    color: rgba(0, 0, 0, 0.6);
    line-height: 1.6;
    margin-bottom: 32px;
    font-family: var(--font-sans);
}

.track-form[b-otyk8dvnt2] {
    display: flex;
    flex-direction: column;
    gap: 20px;
    text-align: left;
}

.form-group[b-otyk8dvnt2] {
    display: flex;
    flex-direction: column;
}

.form-group label[b-otyk8dvnt2] {
    font-size: 0.85rem;
    color: rgba(0, 0, 0, 0.6);
    margin-bottom: 8px;
    font-weight: 600;
    font-family: var(--font-sans);
}

.form-group input[b-otyk8dvnt2] {
    padding: 14px 16px;
    border: 1px solid var(--color-border);
    border-radius: 8px;
    font-size: 0.95rem;
    background-color: white;
    outline: none;
    transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
    font-family: var(--font-sans);
}

.form-group input:focus[b-otyk8dvnt2] {
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(255, 124, 5, 0.15);
}

.submit-btn[b-otyk8dvnt2] {
    background-color: var(--color-primary);
    color: white;
    border: none;
    padding: 16px;
    border-radius: 24px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    margin-top: 12px;
    transition: background-color var(--transition-fast), transform var(--transition-fast), box-shadow var(--transition-fast);
    font-family: var(--font-sans);
    box-shadow: var(--shadow-sm);
}

.submit-btn:hover[b-otyk8dvnt2] {
    background-color: var(--color-primary-hover);
    box-shadow: var(--shadow-md);
}

.submit-btn:active[b-otyk8dvnt2] {
    transform: scale(0.98);
}

/* Results Back Navigation */
.navigation-row[b-otyk8dvnt2] {
    margin-bottom: 24px;
}

.back-link[b-otyk8dvnt2] {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--color-primary);
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    font-family: var(--font-sans);
    transition: color var(--transition-fast);
}

.back-link:hover[b-otyk8dvnt2] {
    color: var(--color-primary-hover);
}

/* Status Box Failed */
.status-box.failed[b-otyk8dvnt2] {
    background: #fdf2f2;
    border: 1px solid #f8b4b4;
    border-radius: 12px;
    padding: 32px;
    text-align: center;
    max-width: 500px;
    margin: 40px auto;
    box-shadow: var(--shadow-sm);
}

.status-box.failed h2[b-otyk8dvnt2] {
    color: #9b1c1c;
    font-family: var(--font-serif);
    font-size: 1.6rem;
    margin-bottom: 8px;
}

.status-box.failed p[b-otyk8dvnt2] {
    color: #7f1d1d;
    font-size: 0.95rem;
    line-height: 1.5;
    font-family: var(--font-sans);
    margin-bottom: 20px;
}

.btn-retry[b-otyk8dvnt2] {
    display: inline-block;
    background-color: #9b1c1c;
    color: white;
    padding: 10px 24px;
    border-radius: 20px;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    font-family: var(--font-sans);
    transition: background-color var(--transition-fast);
}

.btn-retry:hover[b-otyk8dvnt2] {
    background-color: #7f1d1d;
}

/* Order Overview Card */
.order-overview-card[b-otyk8dvnt2] {
    background: white;
    border: 1px solid var(--color-border-light);
    border-radius: 16px;
    padding: 32px;
    box-shadow: var(--shadow-sm);
    margin-bottom: 32px;
}

.overview-header[b-otyk8dvnt2] {
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid var(--color-border-light);
    padding-bottom: 20px;
    margin-bottom: 32px;
}

.meta-label[b-otyk8dvnt2] {
    display: block;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
    color: rgba(0, 0, 0, 0.4);
    margin-bottom: 4px;
    font-family: var(--font-sans);
}

.tracking-number[b-otyk8dvnt2] {
    font-family: var(--font-sans);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-text);
}

.overview-date[b-otyk8dvnt2] {
    font-family: var(--font-sans);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--color-text);
}

/* Stepper Component */
.tracking-stepper[b-otyk8dvnt2] {
    position: relative;
    display: flex;
    justify-content: space-between;
    margin-bottom: 32px;
    padding: 0 10px;
}

.stepper-progress[b-otyk8dvnt2] {
    position: absolute;
    top: 20px;
    left: 40px;
    right: 40px;
    height: 4px;
    background-color: #e5e7eb;
    z-index: 1;
}

.progress-bar-fill[b-otyk8dvnt2] {
    height: 100%;
    background-color: var(--color-primary);
    transition: width 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.step[b-otyk8dvnt2] {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
    text-align: center;
}

.step-icon[b-otyk8dvnt2] {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: #f3f4f6;
    border: 3px solid white;
    color: #9ca3af;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.1rem;
    margin-bottom: 12px;
    box-shadow: 0 0 0 1px #e5e7eb;
    transition: all 0.3s ease;
}

.step-label h4[b-otyk8dvnt2] {
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 4px;
    font-family: var(--font-sans);
    color: #6b7280;
}

.step-label p[b-otyk8dvnt2] {
    font-size: 0.78rem;
    color: #9ca3af;
    font-family: var(--font-sans);
}

/* Completed Step */
.step.completed .step-icon[b-otyk8dvnt2] {
    background-color: var(--color-primary);
    color: white;
    box-shadow: 0 0 0 1px var(--color-primary);
}

.step.completed .step-label h4[b-otyk8dvnt2] {
    color: var(--color-text);
}

/* Active Step */
.step.active .step-icon[b-otyk8dvnt2] {
    background-color: white;
    border-color: var(--color-primary);
    color: var(--color-primary);
    box-shadow: 0 0 0 1px var(--color-primary);
    transform: scale(1.08);
}

.step.active .step-label h4[b-otyk8dvnt2] {
    color: var(--color-primary);
}

/* Failed Step */
.step.failed .step-icon[b-otyk8dvnt2] {
    background-color: #ef4444;
    color: white;
    box-shadow: 0 0 0 1px #ef4444;
}

.step.failed .step-label h4[b-otyk8dvnt2] {
    color: #ef4444;
}

/* Courier Banner */
.courier-banner[b-otyk8dvnt2] {
    display: flex;
    align-items: center;
    gap: 16px;
    background: #fffbeb;
    border: 1px solid #fde68a;
    border-radius: 12px;
    padding: 16px 20px;
    margin-top: 16px;
}

.courier-icon[b-otyk8dvnt2] {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fef3c7;
    width: 44px;
    height: 44px;
    border-radius: 8px;
    flex-shrink: 0;
}

.courier-details[b-otyk8dvnt2] {
    display: flex;
    flex-direction: column;
    font-family: var(--font-sans);
}

.courier-carrier[b-otyk8dvnt2] {
    font-size: 0.75rem;
    font-weight: 700;
    color: #78350f;
    letter-spacing: 0.5px;
    margin-bottom: 2px;
}

.courier-num[b-otyk8dvnt2] {
    font-size: 0.95rem;
    color: #92400e;
}

/* Order Details Grid */
.order-details-grid[b-otyk8dvnt2] {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

.order-card-panel[b-otyk8dvnt2] {
    background: white;
    border: 1px solid var(--color-border-light);
    border-radius: 16px;
    padding: 24px;
    box-shadow: var(--shadow-sm);
    margin-bottom: 24px;
}

.order-card-panel h3[b-otyk8dvnt2] {
    font-family: var(--font-serif);
    font-size: 1.3rem;
    font-weight: 500;
    border-bottom: 1px solid var(--color-border-light);
    padding-bottom: 12px;
    margin-bottom: 20px;
}

/* Items List */
.items-list[b-otyk8dvnt2] {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.order-item-row[b-otyk8dvnt2] {
    display: flex;
    align-items: center;
    gap: 16px;
    padding-bottom: 16px;
    border-bottom: 1px solid #f3f4f6;
}

.order-item-row:last-child[b-otyk8dvnt2] {
    border-bottom: none;
    padding-bottom: 0;
}

.item-img-container[b-otyk8dvnt2] {
    width: 56px;
    height: 56px;
    background: var(--color-surface);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6px;
    flex-shrink: 0;
}

.item-img-container img[b-otyk8dvnt2] {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.item-text-details[b-otyk8dvnt2] {
    display: flex;
    flex-direction: column;
    flex: 1;
    font-family: var(--font-sans);
}

.item-name[b-otyk8dvnt2] {
    font-weight: 500;
    color: var(--color-text);
    font-size: 0.95rem;
    margin-bottom: 4px;
}

.item-qty-price[b-otyk8dvnt2] {
    font-size: 0.8rem;
    color: rgba(0, 0, 0, 0.5);
}

.item-total-price[b-otyk8dvnt2] {
    font-weight: 600;
    font-size: 0.95rem;
    font-family: var(--font-sans);
}

/* Delivery summary details */
.delivery-summary-details[b-otyk8dvnt2] {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.detail-row[b-otyk8dvnt2] {
    display: flex;
    justify-content: space-between;
    font-size: 0.92rem;
    font-family: var(--font-sans);
    line-height: 1.5;
}

.detail-row .lbl[b-otyk8dvnt2] {
    color: rgba(0, 0, 0, 0.5);
    font-weight: 500;
    flex-shrink: 0;
    width: 120px;
}

.detail-row .val[b-otyk8dvnt2] {
    color: var(--color-text);
    font-weight: 600;
    text-align: right;
}

/* Price Breakdown Summary Totals */
.summary-totals-panel[b-otyk8dvnt2] {
    background: #fafaf9;
}

.price-totals-rows[b-otyk8dvnt2] {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.tot-row[b-otyk8dvnt2] {
    display: flex;
    justify-content: space-between;
    font-size: 0.95rem;
    font-family: var(--font-sans);
}

.tot-row.main-grand-total[b-otyk8dvnt2] {
    border-top: 1px solid var(--color-border-light);
    padding-top: 16px;
    margin-top: 8px;
    font-size: 1.3rem;
    font-family: var(--font-serif);
    font-weight: 600;
}

.tot-row.main-grand-total span:last-child[b-otyk8dvnt2] {
    color: var(--color-primary);
}

.secure-payment-badge[b-otyk8dvnt2] {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 24px;
    padding: 12px;
    background: white;
    border: 1px solid #d1fae5;
    border-radius: 8px;
    color: #065f46;
    font-size: 0.82rem;
    font-weight: 600;
    font-family: var(--font-sans);
}

@media (min-width: 768px) {
    .order-details-grid[b-otyk8dvnt2] {
        grid-template-columns: 1.2fr 0.8fr;
        gap: 32px;
    }
}
