:root {
    --primary-brown: #b7492f;
    --btn-blue: #1b4bcf;
    --text-dark: #1a1a1a;
    --bg-light: #f8f9fa;
    --bg-premium: #F8F6F1;
    --primary-green: #184E3A;
    --secondary-green: #2D6A4F;
    --accent-orange: #F28C28;
    --border-color: #E7E2D8;
    --text-dark: #1B1B1B;
    --text-muted: #707070;
    --glass-bg: rgba(255, 255, 255, 0.85);
    --radius-lg: 24px;
    --radius-md: 18px;
    --shadow-soft: 0 10px 40px rgba(0, 0, 0, 0.06);
    --shadow-hover: 0 15px 50px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

body {
    line-height: normal;
    font-family: josefin sans, sans-serif;
}

.top-promo-bar {
    background-color: var(--primary-brown);
    color: white;
    font-size: 13px;
    padding: 8px 0;
    white-space: nowrap;
    overflow: hidden;
    display: flex;
    /* Flexbox use karenge smooth alignment ke liye */
}

.promo-scroll {
    display: flex;
    width: fit-content;
    animation: marquee 25s linear infinite;
    /* Time badha/ghata sakte ho speed ke liye */
}

.promo-text {
    flex-shrink: 0;
    padding-right: 15px;
    /* Thoda space dono text blocks ke beech mein */
}

/* Single Image Hover Swap Effect */
.product-card .img-wrapper .swap-img {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    width: 100%;
    height: 100%;
}

.product-card .img-wrapper .swap-img .img-normal {
    transition: opacity 0.3s ease;
    margin: 0 auto;
    display: block;
}

.product-card .img-wrapper .swap-img .img-hover {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 100%;
    max-height: 298px;
    object-fit: contain;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.product-card .img-wrapper:hover .swap-img .img-normal {
    opacity: 0;
}

.product-card .img-wrapper:hover .swap-img .img-hover {
    opacity: 1;
    object-fit: cover;
    width: 100%;
}

/* Seamless infinite loop animation */
@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* Navbar & Header */
.navbar-brand {
    font-family: 'Georgia', serif;
    font-size: 2rem;
    font-weight: bold;
    color: var(--text-dark);
    letter-spacing: -1px;
}

.nav-link {
    font-size: 13px;
    font-weight: 500;
    color: var(--text-dark);
    text-transform: uppercase;
    position: relative;
    padding: 35px 14px !important;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--primary-brown);
}

.sale-badge {
    position: absolute;
    top: 15px;
    right: 11px;
    background: #b7492f;
    color: white;
    font-size: 9px;
    padding: 2px 4px;
}

.icon-badge {
    position: absolute;
    top: -3px;
    right: -1px;
    background-color: #b7492fdb;
    color: white;
    border-radius: 50%;
    width: 14px;
    height: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 8px;
    font-weight: bold;
    font-family: 'Font Awesome 6 Free';
}

.header-icons i {
    width: 45px;
    height: 45px;
    font-size: 18px;
    color: #969696;
    cursor: pointer;
    position: relative;
    margin-left: 12px;
    transition: transform 0.2s ease, color 0.2s ease;
    border: 1px solid #969696;
    border-radius: 50%;
    padding: 12px 13px;
}

.header-icons i:hover {
    transform: scale(1.07);
    color: #ffffff;
    background: #b7492f;
    border-color: #b7492f;
}

.header-icons .cart-icon:hover {
    transform: scale(1.07);
    color: #ffffff;
    background: #b7492f;
    border-color: #b7492f;
}

/* --- CUSTOM MOBILE TOGGLE BUTTON (As per Image) --- */
.custom-mobile-toggle {
    background-color: #b7492f;
    /* Pink color */
    color: white !important;
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 4px 4px 0px #ffb3d1;
    /* Solid pink shadow offset */
    padding: 0;
    transition: all 0.3s ease;
}

.custom-mobile-toggle:focus {
    outline: none;
    box-shadow: 4px 4px 0px #ffb3d1;
}

.custom-mobile-toggle:active {
    transform: translate(2px, 2px);
    /* Click effect */
    box-shadow: 2px 2px 0px #ffb3d1;
}

.custom-mobile-toggle i {
    font-size: 20px;
    transition: transform 0.3s ease, opacity 0.2s ease;
}

/* Rotate animation when expanded */
.custom-mobile-toggle[aria-expanded="true"] i {
    transform: rotate(90deg);
}


/* --- DESKTOP ONLY MEGA MENU ANIMATION --- */
@media (min-width: 992px) {
    .mega-menu-container {
        position: static !important;
    }

    .dropdown-menu.mega-menu {
        display: block;
        visibility: hidden;
        opacity: 0;
        transform: translateY(20px);
        transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
        width: 100%;
        left: 0;
        right: 0;
        padding: 30px;
        border: none;
        border-top: 1px solid #eee;
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
        margin-top: 0;
        pointer-events: none;
        position: absolute;
    }

    .mega-menu-container:hover .dropdown-menu.mega-menu {
        visibility: visible;
        opacity: 1;
        transform: translateY(0);
        pointer-events: auto;
        top: 5.41rem;
        width: 80%;
        left: 50%;
        transform: translateX(-50%);
    }
}

/* --- MOBILE ONLY ADJUSTMENTS --- */
@media (max-width: 991px) {
    .mega-menu {
        padding: 15px 0;
        border: none;
        box-shadow: none;
        background-color: #fcfcfc;
    }

    .header-icons {
        margin-top: 15px;
        padding-bottom: 10px;
        border-top: 1px solid #eee;
        padding-top: 15px;
    }

    .header-icons i {
        margin-left: 0;
        margin-right: 25px;
    }

    .img-placeholder {
        height: 150px !important;
        margin-top: 15px;
    }

    .mt-4.text-center {
        margin-top: 10px !important;
        margin-bottom: 20px;
    }
}

/* Shared Mega Menu Styles */
.mega-menu-list {
    list-style: none;
    padding: 0;
    line-height: 23px;
}

.mega-menu-list li {
    margin-bottom: 15px;
    color: #555;
    font-size: 14px;
    cursor: pointer;
    transition: color 0.2s ease, transform 0.2s ease;
    text-transform: uppercase;
}

.mega-menu-list li:hover {
    color: var(--primary-brown);
    transform: translateX(5px);
}

.mega-menu-list li::before {
    content: "- ";
    color: #999;
}

.menu-heading {
    font-weight: bold;
    font-size: 16px;
    margin-bottom: 10px;
}

.zig-zag-line {
    width: 100px;
    height: 4px;
    background: repeating-linear-gradient(45deg, transparent, transparent 2px, #f4c05e 2px, #f4c05e 4px);
    margin-bottom: 20px;
}

/* Image Placeholders */
.img-placeholder {
    width: 100%;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 20px;
    transition: transform 0.4s ease;
}

.img-ph-1 {
    color: #333;
}

.img-ph-2 {
    background-color: #5a796c;
    text-align: center;
    padding: 20px;
}

/* --- SMOOTH CART OFFCANVAS --- */
.offcanvas {
    transition: transform 0.5s cubic-bezier(0.25, 0.8, 0.25, 1) !important;
}

@media (max-width: 576px) {
    .offcanvas {
        width: 100% !important;
    }
}

/* --- PREMIUM CART DRAWER STYLES --- */
.cart-drawer-custom {
    width: 420px !important;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.15);
    border: none !important;
}

.cart-header-wrap {
    background: #ffffff;
    border-bottom: 1px solid #f1f5f9;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.cart-header-title {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 0;
}

.cart-header-icon-box {
    width: 42px;
    height: 42px;
    background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 100%);
    color: #b7492f;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    box-shadow: 0 3px 10px rgba(183, 73, 47, 0.12);
}

.cart-title-text {
    font-size: 17px;
    font-weight: 800;
    color: #0f172a;
    letter-spacing: -0.3px;
    line-height: 1.25;
}

.cart-title-sub {
    font-size: 12px;
    font-weight: 500;
    color: #64748b;
    display: flex;
    align-items: center;
    gap: 6px;
    margin-top: 1px;
}

.cart-item-count-badge {
    background-color: #b7492f;
    color: #ffffff;
    font-size: 10px;
    font-weight: 800;
    padding: 2px 7px;
    border-radius: 10px;
    letter-spacing: 0.5px;
}

.cart-close-btn {
    width: 34px;
    height: 34px;
    background-color: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #64748b;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.25s ease;
}

.cart-close-btn:hover {
    background-color: #ef4444;
    border-color: #ef4444;
    color: #ffffff;
    transform: rotate(90deg);
}

.cart-timer-box {
    background-color: #fff4e5;
    border: 1px solid #ffd8a8;
    color: #d97706;
    border-radius: 25px;
    padding: 10px 16px;
    font-size: 13px;
    font-weight: 600;
}

.cart-item-card {
    background: #ffffff;
    border: 1px solid #f0f0f0;
    border-radius: 12px;
    padding: 14px;
    margin-bottom: 14px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
}

.cart-item-card:hover {
    border-color: #e2e8f0;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.06);
    transform: translateY(-2px);
}

.cart-item-img-wrap {
    width: 75px;
    height: 75px;
    background-color: #f7f7f7;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    padding: 6px;
}

.cart-item-img-wrap img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    mix-blend-mode: multiply;
}

.cart-item-title {
    font-size: 14px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 2px;
    line-height: 1.3;
}

.cart-item-meta {
    font-size: 11px;
    color: #64748b;
    margin-bottom: 6px;
}

.cart-item-price {
    font-size: 15px;
    font-weight: 700;
    color: #b7492f;
}

.qty-selector {
    border: 1px solid #e2e8f0;
    background-color: #f8fafc;
    border-radius: 20px;
    display: inline-flex;
    align-items: center;
    padding: 2px 8px;
}

.qty-btn {
    background: none;
    border: none;
    font-size: 14px;
    font-weight: 700;
    color: #475569;
    padding: 0 6px;
    cursor: pointer;
    transition: color 0.2s ease;
}

.qty-btn:hover {
    color: #b7492f;
}

.qty-input {
    width: 28px;
    text-align: center;
    border: none;
    font-size: 13px;
    font-weight: 700;
    color: #0f172a;
    background: transparent;
}

.cart-delete-btn {
    color: #94a3b8;
    cursor: pointer;
    font-size: 14px;
    transition: color 0.2s ease;
    padding: 4px;
}

.cart-delete-btn:hover {
    color: #ef4444;
}

.free-shipping-box {
    background-color: #f0fdf4;
    border: 1px solid #bbf7d0;
    border-radius: 10px;
    padding: 10px 14px;
}

.shipping-progress {
    height: 100%;
    background: linear-gradient(90deg, #22c55e, #16a34a);
    border-radius: 4px;
}

.checkout-btn {
    background: linear-gradient(135deg, #b7492f 0%, #8c2a13 100%);
    color: #ffffff;
    border-radius: 30px;
    padding: 14px 20px;
    font-size: 15px;
    font-weight: 700;
    width: 100%;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: 0 4px 15px rgba(183, 73, 47, 0.35);
    transition: all 0.3s ease;
}

.checkout-btn:hover {
    background: linear-gradient(135deg, #a13d25 0%, #75200d 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(183, 73, 47, 0.45);
}



/* SLIDER */


.hero-slider {
    overflow: hidden;
}

.carousel-item {
    position: relative;
}

.carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 8s ease;
}



/* .carousel-item::before{
content:'';
position:absolute;
inset:0;
background:linear-gradient(to right,
rgba(0,0,0,.75),
rgba(0,0,0,.25),
rgba(0,0,0,0));
z-index:1;
} */

.carousel-caption {
    position: absolute;
    left: 5.5%;
    top: 50%;
    transform: translateY(-50%);
    text-align: left;
    z-index: 2;
    width: 580px;
}

.sub-title {
    display: inline-block;
    color: #FFD54F;
    font-size: 18px;
    letter-spacing: 3px;
    margin-bottom: 4px;
    animation: fadeTop .8s;
}

.carousel-caption h1 {
    font-size: 50px;
    color: #fff;
    font-weight: 700;
    line-height: 1.1;
    animation: fadeLeft 1s;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.carousel-caption h1 span {
    color: #ffc46b;
}

.carousel-caption p {
    font-size: 17px;
    color: #fff;
    margin: 15px 0;
    animation: fadeRight 1.2s;
}

.btn-shop {
    display: inline-block;
    padding: 12px 27px;
    background: #ffc46b;
    color: #222;
    font-weight: 700;
    border-radius: 60px;
    text-decoration: none;
    transition: .4s;
    animation: zoom .9s;
}

.btn-shop:hover {

    background: #fff;
    color: #000;
    transform: translateY(-5px);

}


/* Custom Arrows */

.custom-arrow {

    width: 70px;
    height: 70px;
    top: 50%;
    transform: translateY(-50%);
    opacity: 1;

}

.custom-arrow span {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #fff;
    color: #222;
    font-size: 19px;
    transition: .4s;
}

.custom-arrow:hover span {
    background: #ffc46b;
    color: #fff;
    transform: scale(1.1) rotate(360deg);
}

.carousel-control-prev {
    left: 5px;
}

.carousel-control-next {
    right: 5px;
}

/* Indicators */

.carousel-indicators {

    bottom: 35px;

}

.carousel-indicators button {

    width: 12px !important;
    height: 12px !important;
    border-radius: 50%;
    margin: 0 8px;
    background: #fff;

}

.carousel-indicators .active {

    background: #ffc46b;
    width: 40px !important;
    border-radius: 20px;

}

/* Animations */

@keyframes fadeLeft {

    from {

        opacity: 0;
        transform: translateX(-80px);

    }

    to {

        opacity: 1;
        transform: translateX(0);

    }

}

@keyframes fadeRight {

    from {

        opacity: 0;
        transform: translateX(80px);

    }

    to {

        opacity: 1;
        transform: translateX(0);

    }

}

@keyframes fadeTop {

    from {

        opacity: 0;
        transform: translateY(-40px);

    }

    to {

        opacity: 1;
        transform: translateY(0);

    }

}

@keyframes zoom {

    from {

        opacity: 0;
        transform: scale(.6);

    }

    to {

        opacity: 1;
        transform: scale(1);

    }

}

@media(max-width:991px) {



    .carousel-caption {

        width: 90%;
        left: 5%;

    }

    .carousel-caption h1 {

        font-size: 42px;

    }

    .carousel-caption p {

        font-size: 18px;

    }

    .custom-arrow {

        display: none;

    }

}

.quote-section {
    background-color: #ffffff;
    padding: 46px 20px;
}

.quote-text {
    /* Elegant serif font matching the design */
    font-family: 'Georgia', 'Times New Roman', serif;
    /* Muted beige/brownish color from the image */
    color: #b09c85;
    font-size: 28px;
    line-height: 1.6;
    max-width: 700px;
    margin: 0 auto;
}

/* Responsive adjustment for mobile screens */
@media (max-width: 768px) {
    .quote-text {
        font-size: 20px;
        line-height: 1.5;
    }
}

.promo-card {
    position: relative;
    background-size: cover;
    background-position: right center;
    background-repeat: no-repeat;
    min-height: 291px;
    padding: 31px 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.5s cubic-bezier(0.25, 1, 0.5, 1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    will-change: transform, box-shadow;
}

.promo-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    transition: opacity 0.5s cubic-bezier(0.25, 1, 0.5, 1);
    opacity: 0.7;
}

.promo-card:hover::before {
    opacity: 0.9;
}

/* Light Shine Pass Animation */
.promo-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.25), transparent);
    transform: skewX(-25deg);
    transition: left 0.85s cubic-bezier(0.25, 1, 0.5, 1);
    z-index: 2;
}

.promo-card:hover::after {
    left: 140%;
}

.promo-card:hover {
    transform: translateY(-8px) scale(1.015);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.22);
}

/* Z-Index for Card Elements */
.badge-yellow,
.promo-title,
.title-divider,
.promo-subtitle,
.shop-now-btn {
    position: relative;
    z-index: 3;
}

/* Yellow Badge */
.badge-yellow {
    background-color: #f6c01e;
    color: #000;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    padding: 6px 12px;
    letter-spacing: 1px;
    margin-bottom: 10px;
    border-radius: 3px;
    display: inline-block;
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1), background-color 0.4s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.4s ease;
}

.promo-card:hover .badge-yellow {
    transform: scale(1.06) translateY(-2px);
    background-color: #ffd643;
    box-shadow: 0 4px 12px rgba(246, 192, 30, 0.4);
}

/* Main Title (Light Text) */
.promo-title {
    color: #ffffff;
    font-size: 26px;
    font-weight: 300;
    margin: 0;
    letter-spacing: 0.5px;
}

/* Thin Divider Line */
.title-divider {
    width: 45px;
    height: 2px;
    background-color: #ffffff;
    margin: 8px 0;
    opacity: 0.8;
}

/* Subtitle / Bold Text */
.promo-subtitle {
    color: #ffffff;
    font-size: 26px;
    font-weight: 800;
    margin-bottom: 5px;
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.promo-card:hover .promo-subtitle {
    transform: translateX(6px);
}

/* Shop Now Button */
.shop-now-btn {
    color: #ffffff;
    font-size: 12px;
    font-weight: 800;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 1px solid #fff;
    padding: 8px 14px;
    margin-top: 8px;
    border-radius: 4px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.shop-now-btn i {
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.promo-card:hover .shop-now-btn {
    background-color: #ffffff;
    color: #111111;
    border-color: #ffffff;
    box-shadow: 0 4px 18px rgba(255, 255, 255, 0.35);
    transform: translateY(-2px);
}

.promo-card:hover .shop-now-btn i {
    transform: translateX(6px);
}

/* Fallback Colors (In case images take time to load) */
.card-bg-green {
    background-color: #6a9c78;
}

.card-bg-black {
    background-color: #0a0a0a;
}

.card-bg-orange {
    background-color: #ad522a;
}


.carousel-indicators [data-bs-target] {

    border-top: 0 transparent !important;
    border-bottom: 0 transparent !important;

}




/* Product Card Wrapper */
.product-card {
    margin-bottom: 40px;
}

/* Image Area (Gray Box) */
.img-wrapper {
    position: relative;
    background-color: #f6f6f6;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    transition: all 0.3s ease;
}

.img-wrapper a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}



/* Discount Badge */
.badge-discount {
    position: absolute;
    top: 15px;
    left: 15px;
    background-color: #db4646;
    color: white;
    font-size: 12px;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 20px;
    z-index: 10;
}

/* Action Icons (Top Right) */
.action-icons {
    position: absolute;
    top: 15px;
    right: 15px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 10;
}

.action-icons i {
    color: #333;
    font-size: 16px;
    cursor: pointer;
    transition: color 0.2s ease;
}

.action-icons i:hover {
    color: #a33b31;
}

/* Extra Icons (Eye, Compare) Hidden by Default */
.hover-icon {
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
}

/* "Add to Cart" Button */
.add-to-bag-btn {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #a33b31;
    color: white;
    border: none;
    padding: 12px 0;
    font-size: 13px;
    font-weight: bold;
    text-align: center;
    transform: translateY(100%);
    transition: transform 0.3s ease;
    z-index: 15;
    cursor: pointer;
}

.add-to-bag-btn:hover {
    background-color: #8b3229;
}

/* Slider Arrows (Custom Styling) */
.custom-carousel-control {
    width: 30px;
    height: 30px;
    background: transparent;
    color: #000;
    font-size: 20px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    border: none;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 10;
}

.custom-carousel-control.prev {
    left: 10px;
}

.custom-carousel-control.next {
    right: 10px;
}


/* ---- HOVER EFFECTS ON IMAGE WRAPPER ---- */
.img-wrapper:hover .hover-icon {
    opacity: 1;
    transform: translateY(0);
}

.img-wrapper:hover .add-to-bag-btn {
    transform: translateY(0);
}

.img-wrapper:hover .custom-carousel-control {
    opacity: 1;
}


/* Product Info (Below Image) */
.product-info {
    padding-top: 15px;
}

.product-title {
    font-size: 15px;
    font-weight: 600;
    color: #222;
    margin: 0;
    text-transform: uppercase;
}

/* Color Swatches */
.color-swatches {
    display: flex;
    gap: 5px;
}

.swatch {
    width: 12px;
    height: 12px;
    display: inline-block;
    border: 1px solid #ddd;
}

/* Price */
.price-area {
    font-size: 13px;
    margin-top: 5px;
}

.current-price {
    color: #555;
    font-weight: 500;
}

.old-price {
    color: #999;
    text-decoration: line-through;
    margin-left: 8px;
}

/* Image Placeholder for Demo */
.placeholder-img {
    max-width: 100%;
    max-height: 298px;
    object-fit: contain;
}

.promo-banner {
    background-color: rgb(222, 224, 232);
    padding: 55px 0px;
}

/* --- Left Column Styles --- */
.discount-text {
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 3px;
    color: #000;
    margin-bottom: 12px;
}

.main-title {
    font-size: 87px;
    font-weight: 700;
    color: #000;
    line-height: 0.985;
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: -2px;
    font-family: 'Poppins', sans-serif;
}

.hot-deals {
    font-size: 26px;
    font-weight: 600;
    color: #b7492f;
    margin-bottom: 5px;
    font-family: 'Barlow', sans-serif;
}

.date-text {
    font-size: 16px;
    color: #000;
    font-weight: 500;
}

/* --- Right Column Styles --- */
.subtitle {
    font-size: 12px;
    font-weight: 700;
    color: #7a7d85;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.right-title {
    font-size: 38px;
    font-weight: 700;
    color: #000;
    margin-bottom: 15px;
    letter-spacing: -0.5px;
    font-family: 'Barlow', sans-serif;
}

.description {
    font-size: 15px;
    color: #7a7d85;
    line-height: 1.6;
    margin-bottom: 14px;
    text-align: justify;
    width: 348px;
}

/* Shop Now Button */
.shop-btn {
    display: inline-block;
    border: 1px solid #000;
    background-color: transparent;
    color: #000;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    padding: 12px 35px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.shop-btn:hover {
    background-color: #000;
    color: #fff;
}

/* --- Responsive Adjustments for Mobile --- */
@media (max-width: 768px) {
    .promo-banner {
        padding: 50px 0;
    }

    .main-title {
        font-size: 60px;
        /* Smaller main title on mobile */
    }

    .right-title {
        font-size: 28px;
    }

    .right-content-wrapper {
        margin-top: 40px;
        /* Space between left and right content on mobile */
    }
}

.main-promo img {
    width: 530px;
}

.main-promo {
    position: absolute;
    left: 40%;
    transform: translateX(-36%);
    top: -62px;
}


/* --- UNIQUE Swiper Container adjustments --- */
.csm-product-swiper {
    width: 100%;
    padding: 20px 0;
    /* Padding for hover shadow space */
}

/* --- UNIQUE Product Card Styling --- */
.csm-product-card {
    background: #fff;
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
}

/* Image Wrapper with Hover Effects */
.csm-img-wrapper {
    position: relative;
    overflow: hidden;
    background-color: #f9f9f9;
    margin-bottom: 20px;
    aspect-ratio: 1 / 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.csm-img-wrapper img {
    width: 100%;
    height: 311px;
    object-fit: contain;
    /* margin: auto; */
}

/* Unique CSM Image Hover Effect */
.csm-swap-img {
    position: relative;
    width: 100%;
    height: 100%;
    display: block;
}

.csm-swap-img .csm-img-normal {
    transition: opacity 0.3s ease;
    display: block;
}

.csm-swap-img .csm-img-hover {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.csm-img-wrapper:hover .csm-swap-img .csm-img-normal {
    opacity: 0;
}

.csm-img-wrapper:hover .csm-swap-img .csm-img-hover {
    opacity: 1;
}


/* NEW Badge */
.csm-badge-new {
    position: absolute;
    top: 15px;
    left: 15px;
    background-color: #1a353c;
    color: #ffffff;
    font-size: 11px;
    font-weight: 700;
    padding: 3px 5px;
    border-radius: 4px;
    letter-spacing: 1px;
    z-index: 10;
    height: 18px;
}

/* Hover Action Icons (Right Side) */
.csm-action-icons {
    position: absolute;
    top: 15px;
    right: -50px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    z-index: 10;
}

.csm-icon-circle {
    width: 36px;
    height: 36px;
    background-color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1a353c;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
    cursor: pointer;
    transition: color 0.3s ease, transform 0.2s ease;
}

.csm-icon-circle:hover {
    color: #d18252;
    transform: scale(1.1);
}

/* Add to Cart Button (Bottom) */
.csm-add-cart-btn {
    position: absolute;
    bottom: -60px;
    left: 5%;
    width: 90%;
    background-color: #ffffff;
    color: #1a353c;
    border: none;
    padding: 12px 0;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    z-index: 10;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.csm-add-cart-btn:hover {
    color: #d18252;
}

/* --- Hover Triggers --- */
.csm-img-wrapper:hover .csm-action-icons {
    right: 15px;
    opacity: 1;
}

.csm-img-wrapper:hover .csm-add-cart-btn {
    bottom: 15px;
    opacity: 1;
}

/* Product Info Styling */
.csm-product-info {
    text-align: center;
    padding: 0 10px;
}

.csm-product-title {
    font-size: 16px;
    font-weight: 600;
    color: #1a353c;
    text-transform: uppercase;
    margin-bottom: 3px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.csm-product-price {
    font-size: 14px;
    font-weight: 700;
    color: #4a5c60;
}

/* General Section Styling */
.cosmetic-banners-section {
    background-color: #ffffff;
}

/* Banner Image Wrapper & Ultra Smooth Hover Effect */
.banner-img-wrap {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.5s cubic-bezier(0.25, 1, 0.5, 1);
    will-change: transform, box-shadow;
}

.banner-img-wrap::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.25), transparent);
    transform: skewX(-25deg);
    transition: left 0.85s cubic-bezier(0.25, 1, 0.5, 1);
    pointer-events: none;
    z-index: 2;
}

.banner-poster-img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1), filter 0.6s ease;
    will-change: transform;
}

.banner-img-wrap:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.12);
}

.banner-img-wrap:hover::after {
    left: 150%;
}

.banner-img-wrap:hover .banner-poster-img {
    transform: scale(1.04);
    filter: brightness(1.04);
}

.pr-list-card {
    background: #ffffff;
    border: 1px solid #eaeaea;
    border-radius: 12px;
    padding: 25px;
    height: 100%;
    display: flex;
    flex-direction: column;
}

/* --- Header Styling --- */
.pr-header {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 1px solid #f0f0f0;
}

.pr-header-icon {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #ffffff;
    margin-right: 15px;
    flex-shrink: 0;
}



.pr-header-subtitle {
    font-size: 13px;
    color: #666;
    margin: 0;
}

/* --- Product Item Styling --- */
.pr-item {
    display: flex;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #f0f0f0;
}

.pr-item:last-of-type {
    border-bottom: none;
    margin-bottom: 15px;
}

.pr-item-img {
    width: 90px;
    height: 90px;
    background-color: #f7f7f7;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px;
    margin-right: 15px;
    flex-shrink: 0;
}

.pr-item-img img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    mix-blend-mode: multiply;
}

.pr-item-img a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    text-decoration: none;
}

.pr-item-info {
    flex-grow: 1;
}

.pr-item-title {
    font-size: 15px;
    font-weight: 600;
    color: #222;
    margin: 0 0 4px 0;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-transform: capitalize;
}

.pr-item-title a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s ease;
}

.pr-item-title a:hover {
    color: var(--primary-color, #df872d);
}

.pr-item-price-wrap {
    margin-bottom: 5px;
}

.pr-item-price {
    font-size: 15px;
    font-weight: 700;
    color: #111;
}

.pr-item-old-price {
    font-size: 13px;
    color: #999;
    text-decoration: line-through;
    margin-left: 5px;
}

.pr-item-rating {
    font-size: 11px;
    display: flex;
    align-items: center;
    gap: 2px;
}

.pr-item-rating span {
    color: #888;
    margin-left: 5px;
}

/* Action Button (Cart / Share) */
.pr-action-btn {
    width: 40px;
    height: 40px;
    border-radius: 0;
    background: transparent;
    border: 1px solid;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.2s ease;
    margin-left: 10px;
    flex-shrink: 0;
}

/* View All Button */
.pr-view-all-btn {
    margin-top: auto;
    width: 100%;
    padding: 12px;
    border-radius: 8px;
    text-align: center;
    font-size: 12px;
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: opacity 0.3s ease;
}

.pr-view-all-btn:hover {
    opacity: 0.85;
}


/* =========================================
THEME COLORS (Dynamic Variables)
========================================= */

.theme-orange {
    --primary-color: #df872d;
    --bg-light: #fef8f3;
}

.theme-green {
    --primary-color: #5d7e4e;
    --bg-light: #f3f7f2;
}

.theme-blue {
    --primary-color: #17284b;
    --bg-light: #f0f4fa;
}

/* --- CARD LAYOUT & STYLING --- */
.pr-list-card {
    background-color: #ffffff;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    height: 100%;
    display: flex;
    flex-direction: column;
    border: 1px solid #f0f0f0;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Card Hover Animation */
.pr-list-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

/* HEADER */
.pr-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 7px;
}

.pr-header-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 20px;
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.pr-list-card:hover .pr-header-icon {
    transform: scale(1.1) rotate(5deg);
}

.pr-header-title {
    font-family: 'Barlow', sans-serif;
    font-size: 21px;
    font-weight: 700;
    margin: 0 0 2px 0;
    color: #505050;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.pr-header-subtitle {
    font-size: 13px;
    color: #777;
    margin: 0;
}


/* Item Hover Animation */
.pr-item:hover {
    background-color: #ffffff;
    transform: translateX(4px);
    /* Slide Right Effect */
}


.pr-item-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

/* Image Zoom on Hover */
.pr-item:hover .pr-item-img img {
    transform: scale(1.15);
}

.pr-item-info {
    flex-grow: 1;
}


.pr-item-price {
    font-size: 14px;
    font-weight: 700;
    color: #111;
}

.pr-item-old-price {
    font-size: 12px;
    color: #aaa;
    text-decoration: line-through;
    margin-left: 5px;
}

.pr-item-rating {
    font-size: 11px;
}

.pr-item-rating span {
    color: #888;
    margin-left: 3px;
}


.pr-action-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

/* View All Button */
.pr-view-all-btn {
    display: inline-block;
    width: 100%;
    padding: 12px 15px;
    text-align: center;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 700;
    text-decoration: none;
    margin-top: auto;
    transition: all 0.3s ease;
}

.pr-view-all-btn i {
    margin-right: 5px;
    transition: transform 0.3s ease;
}

.pr-view-all-btn:hover {
    transform: translateY(-2px);
}

/* Button icon slight slide on hover */
.pr-view-all-btn:hover i {
    transform: translateX(-3px);
}

/* --- THEME APPLY --- */
.theme-orange .pr-header-icon,
.theme-green .pr-header-icon,
.theme-blue .pr-header-icon {
    background-color: var(--primary-color);
}

.theme-orange .pr-item-rating i,
.theme-green .pr-item-rating i,
.theme-blue .pr-item-rating i {
    color: var(--primary-color);
}

.theme-orange .pr-action-btn,
.theme-green .pr-action-btn,
.theme-blue .pr-action-btn {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.theme-orange .pr-action-btn:hover,
.theme-green .pr-action-btn:hover,
.theme-blue .pr-action-btn:hover {
    background-color: var(--primary-color);
    color: #ffffff;
}

.theme-orange .pr-view-all-btn,
.theme-green .pr-view-all-btn,
.theme-blue .pr-view-all-btn {
    background-color: var(--bg-light);
    color: var(--primary-color);
}

/* =====================================
        LOAD IN ANIMATIONS
        ===================================== */
@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(40px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Applying animation to cards with staggered delays */
.col-lg-4 .pr-list-card {
    animation: fadeInUp 0.8s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
    opacity: 0;
}

.col-lg-4:nth-child(1) .pr-list-card {
    animation-delay: 0.1s;
}

.col-lg-4:nth-child(2) .pr-list-card {
    animation-delay: 0.3s;
}

.col-lg-4:nth-child(3) .pr-list-card {
    animation-delay: 0.5s;
}

/* --- Main Section Styling --- */
.na-section {
    background-color: #1a343a;
    position: relative;
    color: #ffffff;
    margin-bottom: 7rem;
}

/* Huge Background Text */
.na-bg-text {
    position: absolute;
    padding-left: 4rem;
    top: 53px;
    width: 100%;
    font-size: 7vw;
    font-weight: 900;
    color: #294a51;
    text-transform: uppercase;
    letter-spacing: 5px;
    z-index: 1;
    line-height: 1;
    user-select: none;
    white-space: nowrap;
    font-family: 'Barlow', sans-serif;
}

/* Vertical Side Text */
.na-vertical-text {
    position: absolute;
    left: -40px;
    top: 50%;
    transform: rotate(-90deg) translateY(-50%);
    font-size: 12px;
    letter-spacing: 5px;
    color: #ffffff;
    font-weight: 600;
    text-transform: uppercase;
    z-index: 5;
}

/* Content Container */
.na-container {
    position: relative;
    z-index: 5;
}

/* --- FLOATING WHITE WRAPPER --- */
.na-slider-wrapper {
    padding: 25px;
    position: relative;
    z-index: 10;
    top: 9rem;
}

/* --- Product Card Styling --- */
.na-product-card {
    background-color: #ffffff;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.na-img-wrapper {
    background-color: #efefef;
    position: relative;
    padding: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 262px;
    overflow: hidden;
    border-radius: 6px;
}

.na-img-wrapper a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.na-img-wrapper img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.na-img-wrapper:hover img {
    transform: scale(1.05);
}

/* Badges */
.na-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background-color: #fc4a4a;
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 12px;
    z-index: 10;
}

/* Action Icons (Right Side) */
.na-action-icons {
    position: absolute;
    top: 15px;
    right: 15px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    opacity: 0;
    transform: translateX(20px);
    transition: all 0.3s ease;
    z-index: 10;
}

.na-icon-btn {
    width: 32px;
    height: 32px;
    background-color: #ffffff;
    color: #1a343a;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    cursor: pointer;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    transition: color 0.2s ease;
}

.na-icon-btn:hover {
    color: #6189a4;
}

/* Add to Cart Button */
.na-add-cart-btn {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #6189a4;
    color: #ffffff;
    border: none;
    padding: 12px 0;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    opacity: 0;
    transform: translateY(100%);
    transition: all 0.3s ease;
    z-index: 10;
    cursor: pointer;
}

.na-add-cart-btn:hover {
    background-color: #4b6f87;
}

/* Hover Effects */
.na-img-wrapper:hover .na-action-icons {
    opacity: 1;
    transform: translateX(0);
}

.na-img-wrapper:hover .na-add-cart-btn {
    opacity: 1;
    transform: translateY(0);
}

/* Product Info */
.na-product-info {
    padding: 15px 0 0;
}

.na-product-title {
    font-size: 13px;
    font-weight: 500;
    color: #333333;
    margin-bottom: 8px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.na-product-price {
    font-size: 15px;
    font-weight: 700;
    color: #111111;
}

.na-product-old-price {
    font-size: 12px;
    color: #999999;
    text-decoration: line-through;
    margin-left: 5px;
}

/* --- Right Column Typography --- */
.na-right-col {
    padding-left: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-top: 9.3rem;
}

.na-heading {
    font-size: 34px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 25px;
    font-family: 'Barlow', sans-serif;
}

.na-link {
    font-size: 11px;
    font-weight: 700;
    color: rgb(255, 255, 255);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-bottom: 2px solid rgb(255, 255, 255);
    padding-bottom: 3px;
    display: inline-block;
    margin-bottom: 19px;
    align-self: flex-start;
}

.na-link:hover {
    color: #e0e0e0;
    border-color: #e0e0e0;
}

/* Slider Navigation Arrows */
.na-nav-arrows {
    display: flex;
    gap: 15px;
}

.na-nav-btn {
    background: transparent;
    border: none;
    color: #ffffff;
    font-size: 18px;
    cursor: pointer;
    padding: 0;
    transition: opacity 0.2s;
}

.na-nav-btn:hover {
    opacity: 0.7;
}

.na-nav-btn.swiper-button-disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

/* Responsive Adjustments */
@media (max-width: 991px) {
    .na-right-col {
        padding-left: 15px;
        margin-top: 40px;
    }

    .na-bg-text {
        font-size: 15vw;
        top: 40px;
    }

    .na-vertical-text {
        display: none;
    }

    .na-slider-wrapper {
        padding: 15px;
    }

    /* Less padding on mobile */
}


.ukc-section {
    padding: 40px 0 0 0;
    background-color: #ffffff;
}

/* --- LEFT PANEL --- */
.ukc-left-panel {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    height: 100%;
    min-height: 582px;
    display: flex;
    flex-direction: column;
}

/* Left Image Styling */
.ukc-left-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* Keeps image full and proportionate */
    z-index: 1;
}

/* Dark Blue Bottom Bar */
.ukc-left-bottom-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #1a2733;
    z-index: 5;
    padding: 17px 14px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom-left-radius: 16px;
    border-bottom-right-radius: 16px;
}

.ukc-feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #ffffff;
}

.ukc-feature-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: #c79c60;
    /* Gold */
}

.ukc-feature-text h5 {
    font-size: 13px;
    font-weight: 700;
    margin: 0 0 2px 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.ukc-feature-text p {
    font-size: 12px;
    color: #a0aab2;
    margin: 0;
}

/* --- RIGHT PANEL --- */
.ukc-right-panel {
    background-color: #f7f5f0;
    border-radius: 16px;
    padding: 14px 21px;
    height: 100%;
    display: flex;
    flex-direction: column;
}

/* Right Panel Header */
.ukc-header {
    text-align: center;
    margin-bottom: 18px;
}

.ukc-pre-heading {
    font-size: 12px;
    font-weight: 700;
    color: #c79c60;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 5px;
}

.ukc-pre-heading::before,
.ukc-pre-heading::after {
    content: '';
    display: block;
    width: 30px;
    height: 1px;
    background-color: #e0d5c1;
}

.ukc-heading {
    font-family: 'Barlow', sans-serif;
    font-size: 38px;
    font-weight: 700;
    color: #1a2733;
    margin-bottom: 8px;
}

.ukc-subheading {
    font-size: 14px;
    color: #777;
    margin: 0;
}

/* --- SWIPER SETTINGS --- */
.ukc-product-swiper {
    width: 100%;
    flex-grow: 1;
}

/* Product Card */
.ukc-card {
    background-color: #ffffff;
    border-radius: 16px;
    padding: 14px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.03);
    display: flex;
    flex-direction: column;
}

.ukc-card-img-wrap {
    background-color: #f4f4f4;
    border-radius: 12px;
    position: relative;
    padding: 5px;
    height: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    overflow: hidden;
}

.ukc-card-img-wrap img {
    max-width: 85%;
    max-height: 85%;
    object-fit: contain;
    mix-blend-mode: multiply;
}

.ukc-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background-color: #d33131;
    /* Red */
    color: #ffffff;
    font-size: 12px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 20px;
    z-index: 5;
}

.ukc-tag {
    position: absolute;
    bottom: 10px;
    left: 12px;
    font-size: 10px;
    font-weight: 700;
    color: #c79c60;
    background: rgba(255, 255, 255, 0.9);
    padding: 4px 8px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    gap: 5px;
    z-index: 5;
}

.ukc-card-title {
    font-size: 15px;
    font-weight: 600;
    color: #1a2733;
    margin-bottom: 10px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.ukc-card-price {
    margin-bottom: 8px;
}

.ukc-price-new {
    font-size: 18px;
    font-weight: 700;
    color: #d33131;
}

.ukc-price-old {
    font-size: 14px;
    color: #999;
    text-decoration: line-through;
    margin-left: 8px;
}

.ukc-rating {
    font-size: 12px;
    color: #eab308;
    margin-bottom: 15px;
}

.ukc-rating span {
    color: #888;
    margin-left: 5px;
}

/* Action Buttons */
.ukc-actions {
    display: flex;
    gap: 10px;
}

.ukc-btn-cart {
    flex-grow: 1;
    background-color: #c79c60;
    color: #ffffff;
    border: none;
    border-radius: 25px;
    font-size: 13px;
    font-weight: 600;
    padding: 10px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: background 0.3s;
}

.ukc-btn-cart:hover {
    background-color: #b08750;
    color: #fff;
}

.ukc-btn-wishlist {
    width: 42px;
    height: 42px;
    border: 1px solid #e0e0e0;
    background-color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #888;
    transition: all 0.3s;
}

.ukc-btn-wishlist:hover {
    border-color: #c79c60;
    color: #c79c60;
}

/* --- UKC COMBO DISPLAY STYLES --- */
.ukc-combo-display {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    width: 100%;
    height: 100%;
    text-decoration: none;
    padding: 15px 5px 25px 5px;
}

.ukc-combo-img-box {
    flex: 1;
    height: 125px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.ukc-combo-display:hover .ukc-combo-img-box {
    transform: scale(1.04);
}

.ukc-combo-img-box img {
    max-width: 85%;
    max-height: 85%;
    object-fit: contain;
    mix-blend-mode: multiply;
}

.ukc-combo-plus {
    width: 19px;
    height: 19px;
    border-radius: 33%;
    background-color: #1a2733;
    color: #ffffff;
    font-size: 25px;
    font-weight: 300;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
    padding: 4px 5px;
}

.ukc-save-pill {
    font-size: 11px;
    font-weight: 700;
    color: #15803d;
    background-color: #dcfce7;
    padding: 3px 8px;
    border-radius: 12px;
    display: inline-block;
    margin-left: 6px;
}


/* Pagination Dots Color */
.swiper-pagination-bullet-active {
    background-color: #c79c60 !important;
}

/* Bottom Support Features */
.ukc-bottom-features {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 10px;
    padding-top: 25px;
    border-top: 1px solid #e5dfd3;
}

.ukc-support-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.ukc-support-icon {
    font-size: 20px;
    color: #c79c60;
}

.ukc-support-text h6 {
    font-size: 11px;
    font-weight: 700;
    color: #1a2733;
    margin: 0 0 2px 0;
    text-transform: uppercase;
}

.ukc-support-text p {
    font-size: 10px;
    color: #777;
    margin: 0;
}

/* Responsive */
@media (max-width: 1200px) {
    .ukc-left-bottom-bar {
        flex-wrap: wrap;
        gap: 15px;
        justify-content: center;
    }

    .ukc-bottom-features {
        flex-wrap: wrap;
        gap: 15px;
        justify-content: center;
    }
}

@media (max-width: 991px) {
    .ukc-left-panel {
        min-height: 400px;
        margin-bottom: 20px;
    }

    .ukc-heading {
        font-size: 28px;
    }

    .ukc-right-panel {
        padding: 20px;
    }
}


/* =====================================
MAIN DARK FOOTER
===================================== */
.cb-footer {
    background-color: #161719;
    color: #ffffff;
    padding: 80px 0 20px;
    font-size: 14px;
}

/* --- Column 1: Brand Info --- */
.cb-brand-logo {
    margin-bottom: 20px;
    transition: transform 0.3s ease;
}

.cb-brand-logo:hover {
    transform: scale(1.05);
}



.cb-about-text {
    color: #99a0a6;
    line-height: 1.7;
    margin-top: 25px;
    margin-bottom: 30px;
}

/* Social Icons */
.cb-social-wrap {
    display: flex;
    gap: 12px;
}

.cb-social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid #333;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* --- Hover Animation for Social Links --- */
.cb-social-link:hover {
    background-color: #d32f2f;
    border-color: #d32f2f;
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(211, 47, 47, 0.5);
}


/* --- Footer Links Columns --- */
.cb-footer-heading {
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 25px;
    color: #ffffff;
}

.cb-footer-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.cb-footer-list li {
    margin-bottom: 15px;
}

.cb-footer-link {
    color: #99a0a6;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
}

/* --- Hover Animation for Footer Links --- */
.cb-footer-link:hover {
    color: #ffffff;
    transform: translateX(8px);
    /* Slide Right */
}

/* Outline Icons (Discover Column) */
.icon-outline {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    border: 1px solid #d32f2f;
    color: #d32f2f;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.cb-footer-link:hover .icon-outline {
    background-color: #d32f2f;
    color: #ffffff;
    transform: rotate(360deg);
}

/* Solid Icons (Shop & Support Columns) */
.icon-solid {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background-color: #d32f2f;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.cb-footer-link:hover .icon-solid {
    background-color: #ffffff;
    color: #d32f2f;
    transform: scale(1.1);
}


/* --- Newsletter Column --- */
.cb-newsletter-text {
    color: #99a0a6;
    line-height: 1.6;
    margin-bottom: 20px;
}

.cb-input-group {
    position: relative;
    display: flex;
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

/* Glow effect on input focus */
.cb-input-group:focus-within {
    box-shadow: 0 0 15px rgba(211, 47, 47, 0.3);
    border-radius: 4px;
}

.cb-input {
    width: 100%;
    background-color: #242528;
    border: 1px solid #333;
    color: #fff;
    padding: 12px 15px;
    border-radius: 4px;
    outline: none;
    font-size: 13px;
    transition: all 0.3s ease;
}

.cb-input::placeholder {
    color: #666;
}

.cb-input:focus {
    border-color: #d32f2f;
}

.cb-btn-submit {
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    background-color: #d32f2f;
    color: #fff;
    border: none;
    padding: 0 20px;
    border-top-right-radius: 4px;
    border-bottom-right-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    overflow: hidden;
}

.cb-btn-submit i {
    transition: all 0.3s ease;
}

/* --- Hover Animation for Send Button --- */
.cb-btn-submit:hover {
    background-color: #b72525;
}

.cb-btn-submit:hover i {
    transform: translate(3px, -3px) scale(1.1);
    /* Flying paper plane effect */
}

.cb-privacy-note {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: #99a0a6;
    font-size: 12px;
    line-height: 1.5;
}

.cb-privacy-note i {
    color: #d32f2f;
    font-size: 16px;
    margin-top: 2px;
}


/* =====================================
WE ACCEPT (Payment Section)
===================================== */
.cb-payment-box {
    border: 1px solid #333;
    border-radius: 12px;
    padding: 30px;
    margin: 60px 0 40px;
    position: relative;
    text-align: center;
    transition: border-color 0.3s ease;
}

.cb-payment-box:hover {
    border-color: #d32f2f;
    /* Box border glows red slightly on hover */
}

.cb-payment-title {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #161719;
    padding: 0 15px;
    font-size: 14px;
    font-weight: 700;
    color: #ffffff;
    display: flex;
    align-items: center;
    gap: 8px;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

.cb-payment-box:hover .cb-payment-title {
    color: #d32f2f;
}

.cb-payment-title i {
    color: #c79c60;
}

.cb-payment-title::before,
.cb-payment-title::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 30px;
    height: 1px;
    background-color: #d32f2f;
    transition: width 0.3s ease;
}

.cb-payment-title::before {
    left: -30px;
}

.cb-payment-title::after {
    right: -30px;
}

.cb-payment-box:hover .cb-payment-title::before,
.cb-payment-box:hover .cb-payment-title::after {
    width: 40px;
    /* Red lines expand on hover */
}

/* Payment Logos Container */
.cb-pay-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

/* Individual Fake Logo Cards */
.cb-pay-card {
    background-color: #ffffff;
    border-radius: 6px;
    height: 35px;
    padding: 0 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
    min-width: 70px;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    cursor: pointer;
}

/* --- Hover Animation for Payment Cards --- */
.cb-pay-card:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.8);
}

/* Colors mimicking real logos */
.pay-visa {
    color: #1a1f71;
    font-style: italic;
    font-size: 18px;
}

.pay-mastercard {
    color: #eb001b;
}

.pay-rupay {
    color: #0f4a86;
    font-style: italic;
}

.pay-upi {
    color: #7a7a7a;
    font-style: italic;
    font-weight: 800;
}

.pay-upi span {
    color: #007a33;
}

.pay-paytm {
    color: #00b9f1;
}

.pay-gpay {
    color: #5f6368;
}

.pay-phonepe {
    color: #5f259f;
    font-size: 12px;
}

.pay-net {
    color: #00823b;
    font-size: 10px;
    line-height: 1.1;
    text-align: center;
}


/* =====================================
BOTTOM COPYRIGHT AREA
===================================== */
.cb-copyright-area {
    border-top: 1px solid #2a2a2a;
    padding-top: 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.cb-copy-text {
    color: #777;
    margin: 0;
    transition: color 0.3s ease;
}

.cb-copy-text:hover {
    color: #fff;
}

.cb-policy-links {
    display: flex;
    gap: 15px;
    align-items: center;
}

.cb-policy-links a {
    color: #99a0a6;
    text-decoration: none;
    position: relative;
    transition: color 0.3s;
}

/* --- Hover Underline Animation for Policy Links --- */
.cb-policy-links a::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 0;
    height: 1px;
    background-color: #d32f2f;
    transition: width 0.3s ease;
}

.cb-policy-links a:hover {
    color: #ffffff;
}

.cb-policy-links a:hover::after {
    width: 100%;
}

.cb-policy-links span {
    color: #d32f2f;
}

/* Scroll Top Button */
.cb-scroll-top {
    margin-right: 1.5rem;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid #d32f2f;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #d32f2f;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* --- Hover Animation for Scroll Up Button --- */
.cb-scroll-top:hover {
    background-color: #d32f2f;
    color: #ffffff;
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(211, 47, 47, 0.5);
}

/* Responsive */
@media (max-width: 991px) {
    .cb-feature-item::after {
        display: none;
    }

    .cb-copyright-area {
        flex-direction: column;
        text-align: center;
        justify-content: center;
    }

    .cb-brand-logo {
        text-align: left;
    }

    .cb-brand-tagline {
        justify-content: flex-start;
    }

    .cb-brand-tagline::before {
        display: none;
    }
}


::-webkit-scrollbar {
    width: 12px;

    height: 12px;
}

::-webkit-scrollbar-track {
    background: #0f1115;
    border-radius: 100px;
    box-shadow: inset 0 0 8px rgba(255, 255, 255, 0.03);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg,
            #f7c76b 0%,
            #d79b3d 50%,
            #9a6420 100%);
    border-radius: 1px;
    border: 2px solid #0f1115;
    transition: all .35s ease;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg,
            #ffd98c 0%,
            #e8b454 50%,
            #b97828 100%);

    box-shadow:
        0 0 12px rgba(247, 199, 107, .45),
        0 0 24px rgba(247, 199, 107, .25);
    border-radius: 1px;
    border-color: #161a20;
}

::-webkit-scrollbar-thumb:active {
    background: linear-gradient(180deg,
            #ffe6a8,
            #d79b3d);
}

::-webkit-scrollbar-corner {
    background: #0f1115;
}

.dropdown-toggle::after {
    color: #b7492f;
}

.m-bg {
    color: #111;
}


/* =========================================
        KITCHEN HEADER BLOCK (Nested)
        ========================================= */
.k-header-block {
    /* Padding hata di hai taaki parent section me easily fit ho jaye */
    width: 100%;
}

.k-tag {
    display: block;
    margin-bottom: 3px;
    font-size: 18px;
    font-weight: 500;
    line-height: 1;
    font-family: 'Poppins', sans-serif;
    color: #6f6f6f;
}

.k-main-title {
    margin: 0;
    font-weight: 400;
    font-family: 'Barlow', sans-serif;
    font-size: 36px;
    color: #b7492f;
    margin-top: 0.47rem;
    line-height: 1;
    margin-bottom: 0.22rem;
}

.k-main-title strong {
    font-weight: 700;
}

.k-description {
    font-size: 16px;
    color: #222222;
    line-height: 1.6;
    margin: 0;
    max-width: 95%;
}

/* Completely Matte/Flat Button (No Gloss) */
.k-btn-show {
    background-color: #b7492f;
    color: #ffffff;
    border: none;
    padding: 12px 15px 12px 12px;
    font-size: 15px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    text-decoration: none;
}

.k-btn-show:hover {
    background-color: #000000;
    color: #ffffff;
}

.k-btn-show i {
    font-size: 18px;
    transform: rotate(-45deg);
}

/* Responsive Adjustments */
@media (max-width: 991px) {
    .k-main-title {
        font-size: 36px;
    }

    .k-description {
        margin-top: 25px;
        margin-bottom: 25px;
        max-width: 100%;
    }

    .k-btn-container {
        text-align: left !important;
    }
}

.fp-header-section {
    padding: 27px 0 5px 0;
    text-align: center;
    margin-top: 1.1rem;
}

.fp-subtitle {
    font-size: 18px;
    font-weight: 500;
    line-height: 1;
    font-family: 'Poppins', sans-serif;
    color: #6f6f6f;
    background: #fff;
    position: relative;
    z-index: 1;
    width: max-content;
    text-align: center;
    margin: auto;
    padding: 0 14px;
    text-transform: uppercase;
}

/* --- Main Title --- */
.fp-title {
    font-family: 'Barlow', sans-serif;
    font-size: 36px;
    color: #b7492f;
    margin-top: 0.47rem;
    line-height: 1;
}

/* Bold text for 'Products' */
.fp-title strong {
    font-weight: 700;
}

/* --- Responsive Adjustments --- */
@media (max-width: 768px) {
    .fp-subtitle {
        font-size: 34px;
        margin-bottom: -5px;
    }

    .fp-title {
        font-size: 32px;
    }
}

.fb-sub {
    margin: 0;
    width: 26%;
    border-top: 1px solid;
    position: absolute;
    top: 40px;
    left: 50%;
    transform: translateX(-50%);
    border-color: #b52525;
}



/* --- Fixed Wrapper on Right Side --- */
.widget-wrapper {
    position: fixed;
    right: 15px;
    bottom: 2%;
    z-index: 99;
}

/* Halftone dotted pattern - Ultra Small */
.halftone-pattern {
    position: absolute;
    right: -15px;
    top: 10%;
    bottom: 10%;
    width: 35px;
    background: linear-gradient(to bottom, #1a8cff, #25D366, #ff7a00);
    -webkit-mask-image: radial-gradient(circle, black 0.8px, transparent 1.2px);
    -webkit-mask-size: 6px 6px;
    mask-image: radial-gradient(circle, black 0.8px, transparent 1.2px);
    mask-size: 6px 6px;
    opacity: 0.4;
    z-index: -1;
}

/* Ultra Small White Pill Container */
.contact-pill {
    background-color: #ffffff;
    border-radius: 100px;
    padding: 7px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08), 0 2px 8px rgba(0, 0, 0, 0.04);
    width: 45px;
}

.contact-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3px;
    /* Text aur icon almost touch honge */
    cursor: pointer;
    text-decoration: none;
    width: 100%;
}

/* Ultra Small Icon Container */
.icon-group {
    position: relative;
    width: 34px;
    height: 34px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.icon-arc {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 50%;
    border: 1.5px solid transparent;
    transition: transform 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

/* Ultra Small Main Circle */
.icon-circle {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #ffffff;
    font-size: 11px;
    /* Icon size ekdum mini */
    border: 1.5px solid #ffffff;
    /* Border thik point par */
    z-index: 2;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Ultra Small Text Label */
.icon-label {
    font-size: 8px;
    /* Sabse chota readable font */
    font-weight: 600;
    color: #0b1c3f;
    transition: color 0.3s ease;
    text-transform: uppercase;
    line-height: 1;
}

/* --- Blue Icon Styling --- */
.icon-group.blue .icon-arc {
    border-top-color: #007bff;
    border-left-color: #007bff;
    transform: rotate(-15deg);
}

.icon-group.blue .icon-circle {
    background: linear-gradient(135deg, #1a8cff, #005ce6);
    box-shadow: 0 4px 8px -2px rgba(0, 92, 230, 0.4);
}

/* --- Green Icon Styling --- */
.icon-group.green .icon-arc {
    border-top-color: #25D366;
    border-left-color: #25D366;
    transform: rotate(-45deg);
}

.icon-group.green .icon-circle {
    background: linear-gradient(135deg, #34d363, #15a840);
    box-shadow: 0 4px 8px -2px rgba(21, 168, 64, 0.4);
}

/* --- Orange Icon Styling --- */
.icon-group.orange .icon-arc {
    border-top-color: #ff7a00;
    border-left-color: #ff7a00;
    transform: rotate(-75deg);
}

.icon-group.orange .icon-circle {
    background: linear-gradient(135deg, #ff9500, #e65c00);
    box-shadow: 0 4px 8px -2px rgba(230, 92, 0, 0.4);
}

/* --- Separator Line --- */
.divider {
    width: 40%;
    height: 1px;
    background-color: #f0f0f0;
    border-radius: 2px;
}

/* --- Hover Animations --- */
.contact-item:hover .icon-circle {
    transform: scale(1.1);
}

.contact-item:hover .icon-group.blue .icon-circle {
    box-shadow: 0 6px 12px -2px rgba(0, 92, 230, 0.5);
}

.contact-item:hover .icon-group.green .icon-circle {
    box-shadow: 0 6px 12px -2px rgba(21, 168, 64, 0.5);
}

.contact-item:hover .icon-group.orange .icon-circle {
    box-shadow: 0 6px 12px -2px rgba(230, 92, 0, 0.5);
}

.contact-item:hover .icon-label {
    color: #1a8cff;
}

.contact-item:hover .icon-group.blue .icon-arc {
    transform: rotate(165deg);
}

.contact-item:hover .icon-group.green .icon-arc {
    transform: rotate(135deg);
}

.contact-item:hover .icon-group.orange .icon-arc {
    transform: rotate(105deg);
}

/* --- Mobile Responsiveness --- */
@media (max-width: 576px) {
    .widget-wrapper {
        right: 5px;
        /* Mobile par screen ke ekdum chipta hua */
    }

    .contact-pill {
        padding: 8px 4px;
        width: 42px;
    }

    .icon-group {
        width: 30px;
        height: 30px;
    }

    .icon-circle {
        width: 22px;
        height: 22px;
        font-size: 10px;
        border-width: 1px;
    }

    .icon-label {
        font-size: 7px;
    }

    /* Micro font for mobile */
    .halftone-pattern {
        display: none;
    }

    /* Mobile par background hide kar diya clean look ke liye */
}



.cat-header-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    padding: 0;
    border-bottom: 1px solid transparent;
}

/* --- Left Side: Titles --- */
.cat-subtitle-wrap {
    display: flex;
    align-items: center;
    margin-bottom: -5px;
    /* Pulls the main title closer to cursive text */
}

.cat-subtitle {
    font-size: 18px;
    font-weight: 500;
    line-height: 1;
    font-family: 'Poppins', sans-serif;
    color: #6f6f6f;
}

.cat-line {
    width: 60px;
    height: 1px;
    background-color: #d19f9a;
    /* Light reddish line */
    margin-left: 15px;
    display: inline-block;
}

.cat-title {

    font-weight: 400;
    font-family: 'Barlow', sans-serif;
    font-size: 36px;
    color: #b7492f;
    margin-top: 0.47rem;
    line-height: 1;
    margin-bottom: 0.22rem;
}

.cat-title strong {
    font-weight: 700;
    /* Bold weight for 'CATEGORY' */
}

/* --- Right Side: Navigation Buttons --- */
.cat-nav-wrap {
    display: flex;
    gap: 15px;
    margin-bottom: 8px;
    /* Tweak to align perfectly with the title baseline */
}

.cat-nav-btn {
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    transition: transform 0.3s ease, opacity 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cat-nav-btn:hover {
    transform: scale(1.1);
    /* Slight zoom on hover */
    opacity: 0.8;
}

/* --- Responsive Adjustments --- */
@media (max-width: 768px) {
    .cat-header-wrapper {
        flex-direction: column;
        align-items: flex-start;
        gap: 25px;
    }

    .cat-title {
        font-size: 28px;
    }

    .cat-subtitle {
        font-size: 28px;
    }

    .cat-line {
        width: 40px;
    }
}

.search-container {
    display: flex;
    margin-right: 2rem;
    width: 22rem;
    background-color: #ffffff;
    box-sizing: border-box;
    transition: border-color 0.3s ease;
}

.icon svg {
    width: 18px;
}

/* Hover and Focus State for Search Bar */
.search-container:hover,
.search-container:focus-within {
    border-color: #dd6b43;
    /* Changes to match button color */
}

/* --- Input Field --- */
.search-input {
    flex-grow: 1;
    border: none;
    padding: 14px 12px;
    font-size: 12px;
    color: #333333;
    outline: none;
    background: transparent;
    font-family: 'Poppins', sans-serif;
    border: 1px solid #e0e0e0;
}

/* Placeholder styling */
.search-input::placeholder {
    color: #999999;
    opacity: 1;
}

/* --- Orange Search Button --- */
.search-btn {
    background-color: #b7492f;
    border: none;
    width: 50px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease;
}

.search-btn:hover {
    background-color: #c45a35;
    /* Darker orange on hover */
}

/* Custom SVG Icon */
.search-btn svg {
    stroke: #ffffff;
    width: 20px;
    height: 20px;
}


.dropdown-toggle::after {
    right: 17px;
    top: 1.77rem;
    position: absolute;
}

.header-icons .cart-icon {
    width: 45px;
    height: 45px;
    font-size: 18px;
    color: #969696;
    cursor: pointer;
    position: relative;
    margin-left: 12px;
    transition: transform 0.2s ease, color 0.2s ease;
    border: 1px solid #969696;
    border-radius: 50%;
    /* padding: 8px 13px; */
}

.header-icons .cart-icon svg {
    padding: 12px 11px;
}

.masters img {
    position: absolute;
    bottom: 0;
    width: 140px;
    z-index: -1;
    left: 0;
}

.sunglass-swiper {
    width: 100%;
    padding: 20px 0;
}

/* --- RECIPE SWIPER (.sg-card) STYLES --- */
.sg-card {
    position: relative;
    width: 100%;
    height: 280px;
    background-color: #0f172a;
    border-radius: 0;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* Unique class for Cook Healthy video section to have taller videos */
.recipe-video-card {
    height: 480px !important;
}

/* Background Video */
.sg-bg-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.5s ease;
}

/* Subtle zoom on hover */
.sg-card:hover .sg-bg-video {
    transform: scale(1.05);
}

/* Dark Gradient Overlay */
.sg-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 16px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.4) 75%, transparent 100%);
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 2;
}

.sg-info-row {
    display: flex;
    align-items: center;
    gap: 12px;
}

/* White Square Thumbnail */
.sg-thumb {
    width: 52px;
    height: 52px;
    flex-shrink: 0;
    border-radius: 0;
    overflow: hidden;
    background-color: #ffffff;
    padding: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sg-thumb img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

/* Text Details */
.sg-text {
    flex: 1;
    min-width: 0;
    color: #ffffff;
    line-height: 1.4;
}

.sg-title {
    color: #ffffff;
    font-size: 14px;
    font-weight: 700;
    margin: 0 0 2px 0;
    white-space: normal;
    word-break: break-word;
    line-height: 1.3;
}

.sg-price {
    color: #f6c01e;
    font-size: 13px;
    font-weight: 700;
    margin: 0;
}

.sg-old-price {
    color: #94a3b8;
    text-decoration: line-through;
    font-size: 11px;
    font-weight: 500;
    margin-left: 4px;
}

/* Add to Cart Button */
.sg-btn {
    width: 100%;
    background-color: #b7492f;
    color: #ffffff;
    border: none;
    border-radius: 0;
    padding: 14px 14px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-align: center;
    transition: background-color 0.3s ease;
}

.sg-btn:hover {
    background-color: #8c2a13;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .sg-thumb {
        width: 50px;
        height: 50px;
    }

    .sg-title {
        font-size: 12px;
    }

    .sg-price,
    .sg-old-price,
    .sg-btn {
        font-size: 11px;
    }
}



.banner-countdown {
    background-image: url(../img/banner-2.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    padding-top: 24px;
    padding-bottom: 24px;
}

.banner-countdown .col-right {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

@media (min-width: 1200px) {
    .banner-countdown .col-right {
        margin-left: -6px;
    }
}

.clip-text-bg-vertical {
    -webkit-animation: BackgroundAnimatedVertical 10s linear infinite;
    -moz-animation: BackgroundAnimatedVertical 10s linear infinite;
    -ms-animation: BackgroundAnimatedVertical 10s linear infinite;
    -o-animation: BackgroundAnimatedVertical 10s linear infinite;
    animation: BackgroundAnimatedVertical 10s linear infinite;
}

@keyframes BackgroundAnimatedVertical {
    0% {
        background-position: 50% 0;
    }

    100% {
        background-position: 50% 100%;
    }
}

.countdown-v03 .countdown__timer {
    display: flex;
    align-items: center;
    gap: 12px;
}

.countdown-v03 .countdown__item {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    aspect-ratio: 1;
    background: #ffffff;
    border-radius: 8px;
    /* max-width: 72px; */
    width: 100%;
    padding: 10px;
    width: 79px;
    height: 76px;
}

.tf-btn.btn-stroke-white {
    border: 1px solid #ffffff;
    background: transparent;
}

.tf-btn {
    margin-left: 2rem;
    color: #fff;
    padding: 9px 15px;
    text-decoration: none;
}

.title-xxl {
    font-size: 27px;
    font-family: 'Barlow', sans-serif;
}


.sm-header-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.sm-tag {
    font-size: 13px;
    font-weight: 500;
    color: #333;
    margin-bottom: 5px;
}

.sm-title {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    color: #111;
    margin: 0 0 10px 0;
    font-weight: 400;
    letter-spacing: 1px;
}

.sm-subtitle {
    font-size: 14px;
    color: #556270;
    margin: 0;
}

.insta-widget-box {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 15px 40px;
    border: 1px solid #e5e5e5;
    background-color: #ffffff;
    text-decoration: none;
    color: #111;
    transition: box-shadow 0.3s ease;
}

.insta-widget-box:hover {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    color: #111;
}

.insta-count {
    position: absolute;
    top: 5px;
    right: 8px;
    font-size: 11px;
    color: #777;
}

.insta-label {
    font-size: 15px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
}

.insta-label i {
    font-size: 16px;
}

/* --- Swiper Slider Section --- */
.sm-swiper-container {
    width: 100%;
    padding: 20px 0;
}

.sg-card {
    position: relative;
    width: 100%;
    aspect-ratio: 9 / 16;
    /* Tall portrait ratio for posters */
    background-color: #111;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.sg-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.sg-card:hover .sg-bg-img {
    transform: scale(1.05);
}

.sg-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 40%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.7) 40%, rgba(0, 0, 0, 0) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 15px;
    z-index: 2;
}

.insta-handle {
    font-size: 12px;
    font-weight: 500;
    color: #ffffff;
    margin-bottom: 5px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.insta-handle i {
    font-size: 14px;
}

.poster-title {
    font-size: 14px;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Responsive Adjustments */
@media (max-width: 991px) {
    .sm-header-wrapper {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }
}

@media (max-width: 576px) {
    .sm-title {
        font-size: 32px;
    }

    .sg-card {
        aspect-ratio: 9 / 14;
        /* Slightly shorter aspect ratio for mobile */
    }
}



.search-btn:hover {
    background-color: #66921b;
}

@media (min-width: 768px) {
    .ps-md-6 {
        padding-left: 4rem !important;
    }

    .ps-md-10 {
        padding-left: 8rem !important;
    }

    .ps-md-15 {
        padding-left: 12rem !important;
    }
}

.product-card .img-wrapper .carousel {
    width: 100%;
    height: 100%;
}

.product-card .img-wrapper .carousel-inner,
.product-card .img-wrapper .carousel-item {
    width: 100%;
    height: 100%;
}

.product-card .img-wrapper .carousel-item a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.product-card .img-wrapper .carousel-item img {
    max-width: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    mix-blend-mode: multiply;
}

.custom-carousel-control {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #ffffff;
    border: 1px solid #e0e0e0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    color: #333;
    cursor: pointer;
    z-index: 10;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.product-card:hover .custom-carousel-control,
.img-wrapper:hover .custom-carousel-control {
    opacity: 1;
    visibility: visible;
}

.custom-carousel-control:hover {
    background: #8a2820;
    color: #ffffff;
    border-color: #8a2820;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 4px 12px rgba(138, 40, 32, 0.3);
}

.custom-carousel-control.prev {
    left: 8px;
}

.custom-carousel-control.next {
    right: 8px;
}

.product-title a,
.na-product-title a,
.csm-product-title a,
.ukc-card-title a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s ease;
}

.product-title a:hover,
.na-product-title a:hover,
.csm-product-title a:hover,
.ukc-card-title a:hover {
    color: #8a2820;
}

.banner-countdown {
    margin-top: 2rem;
}

/* --- LIMITED TIME OFFER BANNER STYLES & ANIMATIONS --- */
.countdown-banner-inner {
    position: relative;
    border-radius: 16px;
    padding: 4px 5px;
    overflow: hidden;
    max-width: 100%;
}


.countdown-banner-inner::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 60%);
    animation: rotateBgGlow 15s linear infinite;
    pointer-events: none;
}

@keyframes rotateBgGlow {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.countdown-badge {
    display: inline-flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(8px);
    color: #f6c01e;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1.5px;
    padding: 6px 14px;
    border-radius: 20px;
    border: 1px solid rgba(246, 192, 30, 0.4);
    animation: pulseBadge 2s infinite ease-in-out;
}

@keyframes pulseBadge {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

.title-xxl {
    font-size: clamp(22px, 3.5vw, 32px);
    font-weight: 800;
    letter-spacing: -0.5px;
    line-height: 1.25;
    word-break: break-word;
    overflow-wrap: break-word;
}

.desc {
    word-break: break-word;
    overflow-wrap: break-word;
    max-width: 100%;
    line-height: 29px;
}

.countdown-box-wrap {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    max-width: 100%;
}

.countdown-item-card {
    background: rgba(255, 255, 255, 0.14);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: 12px;
    padding: 10px 14px;
    min-width: 62px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}

.countdown-item-card:hover {
    transform: translateY(-4px);
    background: rgba(255, 255, 255, 0.25);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.cd-number {
    display: block;
    font-size: 24px;
    font-weight: 800;
    color: #ffffff;
    line-height: 1;
}

.cd-unit {
    display: block;
    font-size: 10px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.75);
    letter-spacing: 1px;
    margin-top: 4px;
}

.cd-colon {
    font-size: 22px;
    font-weight: 800;
    color: #ffffff;
    opacity: 0.8;
}

.countdown-btn {
    background-color: #ffffff;
    color: #1b263b;
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 14px 24px;
    border-radius: 30px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.2);
    transition: all 0.35s cubic-bezier(0.25, 1, 0.5, 1);
    white-space: nowrap;
}

.countdown-btn:hover {
    background-color: #f6c01e;
    color: #000000;
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 10px 25px rgba(246, 192, 30, 0.4);
}

.countdown-btn i {
    transition: transform 0.3s ease;
}

.countdown-btn:hover i {
    transform: translateX(5px);
}



/* --- MEGA MENU SWIPER STYLES --- */
.mega-menu-swiper {
    position: relative;
    padding-bottom: 25px;
}

.mega-menu-swiper .swiper-slide img {
    border-radius: 10px;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
    object-fit: cover;
    height: 311px;
    width: 100%;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.mega-menu-swiper .swiper-slide:hover img {
    transform: scale(1.03);
}

.mega-swiper-pagination .swiper-pagination-bullet-active {
    background-color: #b7492f !important;
}

.swiper-pagination-bullets.swiper-pagination-horizontal,
.swiper-pagination-custom,
.swiper-pagination-fraction {
    bottom: var(--swiper-pagination-bottom, 9px);
}

/* --- UNIQUE CULINARY AUTH MODAL STYLES --- */
.modal-backdrop.show {
    backdrop-filter: blur(10px);
    background-color: rgba(15, 23, 42, 0.7);
}

.auth-unique-card {
    border-radius: 28px !important;
    box-shadow: 0 30px 60px -12px rgba(15, 23, 42, 0.4) !important;
}

/* Left Brand Side */
.auth-unique-brand {
    background: linear-gradient(155deg, #131a29 0%, #2a1612 50%, #b84c33 130%);
    position: relative;
    overflow: hidden;
}

.auth-unique-brand::before {
    content: '';
    position: absolute;
    bottom: -60px;
    left: -60px;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(246, 192, 30, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.auth-unique-logo {
    filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.3));
}

.auth-unique-badge {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: #ffffff;
    font-size: 11px;
    letter-spacing: 0.5px;
}

.auth-perk-item {
    padding: 7px 11px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    transition: transform 0.3s ease, background 0.3s ease;
}

.auth-perk-item:hover {
    transform: translateX(5px);
    background: rgba(255, 255, 255, 0.12);
}

.perk-icon-wrap {
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    flex-shrink: 0;
}

.extra-small {
    font-size: 11px;
}

/* Close Button */
.auth-unique-close {
    background-color: #f1f5f9;
    border-radius: 50%;
    padding: 10px;
    opacity: 0.85;
    transition: all 0.25s ease;
}

.auth-unique-close:hover {
    opacity: 1;
    background-color: #e2e8f0;
    transform: rotate(90deg) scale(1.1);
}

/* Unique Header Pills Tabs for Login & Register */
.auth-tab-login-btn,
.auth-tab-register-btn {
    border-radius: 20px;
    color: #64748b;
    font-weight: 700;
    font-size: 12px;
    padding: 6px 16px;
    transition: all 0.25s ease;
    background: #f1f5f9;
    border: 1px solid #1e1e1e2e;
}

.auth-tab-login-btn.active,
.auth-tab-register-btn.active {
    background-color: #b84c33;
    color: #ffffff;
    box-shadow: 0 4px 12px rgba(184, 76, 51, 0.3);
}

/* Individual Unique Tab Overrides */
.auth-tab-login-btn:hover:not(.active) {
    color: #b84c33;
    background: #fcefe8;
}

.auth-tab-register-btn:hover:not(.active) {
    color: #1e293b;
    background: #e2e8f0;
}

/* Login Mode Toggle Pills (OTP vs Password) */
.login-mode-toggle {
    background-color: #f8fafc;
}

.pill-toggle-btn {
    font-size: 11px;
    font-weight: 700;
    color: #64748b;
    border: none;
    transition: all 0.2s ease;
}

.pill-toggle-btn.active {
    background-color: #1e293b !important;
    color: #ffffff !important;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}

/* Neo-Pill Input Group */
.neo-input-group {
    position: relative;
    display: flex;
    align-items: center;
}

.neo-input-icon {
    position: absolute;
    left: 8px;
    width: 36px;
    height: 36px;
    background-color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.06);
    z-index: 5;
    font-size: 14px;
}

.neo-control {
    border-radius: 50px !important;
    border: 1.5px solid #e2e8f0;
    background-color: #f8fafc;
    padding-left: 52px !important;
    padding-top: 12px;
    padding-bottom: 12px;
    font-size: 13.5px;
    height: 48px;
    transition: all 0.25s ease;
}

.neo-control:focus {
    background-color: #ffffff;
    border-color: #b84c33;
    box-shadow: 0 0 0 4px rgba(184, 76, 51, 0.15);
}

.neo-pass-toggle {
    position: absolute;
    right: 12px;
    background: transparent;
    border: none;
    color: #94a3b8;
    z-index: 5;
}

.neo-pass-toggle:hover {
    color: #1e293b;
}

/* Custom Checkbox */
.unique-checkbox {
    width: 17px;
    height: 17px;
    border-radius: 4px;
    border: 1.5px solid #cbd5e1;
    cursor: pointer;
}

.unique-checkbox:checked {
    background-color: #b84c33;
    border-color: #b84c33;
}

/* Action Submit Button */
.auth-pill-submit {
    background: linear-gradient(135deg, #b84c33 0%, #983d27 100%);
    color: #ffffff;
    border: none;
    border-radius: 50px;
    font-size: 13px;
    letter-spacing: 0.5px;
    box-shadow: 0 8px 24px rgba(184, 76, 51, 0.35);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.submit-arrow-badge {
    width: 28px;
    height: 28px;
    background: rgba(255, 255, 255, 0.25);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    transition: transform 0.3s ease;
}

.auth-pill-submit:hover {
    background: linear-gradient(135deg, #983d27 0%, #7c2d1b 100%);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(184, 76, 51, 0.45);
}

.auth-pill-submit:hover .submit-arrow-badge {
    transform: translateX(4px);
    background: rgba(255, 255, 255, 0.35);
}

.auth-gold-link {
    color: #b84c33;
    transition: color 0.2s ease;
}

.auth-gold-link:hover {
    color: #983d27;
    text-decoration: underline !important;
}

/* Unique Divider */
.auth-divider-unique {
    display: flex;
    align-items: center;
    text-align: center;
    color: #94a3b8;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1.5px;
}

.auth-divider-unique::before,
.auth-divider-unique::after {
    content: '';
    flex: 1;
    border-bottom: 1.5px dashed #e2e8f0;
}

.auth-divider-unique span {
    padding: 0 12px;
}

/* Google Button */
.auth-google-btn {
    background-color: #ffffff;
    border: 1.5px solid #e2e8f0;
    color: #1e293b;
    border-radius: 50px;
    transition: all 0.25s ease;
}

.auth-google-btn:hover {
    background-color: #f8fafc;
    border-color: #cbd5e1;
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.06);
}

.auth-header-pills {
    gap: 8px;
}

.best-sellers {
    padding-top: 3.5rem;
}

/* --- ULTRA-MODERN SEARCH AUTO-SUGGEST DROPDOWN BOX STYLES --- */
.search-suggest-box {
    position: absolute;
    top: calc(100% + 0px);
    right: -1px;
    width: 353px;
    z-index: 1050;
    background: #ffffff;
    /* border-radius: 20px !important; */
    border: 1px solid rgba(226, 232, 240, 0.9) !important;
    box-shadow: 0 25px 50px -12px rgba(15, 23, 42, 0.22) !important;
    animation: suggestSlideDown 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes suggestSlideDown {
    from {
        opacity: 0;
        transform: translateY(-10px) scale(0.98);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.suggest-pill-tag {
    background-color: #f8fafc;
    color: #475569;
    font-size: 11px;
    font-weight: 600;
    padding: 6px 12px;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid #e2e8f0;
}

.suggest-pill-tag:hover {
    background: linear-gradient(135deg, #b84c33 0%, #983d27 100%);
    color: #ffffff;
    border-color: #b84c33;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(184, 76, 51, 0.25);
}

.suggest-product-card {
    transition: all 0.25s ease;
    border: 1px solid transparent;
}

.suggest-product-card:hover {
    background-color: #f8fafc;
    border-color: #e2e8f0;
    transform: translateX(4px);
}

.suggest-img-wrap {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #e2e8f0;
    background: #ffffff;
}

.suggest-img-wrap img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.suggest-arrow-icon {
    transition: transform 0.2s ease, color 0.2s ease;
}

.suggest-product-card:hover .suggest-arrow-icon {
    transform: translateX(3px);
    color: #b84c33 !important;
}

.suggest-footer-link {
    color: #b84c33 !important;
    transition: all 0.2s ease;
}

.suggest-footer-link:hover {
    color: #983d27 !important;
    letter-spacing: 0.3px;
}

.instagram {
    padding: 2rem 0.1rem;
}

/* --- Modern Hero Slider Animations --- */
.hero-slider .carousel-fade .carousel-item {
    transition: opacity 1.5s ease-in-out;
    /* Smooth, elegant fade */
}

.hero-slider .carousel-item img {
    transform: scale(1);
    transition: transform 7s ease-in-out;
    /* Ken Burns zoom effect */
}

.hero-slider .carousel-item.active img {
    transform: scale(1.06);
    /* Zooms in slightly while active */
}

/* Modern Arrow Styles & Hover */
.hero-slider .custom-arrow {
    width: 50px;
    height: 50px;
    background: #fff;
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.9;
    transition: all 0.3s ease;
    border: none;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

.hero-slider .custom-arrow span {
    color: #b7492f;
    font-size: 20px;
    transition: transform 0.3s ease, color 0.3s ease;
    display: flex;
}

.hero-slider .carousel-control-prev.custom-arrow {
    left: 20px;
}

.hero-slider .carousel-control-next.custom-arrow {
    right: 20px;
}

.hero-slider .custom-arrow:hover {
    background-color: #b7492f !important;
    opacity: 1 !important;
    box-shadow: 0 5px 15px rgba(183, 73, 47, 0.4);
}

.hero-slider .custom-arrow:hover span {
    color: #fff !important;
    transform: scale(1.1);
}


/* ==========================================================================
   Product Listing Section Styles (Prefixed with .pl-)
   ========================================================================== */

/* Layout & Spacing */
.pl-section {
    background-color: #f8f9fa;
    padding-top: 3rem;
    padding-bottom: 3rem;
}

/* Sidebar */
.pl-sidebar {
    background-color: transparent;
    border-radius: 0;
    padding: 0 1rem 0 0;
    box-shadow: none;
    position: sticky;
    top: 100px;
}

/* Search Box */
.pl-search-input {
    background-color: #f8f9fa;
    border: 1px solid #dee2e6;
    border-left: none;
}

.pl-search-input:focus {
    box-shadow: none;
    border-color: #b7492f;
}

.pl-search-icon {
    background-color: #f8f9fa;
    border: 1px solid #dee2e6;
    border-right: none;
    color: #6c757d;
}

/* Premium Category List */
.pl-category-list {
    list-style: none;
    padding: 0;
    margin: 0;
    overflow: hidden;
}

.pl-category-item {
    margin-bottom: 0;
    border-bottom: 1px solid #e9ecef80;
}

.pl-category-item:last-child {
    border-bottom: none;
}

.pl-category-link {
    display: flex;
    align-items: center;
    color: #495057;
    text-decoration: none;
    padding: 0.6rem 0rem;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.2s ease;
}

.pl-category-link:hover,
.pl-category-link.active {
    background-color: transparent;
    color: #b7492f;
    padding-left: 0.5rem;
}

.pl-category-link i {
    margin-right: 0.35rem;
    font-size: 0.85rem;
    color: #9ba3af;
    transition: color 0.2s ease;
    width: 24px;
    text-align: center;
}

.pl-category-link:hover i,
.pl-category-link.active i {
    color: #b7492f;
}

/* Product Card */
.pl-product-card {
    height: 100%;
    border: none;
    border-radius: 1rem;
    position: relative;
    background-color: #fff;
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
    transition: transform 0.3s, box-shadow 0.3s;
}

.pl-product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    z-index: 20;
}

.pl-product-img-wrap {
    background-color: #f8f9fa;
    text-align: center;
    position: relative;
    overflow: hidden;
    height: 257px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-top-left-radius: 1rem;
    border-top-right-radius: 1rem;
}

.pl-product-img {
    height: 256px;
    max-width: 100%;
    max-height: 90%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.pl-product-card:hover .pl-product-img {
    transform: scale(1.1);
}

/* Badges & Buttons */
.pl-badge-discount {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background-color: #dc3545;
    color: #fff;
    padding: 0.25em 0.65em;
    font-size: 0.55em;
    font-weight: 700;
    border-radius: 50rem;
    z-index: 2;
}

.pl-wishlist-btn {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background-color: #fff;
    color: #6c757d;
    border: none;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
    z-index: 2;
    transition: background-color 0.2s, color 0.2s, transform 0.2s;
}

/* Card Thumbnails (Hover) */
.pl-card-thumbs {
    position: absolute;
    top: 0.7rem;
    right: 0.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    z-index: 2;
    opacity: 0;
    transform: translateX(10px);
    transition: all 0.3s ease;
}

.pl-product-card:hover .pl-card-thumbs {
    opacity: 1;
    transform: translateX(0);
}

.pl-card-thumb-item {
    width: 35px;
    height: 35px;
    border: 1px solid #dee2e6;
    border-radius: 4px;
    background-color: #fff;
    cursor: pointer;
    overflow: hidden;
    padding: 2px;
}

.pl-card-thumb-item img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.pl-card-thumb-item:hover {
    border-color: #111;
}

.pl-wishlist-btn:hover {
    background-color: #b7492f;
    color: #fff;
    transform: scale(1.1);
}

.pl-card-body {
    padding: 10px 0.8rem;
    display: flex;
    flex-direction: column;
    background-color: #fff;
    border-bottom-left-radius: 1rem;
    border-bottom-right-radius: 1rem;
}

/* Typography & Details */
.pl-product-title {
    font-size: 1rem;
    font-weight: 400;
    margin-bottom: 0.1rem;
}

.pl-product-title a {
    color: #212529;
    text-decoration: none;
    transition: color 0.2s;
}

.pl-product-title a:hover {
    color: #b7492f;
}

.pl-rating-wrap {
    font-size: 0.68rem;
    margin-bottom: 0.45rem;
}

.pl-star-icon {
    color: #ffc107;
}

.pl-review-count {
    color: #6c757d;
    margin-left: 0.5rem;
}

.pl-product-desc {
    color: #6c757d;
    font-size: 0.875rem;
    margin-bottom: 1rem;
    line-height: 1.5;
}

.pl-price-wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.pl-price-current {
    font-size: 0.999rem;
    font-weight: 500;
    color: #b7492f;
}

.pl-price-old {
    color: #6c757d;
    text-decoration: line-through;
    font-size: 0.9rem;
}

/* Action Buttons */
.pl-action-btns {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: #fff;
    padding: 0 0.9rem 12px 0.9rem;
    display: flex;
    gap: 0.5rem;
    border-radius: 0 0 1rem 1rem;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);

    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    z-index: 10;
}

.pl-product-card:hover .pl-action-btns {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

@media (max-width: 575.98px) {
    .pl-action-btns {
        flex-direction: column;
    }
}

.pl-btn-cart {
    flex: 1;
    font-weight: 600;
    padding: 0.5rem;
    border-radius: 0.375rem;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.875rem;
    cursor: pointer;
}

.pl-btn-cart {
    border: none;
    background-color: #b7492f;
    color: #ffffff;
}

.pl-btn-cart:hover {
    background-color: #212529;
    color: #fff;
}


/* Filter Checkboxes & Grouping */
.pl-filter-group {
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #e9ecef;
}

.pl-filter-group:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.pl-filter-heading {
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #212529;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.pl-checkbox-label {
    display: flex;
    align-items: center;
    color: #495057;
    font-size: 0.95rem;
    cursor: pointer;
    margin-bottom: 0.8rem;
    transition: color 0.2s;
}

.pl-checkbox-label:hover {
    color: #b7492f;
}

/* Custom Checkbox Design */
.pl-checkbox-input {
    appearance: none;
    -webkit-appearance: none;
    width: 1.25rem;
    height: 1.25rem;
    border: 2px solid #dee2e6;
    border-radius: 0.25rem;
    margin-right: 0.75rem;
    cursor: pointer;
    position: relative;
    transition: all 0.2s ease;
    background-color: #fff;
    flex-shrink: 0;
}

.pl-checkbox-input:checked {
    background-color: #b7492f;
    border-color: #b7492f;
}

.pl-checkbox-input:checked::after {
    content: '';
    position: absolute;
    left: 5px;
    top: 2px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.pl-checkbox-label:hover .pl-checkbox-input:not(:checked) {
    border-color: #b7492f;
}

/* Pill Styles */
.pl-price-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.pl-price-pill {
    cursor: pointer;
    margin: 0;
}

.pl-pill-input {
    display: none;
}

.pl-pill-text {
    display: inline-block;
    padding: 0.45rem 0.8rem;
    font-size: 0.85rem;
    font-weight: 500;
    color: #495057;
    background-color: #fff;
    border: 1px solid #dee2e6;
    border-radius: 2rem;
    transition: all 0.2s ease;
}

.pl-price-pill:hover .pl-pill-text {
    border-color: #b7492f;
    color: #b7492f;
}

.pl-pill-input:checked+.pl-pill-text {
    background-color: #b7492f;
    color: #fff;
    border-color: #b7492f;
    box-shadow: 0 0.25rem 0.5rem rgba(183, 73, 47, 0.2);
}

.pl-filter-group h5 {
    font-family: 'Barlow', sans-serif;
    font-size: 24px;
    letter-spacing: 0.5px;
}

.cb-modern-banner-breadcrumb {
    background: url(../img/about-inner.png) center center / cover no-repeat;
    padding: 40px 0px;
    min-height: 191px;
    display: flex;
    align-items: center;
}

.banner-breadcrumb-nav {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    max-width: 100%;
    overflow-x: auto;
    white-space: nowrap;
}

/* Hide scrollbar for neatness */
.banner-breadcrumb-nav::-webkit-scrollbar {
    display: none;
}

.banner-breadcrumb-nav {
    background: #0000008c;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.tree-link-style {
    font-size: 13px;
}

.tree-link-style .breadcrumb-item+.breadcrumb-item::before {
    content: "\f101";
    /* FontAwesome angle-double-right */
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    color: rgba(255, 255, 255, 0.8);
    font-size: 11px;
    vertical-align: middle;
    margin: 0 8px;
}

.hover-gold {
    transition: all 0.3s ease;
}

.hover-gold:hover {
    color: #ffc107 !important;
    text-shadow: 0 0 5px rgba(255, 193, 7, 0.5);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .cb-modern-banner-breadcrumb {
        padding: 60px 0;
        min-height: 200px;
    }

    .banner-title {
        font-size: 2rem;
    }

    .banner-breadcrumb-nav {
        padding-left: 1rem !important;
        padding-right: 1rem !important;
    }

    .tree-link-style {
        font-size: 0.75rem;
    }

    .tree-link-style .breadcrumb-item+.breadcrumb-item::before {
        margin: 0 5px;
        font-size: 9px;
    }
}

@media (max-width: 480px) {
    .cb-modern-banner-breadcrumb {
        padding: 40px 0;
        min-height: 160px;
    }

    .banner-title {
        font-size: 1.75rem;
    }

    .banner-breadcrumb-nav {
        border-radius: 8px !important;
    }
}

/* --- MODERN WISHLIST OFFCANVAS --- */
.wishlist-drawer-modern {
    border-left: none;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.08);
    border-radius: 20px 0 0 20px;
}

.wishlist-drawer-modern .offcanvas-header-modern {
    background: linear-gradient(135deg, #fff5f7 0%, #ffffff 100%);
    padding: 24px;
    border-bottom: 1px solid rgba(255, 182, 193, 0.2);
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 20px 0 0 0;
}

.wishlist-drawer-modern .wishlist-title-box {
    display: flex;
    align-items: center;
    gap: 12px;
}

.wishlist-drawer-modern .wishlist-icon-circle {
    width: 48px;
    height: 48px;
    background: #ff4757;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    box-shadow: 0 4px 15px rgba(255, 71, 87, 0.3);
}

.wishlist-drawer-modern .wishlist-title-text {
    font-size: 1.25rem;
    font-weight: 700;
    color: #2d3436;
    margin: 0;
    line-height: 1.2;
}

.wishlist-drawer-modern .wishlist-count-badge {
    background: #ffeaa7;
    color: #d63031;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 10px;
    margin-top: 4px;
    display: inline-block;
}

.wishlist-drawer-modern .close-btn-modern {
    background: white;
    border: 1px solid #eee;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #636e72;
    transition: all 0.3s ease;
    cursor: pointer;
}

.wishlist-drawer-modern .close-btn-modern:hover {
    background: #ff7675;
    color: white;
    border-color: #ff7675;
    transform: rotate(90deg);
}

.wishlist-drawer-modern .offcanvas-body {
    background: #fdfdfd;
    padding: 20px;
}

.wishlist-item-modern {
    background: #ffffff;
    border-radius: 16px;
    padding: 16px;
    margin-bottom: 16px;
    display: flex;
    gap: 16px;
    border: 1px solid #f1f2f6;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.wishlist-item-modern:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
    transform: translateY(-2px);
    border-color: #dfe4ea;
}

.wishlist-item-img-modern {
    width: 80px;
    height: 80px;
    background: #f7f9fa;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
}

.wishlist-item-img-modern img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.wishlist-item-info {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.wishlist-item-title {
    font-size: 0.95rem;
    font-weight: 600;
    color: #2d3436;
    margin-bottom: 4px;
    line-height: 1.3;
}

.wishlist-item-title a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s;
}

.wishlist-item-title a:hover {
    color: #00b894;
}

.wishlist-item-meta {
    font-size: 0.75rem;
    color: #636e72;
    margin-bottom: 8px;
}

.wishlist-item-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.wishlist-item-price {
    font-size: 1.05rem;
    font-weight: 700;
    color: #d63031;
}

.wishlist-move-cart-btn {
    background: #00b894;
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 6px 14px;
    font-size: 0.8rem;
    font-weight: 600;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 6px;
}

.wishlist-move-cart-btn:hover {
    background: #00a884;
    transform: scale(1.05);
}

.wishlist-delete-modern {
    position: absolute;
    top: 12px;
    right: 12px;
    color: #b2bec3;
    font-size: 1rem;
    cursor: pointer;
    transition: color 0.2s;
}

.wishlist-delete-modern:hover {
    color: #d63031;
}

.wishlist-footer-modern {
    padding: 20px;
    background: #ffffff;
    border-top: 1px solid #f1f2f6;
    border-radius: 0 0 0 20px;
}

.wishlist-btn-outline {
    width: 100%;
    padding: 12px;
    border: 2px solid #2d3436;
    background: transparent;
    color: #2d3436;
    font-weight: 700;
    border-radius: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.wishlist-btn-outline:hover {
    background: #2d3436;
    color: #fff;
}

/* --- EMPTY STATE MODERN UI --- */
.empty-state-modern {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 3rem 1.5rem;
    background: linear-gradient(180deg, #fdfbfb 0%, #ebedee 100%);
    border-radius: 24px;
    margin-top: 1rem;
    box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.02);
    border: 1px dashed rgba(0, 0, 0, 0.1);
}

.empty-state-icon-wrapper {
    width: 80px;
    height: 80px;
    background: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
    margin-bottom: 20px;
    position: relative;
}

.empty-state-icon-wrapper::before {
    content: '';
    position: absolute;
    width: 100px;
    height: 100px;
    background: rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    z-index: 0;
    animation: pulse 2s infinite ease-in-out;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 0.8;
    }

    50% {
        transform: scale(1.1);
        opacity: 0.4;
    }

    100% {
        transform: scale(1);
        opacity: 0.8;
    }
}

.empty-state-icon-wrapper i {
    font-size: 2rem;
    color: #ff6b81;
    z-index: 1;
}

.cart-empty .empty-state-icon-wrapper i {
    color: #00b894;
}

.empty-state-title {
    font-size: 1.25rem;
    font-weight: 800;
    color: #2d3436;
    margin-bottom: 8px;
    font-family: 'Playfair Display', serif;
}

.empty-state-desc {
    font-size: 0.85rem;
    color: #636e72;
    margin-bottom: 24px;
    line-height: 1.5;
}

.btn-empty-state {
    background: #2d3436;
    color: #fff;
    border: none;
    padding: 12px 28px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(45, 52, 54, 0.2);
}

.btn-empty-state:hover {
    background: #00b894;
    color: #ffffff;
    box-shadow: 0 6px 20px rgba(0, 184, 148, 0.3);
    transform: translateY(-2px);
}

.cart-empty .btn-empty-state:hover {
    background: #ff6b81;
    box-shadow: 0 6px 20px rgba(255, 107, 129, 0.3);
}

.bg-dark1 {
    background: #b7492f47;
}

.modern-bc-link {
    color: #000000;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-flex;
    align-items: center;
    font-size: 13px;
}

.breadcrumb-item+.breadcrumb-item::before {
    content: "\f054";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    color: #000000;
    font-size: 10px;
    padding: 0 12px;
    vertical-align: middle;
}

.current-page {
    background: linear-gradient(45deg, #b7492f, #b35b47);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 13px;
}


/* Base Typography */
.premium-heading {
    font-family: 'Playfair Display', serif;
    color: var(--text-dark);
}

.premium-subheading {
    font-family: 'Playfair Display', serif;
    color: var(--text-dark);
}

.premium-body {
    font-family: 'Barlow', sans-serif;
    color: var(--text-muted);
    line-height: 1.6;
}

.premium-btn-font {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
}

/* Layout */
.premium-recipe-section {
    background-color: var(--bg-premium);
    padding: 60px 0;
    font-family: 'Barlow', sans-serif;
}

.pr-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
}

.pr-grid {
    display: grid;
    grid-template-columns: 280px 1fr 340px;
    gap: 40px;
    align-items: start;
}

@media (max-width: 1200px) {
    .pr-grid {
        grid-template-columns: 1fr;
    }

    .pr-sidebar-left,
    .pr-sidebar-right {
        position: static !important;
    }
}

/* Glassmorphism Card Base */
.pr-card {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
    padding: 24px;
    transition: var(--transition);
}

.pr-card:hover {
    box-shadow: var(--shadow-hover);
}

/* Left Sidebar: Nav */
.pr-sidebar-left {
    position: sticky;
    top: 40px;
}

.pr-nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
    margin-top: 16px;
}

.pr-nav-item {
    margin-bottom: 8px;
}

.pr-nav-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    border-radius: var(--radius-md);
    color: var(--text-muted);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
}

.pr-nav-link i {
    font-size: 1.1rem;
    color: var(--primary-green);
    opacity: 0.7;
    transition: var(--transition);
}

.pr-nav-link:hover,
.pr-nav-link.active {
    background-color: rgba(24, 78, 58, 0.08);
    color: var(--primary-green);
}

.pr-nav-link:hover i,
.pr-nav-link.active i {
    opacity: 1;
}

/* Center Content */
.pr-center-content {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.pr-section-title {
    font-size: 1.5rem;
    margin-bottom: 16px;
}

.pr-divider {
    height: 1px;
    background-color: var(--border-color);
    margin: 24px 0;
    border: none;
}

/* Health Benefits */
.pr-benefits-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

@media (max-width: 768px) {
    .pr-benefits-grid {
        grid-template-columns: 1fr;
    }
}

.pr-benefit-card {
    background: #fff;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 10px 10px;
    display: flex;
    align-items: center;
    gap: 16px;
    transition: var(--transition);
}

.pr-benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
    border-color: rgba(24, 78, 58, 0.2);
}

.pr-benefit-icon {
    width: 60px;
    height: 60px;
    background: rgba(24, 78, 58, 0.06);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-green);
    font-size: 24px;
    flex-shrink: 0;
}

.pr-benefit-text h5 {
    margin: 0 0 4px 0;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
}

.pr-benefit-text p {
    margin: 0;
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* Cooking Steps Timeline */
.pr-timeline {
    position: relative;
    padding-left: 20px;
}

.pr-step {
    position: relative;
    padding-left: 40px;
    padding-bottom: 40px;
}

.pr-step:last-child {
    padding-bottom: 0;
}

.pr-step::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--border-color);
}

.pr-step:last-child::before {
    display: none;
}

.pr-step-number {
    position: absolute;
    left: -19px;
    top: 0;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary-green), var(--secondary-green));
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-family: 'Poppins', sans-serif;
    box-shadow: 0 4px 12px rgba(24, 78, 58, 0.3);
    z-index: 2;
    border: 4px solid var(--bg-premium);
}

.pr-step-card {
    background: #fff;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 24px;
    box-shadow: var(--shadow-soft);
    transition: var(--transition);
}

.pr-step-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
}

.pr-step-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 12px;
}

.pr-meta-badge {
    background: rgba(24, 78, 58, 0.05);
    color: var(--primary-green);
    padding: 6px 12px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
}

/* Nutrition */
.pr-nutrition-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

@media (max-width: 576px) {
    .pr-nutrition-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.pr-nutrition-card {
    background: #fff;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 20px;
    text-align: center;
    transition: var(--transition);
}

.pr-nutrition-card:hover {
    box-shadow: var(--shadow-hover);
    transform: translateY(-3px);
}

.pr-ring {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 4px solid rgba(242, 140, 40, 0.15);
    border-top-color: var(--accent-orange);
    margin: 0 auto 12px auto;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--text-dark);
    font-size: 1.1rem;
}

/* Right Sidebar: Shopping Card */
.pr-sidebar-right {
    position: sticky;
    top: 40px;
}

.pr-ingredient-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 24px;
}

.pr-ingredient-item {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #fff;
    padding: 12px;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.pr-ingredient-item:hover {
    box-shadow: var(--shadow-soft);
    border-color: rgba(24, 78, 58, 0.2);
}

.pr-ingredient-img {
    width: 60px;
    height: 60px;
    background: var(--bg-premium);
    border-radius: 12px;
    padding: 8px;
    object-fit: contain;
}

.pr-ingredient-info {
    flex-grow: 1;
}

.pr-ingredient-name {
    font-weight: 600;
    color: var(--text-dark);
    font-size: 0.95rem;
    margin-bottom: 2px;
}

.pr-ingredient-weight {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.pr-ingredient-price {
    font-weight: 700;
    color: var(--primary-green);
    font-size: 0.9rem;
}

.pr-wishlist-icon {
    color: var(--text-muted);
    cursor: pointer;
    transition: var(--transition);
    font-size: 1.1rem;
}

.pr-wishlist-icon:hover {
    color: #e74c3c;
    transform: scale(1.1);
}

/* Buttons */
.pr-btn-primary {
    background: var(--primary-green);
    color: #fff;
    height: 56px;
    border-radius: var(--radius-md);
    border: none;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 1rem;
    transition: var(--transition);
    box-shadow: 0 10px 25px rgba(24, 78, 58, 0.2);
}

.pr-btn-primary:hover {
    background: var(--secondary-green);
    transform: scale(1.02);
    box-shadow: 0 15px 35px rgba(24, 78, 58, 0.3);
    color: #fff;
}

.pr-qty-box {
    display: flex;
    align-items: center;
    background: var(--bg-premium);
    border-radius: 50px;
    padding: 4px;
    margin-top: 8px;
}

.pr-qty-btn {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: none;
    background: #fff;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    cursor: pointer;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.pr-qty-input {
    width: 30px;
    text-align: center;
    border: none;
    background: transparent;
    font-weight: 600;
    font-size: 0.85rem;
}

.pr-checkout-box {
    background: var(--bg-premium);
    border-radius: var(--radius-md);
    padding: 20px;
    margin-top: 24px;
}

.pr-checkout-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 12px;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.pr-checkout-total {
    display: flex;
    justify-content: space-between;
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px dashed rgba(0, 0, 0, 0.1);
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--text-dark);
}

/* =========================================
   PREMIUM MODERN GALLERY REDESIGN (TOP SECTION)
   ========================================= */

:root {
    --pm-bg: #F8F4EC;
    --pm-dark-green: #143D2B;
    --pm-orange: #D97A18;
    --pm-cream: #FFFFFF;
    --pm-text-dark: #1A1A1A;
    --pm-text-muted: #666666;
    --pm-border: #E8E2D2;
    --pm-radius: 20px;
    --pm-shadow: 0 12px 40px rgba(20, 61, 43, 0.08);
}

.pm-hero-section {
    padding: 50px 0 0 0;
    font-family: 'Poppins', sans-serif;
    background-color: var(--bg-premium);
}

.pm-card {
    background-color: var(--pm-cream);
    border-radius: var(--pm-radius);
    box-shadow: var(--pm-shadow);
    padding: 40px;
    max-width: 1400px;
    margin: 0px auto;
    border: 1px solid var(--border-color);
}

.pm-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: stretch;
}

@media (max-width: 991px) {
    .pm-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .pm-card {
        padding: 24px;
    }
}

/* Left: Image Gallery */
.pm-gallery {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.pm-thumbnails {
    display: flex;
    flex-direction: column;
    gap: 16px;
    flex-shrink: 0;
}

.pm-thumb {
    width: 67px;
    height: 67px;
    border-radius: 16px;
    background-color: #F5F5F5;
    padding: 8px;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pm-thumb img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.pm-thumb.active {
    border-color: var(--pm-orange);
    background-color: #fff;
    box-shadow: 0 4px 15px rgba(217, 122, 24, 0.15);
}

.pm-main-image-container {
    flex-grow: 1;
    background-color: #F9F9F9;
    border-radius: var(--pm-radius);
    padding: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    aspect-ratio: 1/1;
    position: relative;
    overflow: hidden;
}

.pm-main-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
}

@media (max-width: 576px) {
    .pm-gallery {
        flex-direction: column-reverse;
    }

    .pm-thumbnails {
        flex-direction: row;
        width: 100%;
        overflow-x: auto;
        padding-bottom: 10px;
    }
}

/* Right: Product Details */
.pm-details {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.pm-category-label {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.77rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #b44b04;
    margin-bottom: 10px;
    background: #b7492f21;
    width: max-content;
    padding: 6px 13px;
    border-radius: 38px;
}

.pm-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--pm-text-dark);
    line-height: 1.1;
    margin-bottom: 8px;
}

.pm-subtitle {
    font-size: 1rem;
    color: var(--pm-text-muted);
    font-style: italic;
    margin-bottom: 32px;
}

@media (max-width: 768px) {
    .pm-title {
        font-size: 2.2rem;
    }
}

/* Size Selection */
.pm-size-selector {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 32px;
}

.pm-size-pill {
    position: relative;
}

.pm-size-pill input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

.pm-size-label {
    display: inline-block;
    padding: 10px 15px;
    background-color: var(--pm-bg);
    border: 1px solid var(--pm-border);
    border-radius: 12px;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--pm-text-dark);
    cursor: pointer;
    transition: all 0.2s ease;
}

.pm-size-pill input:checked+.pm-size-label {
    background-color: var(--pm-dark-green);
    color: #fff;
    border-color: var(--pm-dark-green);
    box-shadow: 0 6px 15px rgba(20, 61, 43, 0.2);
}

/* Feature Badges */
.pm-badges {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 0;
}

.pm-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    background-color: rgba(20, 61, 43, 0.05);
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--pm-dark-green);
}

.pm-badge i {
    font-size: 1rem;
    color: var(--pm-orange);
}

.pm-divider {
    height: 1px;
    background-color: var(--pm-border);
    margin: 32px 0;
    width: 100%;
}

/* Pricing Area */
.pm-pricing-area {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 32px;
}

.pm-price-block {
    display: flex;
    flex-direction: column;
}

.pm-price {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--pm-text-dark);
    line-height: 1;
    margin-bottom: 4px;
}

.pm-price-old {
    font-size: 1.2rem;
    color: var(--pm-text-muted);
    text-decoration: line-through;
    font-weight: 500;
    margin-left: 12px;
}

.pm-price-meta {
    font-size: 0.85rem;
    color: var(--pm-text-muted);
}

.pm-discount-badge {
    background-color: rgba(217, 122, 24, 0.1);
    color: var(--pm-orange);
    padding: 8px 16px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
}

/* Action Area */
.pm-action-area {
    display: flex;
    gap: 20px;
    align-items: center;
}

.pm-qty {
    display: flex;
    align-items: center;
    background-color: #fff;
    border: 1px solid var(--pm-border);
    border-radius: 50px;
    padding: 4px;
    height: 56px;
}

.pm-qty-btn {
    width: 40px;
    height: 46px;
    border: none;
    background: transparent;
    font-size: 1.2rem;
    color: var(--pm-text-dark);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background 0.2s;
}

.pm-qty-btn:hover {
    background-color: var(--pm-bg);
}

.pm-qty-input {
    width: 40px;
    text-align: center;
    border: none;
    font-weight: 700;
    font-size: 1rem;
    color: var(--pm-text-dark);
    -moz-appearance: textfield;
}

.pm-qty-input::-webkit-outer-spin-button,
.pm-qty-input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.pm-btn-cart {
    flex-grow: 1;
    height: 56px;
    background-color: var(--pm-dark-green);
    color: #fff;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 25px rgba(20, 61, 43, 0.2);
}

.pm-btn-cart:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 35px rgba(20, 61, 43, 0.3);
    background-color: #0c2a1d;
}

@media (max-width: 576px) {
    .pm-action-area {
        flex-direction: column;
    }

    .pm-qty,
    .pm-btn-cart {
        width: 100%;
    }
}

/* ==========================================================================
   Product Details Page Styles (Prefixed with .pd-)
   ========================================================================== */

.pd-section {
    background-color: #fff;
    padding-top: 5rem;
    padding-bottom: 5rem;
}

.pd-gallery-main {
    background-color: #f8f9fa;
    border-radius: 1.5rem;
    padding: 1rem;
    text-align: center;
    box-shadow: none;
    margin-bottom: 1.5rem;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    cursor: crosshair;
    border: 2px solid #ebebebab;
}

.pd-gallery-main img {
    animation: floatImage 4s ease-in-out infinite;
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: transform 0.1s ease-out, opacity 0.2s ease-in-out;
    transform-origin: center center;
    pointer-events: none;
}

@keyframes floatImage {
    0% {
        transform: translateY(0) scale(1);
    }

    50% {
        transform: translateY(-8px) scale(1.02);
    }

    100% {
        transform: translateY(0) scale(1);
    }
}

.pd-gallery-main:hover img {
    animation: none;
}

.pd-gallery-thumbs {
    display: flex;
    gap: 1rem;
}

.pd-gallery-sticky {
    position: sticky;
    top: 120px;
    z-index: 10;
}

.pd-thumb-item {
    background-color: #f8f9fa;
    border-radius: 0.75rem;
    padding: 0.2rem;
    width: 60px;
    height: 60px;
    cursor: pointer;
    box-shadow: none;
    border: 2px solid #0000000f;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pd-thumb-item img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.pd-thumb-item:hover {
    border-color: #b7492f61;
    background-color: #fff;
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.pd-thumb-item.active {
    border-color: #b7492f;
    background-color: #fff;
}

/* Product Info */
.pd-brand-badge {
    background-color: rgba(183, 73, 47, 0.1);
    color: #b7492f;
    padding: 0.25em 0.75em;
    border-radius: 50rem;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: inline-block;
    margin-bottom: 1rem;
}

.pd-title {
    font-size: 1.5rem;
    font-weight: 500;
    line-height: 1.2;
    letter-spacing: -0.5px;
    color: #111;
    margin-bottom: 0.75rem;
}

.pd-rating {
    display: flex;
    align-items: center;
    margin-bottom: 0.4rem;
}

.pd-rating .bi-star-fill,
.pd-rating .bi-star-half {
    color: #ffc107;
    margin-right: 0.25rem;
}

.pd-rating span {
    color: #6c757d;
    font-size: 0.9rem;
    margin-left: 0.5rem;
}

.pd-price-wrap {
    display: flex;
    align-items: center;
    margin-bottom: 0.5rem;
}

.pd-price-current {
    font-size: 1.5rem;
    font-weight: 500;
    color: #b7492f;
    margin-right: 1rem;
}

.pd-price-old {
    font-size: 1.25rem;
    color: #6c757d;
    text-decoration: line-through;
    margin-right: 1rem;
}

.pd-discount-badge {
    background-color: #dc3545;
    color: #fff;
    padding: 0.25em 0.75em;
    border-radius: 0.5rem;
    font-size: 0.85rem;
    font-weight: 600;
}

.pd-short-desc {
    color: #495057;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    border-bottom: 1px solid #dee2e6;
    padding-bottom: 1.5rem;
}

/* Weight Selection Pills */
.pd-option-title {
    font-size: 1rem;
    font-weight: 700;
    color: #212529;
    margin-bottom: 0.75rem;
}

.pd-weight-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 2rem;
}

.pd-weight-pill {
    cursor: pointer;
    margin: 0;
}

.pd-weight-input {
    display: none;
}

.pd-weight-text {
    display: inline-block;
    padding: 0.35rem 0.65rem;
    font-size: 0.85rem;
    font-weight: 400;
    color: #111;
    background-color: #fff;
    border: 2px solid #e9ecef;
    border-radius: 0rem;
    transition: all 0.2s ease;
    line-height: 16px;
    text-transform: uppercase;
}

.pd-weight-pill:hover .pd-weight-text {
    border-color: #111;
}

.pd-weight-input:checked+.pd-weight-text {
    background-color: #b7492f;
    color: #fff;
    border-color: #b7492f;
}

/* Actions Section */
.pd-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2rem;
    width: 395px;
}


.pd-qty-selector {
    display: flex;
    align-items: center;
    background-color: #fff;
    border: 2px solid #e9ecef;
    border-radius: 0;
}

.pd-qty-btn {
    background: none;
    border: none;
    width: 35px;
    height: 35px;
    font-size: 1.25rem;
    color: #495057;
    cursor: pointer;
    transition: color 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pd-qty-btn:hover {
    color: #b7492f;
}

.pd-qty-input {
    width: 50px;
    text-align: center;
    border: none;
    font-weight: 600;
    font-size: 1.1rem;
    color: #212529;
    background: transparent;
}

.pd-qty-input:focus {
    outline: none;
}

/* Hide default arrows for number input */
.pd-qty-input::-webkit-outer-spin-button,
.pd-qty-input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.pd-btn-cart {
    width: 50px;
    flex-grow: 1;
    background-color: #fff;
    color: #111;
    border: 2px solid #b1b1b1;
    border-radius: 0;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    padding: 0.5rem 0.1rem;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pd-btn-cart i {
    margin-right: 0.5rem;
}

.pd-btn-cart:hover {
    background-color: #f8f9fa;
    transform: translateY(-2px);
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.05);
}

.pd-btn-buy {
    flex-grow: 1;
    background-color: #b7492f;
    color: #fff;
    border: none;
    font-size: 0.8rem;
    font-weight: 500;
    text-transform: uppercase;
    padding: 0.5rem 1rem;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pd-btn-buy i {
    margin-right: 0.5rem;
}

.pd-btn-buy:hover {
    background-color: #111;
    transform: translateY(-2px);
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
}

.pd-btn-wishlist {
    background-color: #000000;
    color: #ffffff;
    border: 2px solid #000000;
    /* border-radius: 50rem; */
    width: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    cursor: pointer;
    transition: all 0.2s;
    line-height: 15px;
}

.pd-btn-wishlist:hover {
    background-color: rgba(183, 73, 47, 0.1);
    color: #b7492f;
    border-color: #b7492f;
}

/* Share Icons */
.pd-share-wrap {
    padding-top: 1.5rem;
    border-top: 1px solid #ebebeb;
}

.pd-share-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background-color: #f8f9fa;
    color: #6c757d;
    font-size: 1.1rem;
    text-decoration: none;
    transition: all 0.2s ease;
    border: 1px solid transparent;
}

.pd-share-btn:hover {
    background-color: #b7492f;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(183, 73, 47, 0.2);
}

/* Tabs Section */
.pd-tabs-section {
    margin-top: 4rem;
    background-color: #fff;
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0px 0rem 1rem 3px rgb(0 0 0 / 6%);
}

.pd-nav-tabs {
    border-bottom: 2px solid #e9ecef;
    border-radius: 0;
}

.pd-nav-tabs .nav-link {
    padding: 6px 14px 18px 14px !important;
    color: #6c757d;
    font-weight: 600;
    font-size: 0.94rem;
    padding: 1rem 1.5rem;
    position: relative;
    background: transparent;
}

.pd-nav-tabs .nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: #b7492f;
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.pd-nav-tabs .nav-link:hover {
    color: #b7492f;
    border: none;
}

.pd-nav-tabs .nav-link.active {
    color: #b7492f;
    background: transparent;
    border: none;
}

.pd-nav-tabs .nav-link.active::after {
    transform: scaleX(1);
}

.pd-tab-content {
    padding: 2rem 0;
    color: #495057;
    line-height: 1.8;
}

/* Modern Specs Grid */
.pd-spec-modern {
    margin-top: 1rem;
}

.pd-spec-item {
    padding: 1.25rem;
    background-color: #f8f9fa;
    border-radius: 1rem;
    border: 1px solid #ebebeb;
    transition: all 0.3s ease;
}

.pd-spec-item:hover {
    background-color: #fff;
    border-color: #b7492f;
    box-shadow: 0 5px 15px rgba(183, 73, 47, 0.08);
    transform: translateY(-3px);
}

.pd-spec-icon {
    width: 48px;
    height: 48px;
    background-color: rgba(183, 73, 47, 0.1);
    color: #b7492f;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
}

.tracking-wide {
    letter-spacing: 1px;
}

.pd-related-section {
    margin-top: 5rem;
}

.pd-related-title {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: #212529;
}

/* ==========================================================================
   Shopping Cart Page Styles (Prefixed with .cart-)
   ========================================================================== */
.cart-section {
    padding: 60px 0;
    background-color: var(--bg-premium, #F8F6F1);
    font-family: 'Barlow', sans-serif;
}

.cart-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--text-dark, #1B1B1B);
    margin-bottom: 30px;
}

/* Cart Table / Item List */
.cart-items-wrapper {
    background: #fff;
    border-radius: var(--radius-lg, 24px);
    border: 1px solid var(--border-color, #E7E2D8);
    box-shadow: var(--shadow-soft, 0 10px 40px rgba(0, 0, 0, 0.06));
    overflow: hidden;
}

.cart-item-row {
    display: flex;
    align-items: center;
    padding: 24px;
    border-bottom: 1px solid var(--border-color, #E7E2D8);
    transition: all 0.3s ease;
}

.cart-item-row:last-child {
    border-bottom: none;
}

.cart-item-row:hover {
    background: rgba(248, 246, 241, 0.5);
}

.cart-item-img {
    width: 90px;
    height: 90px;
    object-fit: contain;
    background: #f9f9f9;
    border-radius: 12px;
    padding: 10px;
    margin-right: 20px;
}

.cart-item-details {
    flex-grow: 1;
}

.cart-item-brand {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--accent-orange, #F28C28);
    font-weight: 600;
    margin-bottom: 4px;
}

.cart-item-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark, #1B1B1B);
    margin-bottom: 6px;
    text-decoration: none;
}

.cart-item-title:hover {
    color: var(--primary-green, #184E3A);
}

.cart-item-weight {
    font-size: 0.85rem;
    color: var(--text-muted, #707070);
}

.cart-item-price-unit {
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--primary-green, #184E3A);
    width: 120px;
    text-align: center;
}

/* Qty Box */
.cart-qty-box {
    display: flex;
    align-items: center;
    background: #f8f9fa;
    border-radius: 50px;
    border: 1px solid #e9ecef;
    padding: 4px 8px;
    width: 120px;
    justify-content: space-between;
}

.cart-qty-btn {
    background: none;
    border: none;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: #495057;
    cursor: pointer;
    border-radius: 50%;
    transition: all 0.2s;
}

.cart-qty-btn:hover {
    background: #e9ecef;
    color: var(--primary-green, #184E3A);
}

.cart-qty-input {
    width: 35px;
    text-align: center;
    border: none;
    background: transparent;
    font-weight: 600;
    font-size: 0.95rem;
}

.cart-item-total {
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--text-dark, #1B1B1B);
    width: 120px;
    text-align: right;
}

.cart-item-remove {
    background: none;
    border: none;
    color: #adb5bd;
    font-size: 1.2rem;
    cursor: pointer;
    margin-left: 20px;
    transition: color 0.2s;
}

.cart-item-remove:hover {
    color: #dc3545;
}

/* Order Summary */
.cart-summary-box {
    background: #fff;
    border-radius: var(--radius-lg, 24px);
    border: 1px solid var(--border-color, #E7E2D8);
    box-shadow: var(--shadow-soft, 0 10px 40px rgba(0, 0, 0, 0.06));
    padding: 30px;
    position: sticky;
    top: 100px;
}

.cart-summary-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-dark, #1B1B1B);
    margin-bottom: 24px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--border-color, #E7E2D8);
}

.cart-summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 16px;
    color: var(--text-muted, #707070);
    font-size: 1rem;
}

.cart-summary-row.total {
    margin-top: 24px;
    padding-top: 20px;
    border-top: 2px dashed #e9ecef;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-dark, #1B1B1B);
}

.cart-coupon-box {
    display: flex;
    margin-top: 24px;
    margin-bottom: 24px;
}

.cart-coupon-input {
    flex-grow: 1;
    border: 1px solid #ced4da;
    border-radius: 50px 0 0 50px;
    padding: 10px 20px;
    font-size: 0.9rem;
}

.cart-coupon-input:focus {
    outline: none;
    border-color: var(--primary-green, #184E3A);
}

.cart-coupon-btn {
    background: var(--text-dark, #1B1B1B);
    color: #fff;
    border: none;
    border-radius: 0 50px 50px 0;
    padding: 10px 20px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: background 0.3s;
}

.cart-coupon-btn:hover {
    background: var(--primary-green, #184E3A);
}

.cart-checkout-btn {
    width: 100%;
    background: var(--primary-green, #184E3A);
    color: #fff;
    border: none;
    border-radius: 50px;
    padding: 16px;
    font-size: 1.1rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(24, 78, 58, 0.2);
}

.cart-checkout-btn:hover {
    background: var(--secondary-green, #2D6A4F);
    transform: translateY(-2px);
    box-shadow: 0 12px 25px rgba(24, 78, 58, 0.3);
    color: #fff;
}

.cart-continue-shopping {
    display: block;
    text-align: center;
    margin-top: 20px;
    color: var(--text-muted, #707070);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: color 0.2s;
}

.cart-continue-shopping:hover {
    color: var(--primary-green, #184E3A);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .cart-item-row {
        flex-wrap: wrap;
        position: relative;
    }

    .cart-item-details {
        width: calc(100% - 110px);
    }

    .cart-item-price-unit {
        display: none;
    }

    .cart-qty-box {
        margin-top: 15px;
    }

    .cart-item-total {
        margin-top: 15px;
        flex-grow: 1;
        text-align: right;
    }

    .cart-item-remove {
        position: absolute;
        top: 20px;
        right: 20px;
        margin: 0;
    }
}

/* ==========================================================================
   Checkout Page Styles (Prefixed with .chk-)
   ========================================================================== */
.chk-section {
    padding: 60px 0;
    background-color: var(--bg-premium, #F8F6F1);
    font-family: 'Barlow', sans-serif;
}

.chk-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-dark, #1B1B1B);
    margin-bottom: 24px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--border-color, #E7E2D8);
}

.chk-box {
    background: #fff;
    border-radius: var(--radius-lg, 24px);
    border: 1px solid var(--border-color, #E7E2D8);
    box-shadow: var(--shadow-soft, 0 10px 40px rgba(0, 0, 0, 0.06));
    padding: 30px;
    margin-bottom: 30px;
}

/* Form Styles */
.chk-form-label {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--text-dark, #1B1B1B);
    margin-bottom: 8px;
}

.chk-form-control {
    width: 100%;
    display: block;
    border: 1px solid #ced4da;
    border-radius: 12px;
    padding: 12px 16px;
    font-size: 1rem;
    transition: all 0.3s;
    background: #fdfdfd;
}

.chk-form-control:focus {
    border-color: var(--primary-green, #184E3A);
    box-shadow: 0 0 0 4px rgba(24, 78, 58, 0.1);
    background: #fff;
    outline: none;
}

.chk-form-select {
    width: 100%;
    display: block;
    border: 1px solid #ced4da;
    border-radius: 12px;
    padding: 12px 16px;
    font-size: 1rem;
    background-color: #fdfdfd;
    transition: all 0.3s;
}

.chk-form-select:focus {
    border-color: var(--primary-green, #184E3A);
    box-shadow: 0 0 0 4px rgba(24, 78, 58, 0.1);
    outline: none;
}

/* Payment Methods */
.chk-payment-option {
    border: 1px solid var(--border-color, #E7E2D8);
    border-radius: 12px;
    padding: 16px;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s;
}

.chk-payment-option:hover {
    border-color: var(--primary-green, #184E3A);
    background: rgba(248, 246, 241, 0.5);
}

.chk-payment-input {
    margin-right: 12px;
    width: 20px;
    height: 20px;
    accent-color: var(--primary-green, #184E3A);
}

.chk-payment-label {
    font-weight: 600;
    font-size: 1rem;
    color: var(--text-dark, #1B1B1B);
    cursor: pointer;
    margin: 0;
    display: flex;
    align-items: center;
    width: 100%;
}

.chk-payment-icon {
    margin-left: auto;
    font-size: 1.4rem;
    color: var(--text-muted, #707070);
}

/* Order Item Tiny Row */
.chk-order-item {
    display: flex;
    align-items: center;
    margin-bottom: 16px;
}

.chk-order-img-wrap {
    position: relative;
    width: 65px;
    height: 65px;
    background: #f9f9f9;
    border: 1px solid #ebebeb;
    border-radius: 12px;
    padding: 8px;
    margin-right: 16px;
}

.chk-order-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.chk-order-qty-badge {
    position: absolute;
    top: -8px;
    right: -8px;
    background: var(--text-muted, #707070);
    color: #fff;
    border-radius: 50%;
    width: 22px;
    height: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 700;
}

.chk-order-details {
    flex-grow: 1;
}

.chk-order-title {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-dark, #1B1B1B);
    margin-bottom: 2px;
}

.chk-order-weight {
    font-size: 0.8rem;
    color: var(--text-muted, #707070);
}

.chk-order-price {
    font-weight: 600;
    font-size: 1rem;
    color: var(--primary-green, #184E3A);
}

/* Enhanced Form Inputs */
.chk-input-group {
    position: relative;
    display: flex;
    align-items: center;
}

.chk-input-icon {
    position: absolute;
    left: 16px;
    color: #adb5bd;
    font-size: 1.1rem;
    pointer-events: none;
    transition: color 0.3s;
    z-index: 5;
}

.chk-form-control.with-icon {
    padding-left: 45px;
}

.chk-form-control.with-icon:focus~.chk-input-icon {
    color: var(--primary-green, #184E3A);
}

/* Trust Badge */
.chk-trust-badge {
    background: #f1f8f5;
    border: 1px dashed var(--secondary-green, #2D6A4F);
    border-radius: 12px;
    padding: 16px;
    text-align: center;
    margin-top: 24px;
}

.chk-trust-title {
    color: var(--primary-green, #184E3A);
    font-weight: 700;
    font-size: 0.95rem;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.chk-trust-icons {
    display: flex;
    justify-content: center;
    gap: 12px;
    font-size: 1.4rem;
    color: #6c757d;
}

/* Payment Active State */
.chk-payment-input:checked+.chk-payment-label {
    color: var(--primary-green, #184E3A);
}

.chk-payment-option:has(input:checked) {
    border-color: var(--primary-green, #184E3A);
    background: rgba(24, 78, 58, 0.05);
    box-shadow: 0 4px 12px rgba(24, 78, 58, 0.1);
}

/* ==========================================================================
   Thank You (Order Success) Page Styles
   ========================================================================== */
.ty-section {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--bg-premium, #F8F6F1);
    font-family: 'Barlow', sans-serif;
    padding: 60px 20px;
}

.ty-card {
    background: #fff;
    border-radius: var(--radius-lg, 24px);
    box-shadow: var(--shadow-hover, 0 15px 50px rgba(0, 0, 0, 0.1));
    max-width: 600px;
    width: 100%;
    padding: 50px 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

/* Success Checkmark Animation */
.ty-icon-wrapper {
    width: 90px;
    height: 90px;
    background: rgba(24, 78, 58, 0.1);
    color: var(--primary-green, #184E3A);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    margin: 0 auto 30px;
    animation: scaleIn 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}

@keyframes scaleIn {
    0% {
        transform: scale(0);
        opacity: 0;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.ty-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark, #1B1B1B);
    margin-bottom: 15px;
}

.ty-subtitle {
    font-size: 1.1rem;
    color: var(--text-muted, #707070);
    margin-bottom: 30px;
    line-height: 1.6;
}

/* Order Details Box */
.ty-order-details {
    background: #fdfdfd;
    border: 1px dashed #ced4da;
    border-radius: 16px;
    padding: 24px;
    margin-bottom: 30px;
    text-align: left;
}

.ty-detail-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 12px;
    font-size: 0.95rem;
}

.ty-detail-row:last-child {
    margin-bottom: 0;
}

.ty-detail-label {
    color: var(--text-muted, #707070);
    font-weight: 500;
}

.ty-detail-value {
    color: var(--text-dark, #1B1B1B);
    font-weight: 700;
}

/* Buttons */
.ty-btn-primary {
    background: var(--primary-green, #184E3A);
    color: #fff;
    border: none;
    border-radius: 50px;
    padding: 14px 30px;
    font-size: 1.1rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    transition: all 0.3s;
    box-shadow: 0 8px 20px rgba(24, 78, 58, 0.2);
}

.ty-btn-primary:hover {
    background: var(--secondary-green, #2D6A4F);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 12px 25px rgba(24, 78, 58, 0.3);
}

/* Confetti Background Pattern (Subtle) */
.ty-card::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(24, 78, 58, 0.05) 0%, transparent 70%);
    border-radius: 50%;
}

.ty-card::after {
    content: '';
    position: absolute;
    bottom: -50px;
    left: -50px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(242, 140, 40, 0.05) 0%, transparent 70%);
    border-radius: 50%;
}

/* Override yellow with primary brown */
.contact-section .text-warning {
    color: var(--primary-brown) !important;
}

.contact-section .bg-warning {
    background-color: var(--primary-brown) !important;
}

.contact-section .border-warning {
    border-color: var(--primary-brown) !important;
}

.contact-section .btn-warning {
    background-color: var(--primary-brown) !important;
    border-color: var(--primary-brown) !important;
    color: #fff !important;
}

.contact-section .hover-warning:hover {
    color: var(--primary-brown) !important;
}

.title-line {
    width: 80px;
    height: 3px;
}

.bg-pattern-dark {
    background-image: radial-gradient(circle at 10% 20%, var(--primary-brown) 0%, transparent 50%);
    z-index: -1;
    opacity: 0.15;
}

.font-md {
    font-size: 1.05rem;
}

.textarea-lg {
    height: 150px;
}

.font-barlow {
    font-family: 'Barlow', sans-serif !important;
}

.contact-para {
    font-size: 15px !important;
    color: #7a7d85;
    line-height: 1.6 !important;
}

.letter-spacing-1 {
    letter-spacing: 1px;
}

.letter-spacing-2 {
    letter-spacing: 2px;
}

.hover-lift {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hover-lift:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.hover-white:hover {
    color: #ffffff !important;
    transition: 0.3s ease;
}

.contact-icon-box {
    width: 60px;
    height: 60px;
    background: rgba(0, 0, 0, 0.2);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.contact-item-premium:hover .contact-icon-box {
    background: var(--primary-brown) !important;
    color: #fff !important;
    transform: scale(1.1) rotate(5deg);
    border-color: transparent !important;
}

.cb-form-input {
    border: none;
    border-bottom: 2px solid #e2e8f0;
    border-radius: 0;
    background-color: transparent;
    padding-left: 0;
    box-shadow: none !important;
    transition: all 0.3s ease;
}

.cb-form-input:focus {
    border-bottom-color: var(--primary-brown);
    background-color: transparent;
}

.form-floating>label {
    padding-left: 0;
    color: #94a3b8;
}

.form-floating>.form-control:focus~label,
.form-floating>.form-control:not(:placeholder-shown)~label {
    color: var(--primary-brown);
    transform: scale(.85) translateY(-.75rem) translateX(0);
}

.letter-spacing-1 {
    letter-spacing: 1px;
}

.letter-spacing-2 {
    letter-spacing: 2px;
}

.zoom-on-hover {
    transition: transform 0.8s ease;
}

.about-image-wrapper:hover .zoom-on-hover {
    transform: scale(1.05);
}

.blur-xl {
    filter: blur(40px);
}

.about-feature-card {
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.about-feature-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 1.5rem 4rem rgba(0, 0, 0, 0.08) !important;
    border-color: transparent !important;
}

.about-feature-card:hover .card-glow {
    opacity: 0.15;
}

.about-feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
}

.hover-lift {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hover-lift:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

@media (min-width: 768px) {
    .border-end-md {
        border-right: 1px solid rgba(255, 255, 255, 0.25) !important;
    }
}

/* Replaced Inline Styles */
.cb-overlay-dark {
    background-color: rgb(0 0 0 / 5%);
}

.banner-title-shadow {
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.breadcrumb-text-shadow {
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.bg-shape-warning {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, var(--bs-warning) 0%, transparent 70%);
    z-index: -1;
}

.bg-shape-success {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, var(--bs-success) 0%, transparent 70%);
    z-index: -1;
}

.main-img-wrap {
    height: 500px;
    width: 85%;
}

.sub-img-wrap {
    height: 180px;
    width: 31%;
    bottom: -51px;
    right: 0;
}

.about-experience-badge {
    top: -20px;
    left: -20px;
    z-index: 10;
    width: 130px;
    height: 130px;
    border: 5px solid #fff;
}

.badge-year {
    font-size: 1.8rem;
}

.badge-text {
    font-size: 10px;
}

.story-badge {
    font-size: 0.85rem;
}

.story-line {
    height: 3px;
    background: linear-gradient(90deg, var(--bs-warning) 0%, transparent 100%);
    opacity: 0.7;
}

.story-title {
    color: #1a1a1a;
    line-height: 1.3 !important;
    letter-spacing: -0.5px;
}

.story-underline {
    bottom: 6px;
    z-index: -1;
    opacity: 0.5;
}

.story-home {
    color: #d4a017;
}

.story-lead {
    color: #4a5568;
    font-size: 1.15rem;
    line-height: 1.8;
}

.story-text {
    color: #718096;
    line-height: 1.9;
    font-size: 1.05rem;
    letter-spacing: 0.3px;
}

.icon-box-sm {
    width: 55px;
    height: 55px;
    min-width: 55px;
}

.stats-overlay {
    background-image: url('img/halftone.png');
    opacity: 0.05;
    background-size: cover;
    pointer-events: none;
}

.stat-text {
    font-size: 0.75rem;
}

.title-line {
    width: 80px;
    height: 3px;
}

.card-glow-style {
    width: 150px;
    height: 150px;
    z-index: 0;
}

.icon-box-md {
    width: 80px;
    height: 80px;
}

.card-title-sm {
    font-size: 1.25rem;
}

.card-text-sm {
    line-height: 1.8;
}

.bg-warning-light {
    background-color: #fff9e6;
}

.bg-success-light {
    background-color: #e6f9ed;
}

.bg-primary-light {
    background-color: #e6f0ff;
}

.bg-danger-light {
    background-color: #ffeeef;
}

.why-us-luxury .text-warning {
    color: var(--primary-brown) !important;
}

.why-us-luxury .bg-warning {
    background-color: var(--primary-brown) !important;
}

.why-lux-card {
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
}

.why-lux-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.lux-bg-num {
    font-size: 6rem;
    color: #f1f5f9;
    line-height: 0.8;
    transition: all 0.5s ease;
    z-index: 0;
    pointer-events: none;
    letter-spacing: -3px;
}

.why-lux-card:hover .lux-bg-num {
    color: var(--primary-brown);
    opacity: 0.1;
    transform: scale(1.1) translate(-10px, 10px);
}

.lux-icon {
    font-size: 2.8rem;
    transition: all 0.4s ease;
    display: inline-block;
}

.why-lux-card:hover .lux-icon {
    transform: scale(1.1);
}

.lux-title {
    transition: color 0.3s ease;
}

.why-lux-card:not(.bg-dark):hover .lux-title {
    color: var(--primary-brown) !important;
}

.lux-hover-line {
    transition: width 0.5s ease;
}

.why-lux-card:hover .lux-hover-line {
    width: 100% !important;
}

.pointer-events-none {
    pointer-events: none;
}

.why-para {
    font-size: 15px !important;
    color: #7a7d85 !important;
    line-height: 1.6 !important;
}

.cb-text-brown {
    color: var(--primary-brown) !important;
}

.cb-line {
    width: 30px;
    height: 2px;
    background-color: var(--primary-brown);
    display: inline-block;
}

.cb-blog-card {
    border: 1px solid rgba(0, 0, 0, 0.04);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
}

.cb-blog-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.06);
}

.cb-blog-img-wrapper {
    height: 220px;
}

.cb-blog-img {
    height: 100%;
    transition: transform 0.6s ease;
}

.cb-blog-card:hover .cb-blog-img {
    transform: scale(1.08);
}

.cb-blog-category {
    background-color: var(--primary-brown);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.cb-blog-title a {
    transition: color 0.3s ease;
    line-height: 1.4;
    font-size: 1.1rem;
}

.cb-blog-card:hover .cb-blog-title a {
    color: var(--primary-brown) !important;
}

.cb-blog-para {
    font-size: 14px !important;
    color: #7a7d85 !important;
    line-height: 1.5 !important;
}

.cb-blog-btn {
    color: #212529;
    font-size: 13px;
    transition: color 0.3s ease;
}

.cb-btn-icon-wrapper {
    width: 30px;
    height: 30px;
    background-color: rgba(0, 0, 0, 0.04);
    color: #212529;
    transition: all 0.4s ease;
    font-size: 12px;
}

.cb-blog-card:hover .cb-blog-btn {
    color: var(--primary-brown);
}

.cb-blog-card:hover .cb-btn-icon-wrapper {
    background-color: var(--primary-brown);
    color: #fff;
    transform: translateX(4px);
}

/* Modern Pagination */
.cb-page-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #212529;
    background-color: #fff;
    border: 1px solid #e9ecef;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
    transition: all 0.3s ease;
    font-size: 14px;
}

.cb-page-link:hover {
    background-color: var(--primary-brown);
    color: white;
    border-color: var(--primary-brown);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.pagination .active .cb-page-link {
    background-color: var(--primary-brown);
    color: white;
    border-color: var(--primary-brown);
    box-shadow: 0 5px 15px rgba(183, 73, 47, 0.2);
}

.pagination .disabled .cb-page-link {
    background-color: #f8f9fa;
    color: #adb5bd;
    border-color: #e9ecef;
    box-shadow: none;
    pointer-events: none;
}

.font-playfair {
    font-family: 'Barlow', sans-serif !important;
}

.letter-spacing-2 {
    letter-spacing: 2px;
}

.title-line {
    width: 80px;
    height: 3px;
    border-radius: 5px;
}

.policy-content h4 {
    position: relative;
    padding-bottom: 12px;
    font-size: 1.35rem;
}

.policy-content h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 45px;
    height: 2px;
    background-color: var(--bs-warning);
}

.policy-content p,
.policy-content ul {
    font-size: 16px;
}

.policy-content li {
    margin-bottom: 8px;
}


.icon-box5 {
    background: #f5f5f5;
    padding: 11px 0;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    justify-content: center;
}

.icon-box5 .icon {
    max-width: 90px;
    height: 90px;
    color: #e3000f;
}

.icon-box5 .icon i {
    font-size: 22px;
    line-height: 90px;
    -webkit-transition: all 0.5s ease 0s;
    transition: all 0.5s ease 0s;
}

.icon-box5 .content {
    padding-left: 20px;
}

.icon-box5 .content .title {
    font-family: "Jost";
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 3px;
    text-transform: capitalize;
    letter-spacing: 0.6px;
}

.icon-box5:hover .icon i {
    -webkit-transform: scale(1.25);
    -ms-transform: scale(1.25);
    transform: scale(1.25);
}



.icon img {
    width: 66px;
    background: #1a2733;
    padding: 9px 10px 15px 10px;
    border-radius: 50%;
    position: relative;
    top: 12px;
}

.bottom-f {
    padding: 0 25px 36px 25px;
}

.bottom-f .content p {
    margin: 0;
}

.icon-box5:hover {
    box-shadow: -3px -1px 8px 2px #0000000d;
    outline: 1px solid #e1e1e15c;
}

.icon-box5:hover.icon-box5 img {
    background: #b7492f;
}

.cb-social-circle {
    width: 42px;
    height: 42px;
    font-size: 16px;
}

.cb-social-circle:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15) !important;
}

.transition-base {
    transition: all 0.3s ease;
}

.hover-brown:hover {
    color: var(--primary-brown) !important;
}

.hover-brown-bg:hover {
    background-color: var(--primary-brown) !important;
    color: white !important;
    border-color: var(--primary-brown) !important;
}

.cb-btn-brown {
    background-color: var(--primary-brown);
}

.cb-btn-brown:hover {
    background-color: #9c3b24;
    /* Slightly darker brown */
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(183, 73, 47, 0.3) !important;
}

.border-warning {
    border-color: var(--primary-brown) !important;
}

.cb-widget-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    height: 3px;
    width: 50px;
    background-color: var(--primary-brown);
    border-radius: 5px;
}

.cb-form-control:focus {
    box-shadow: none !important;
    background-color: #fff !important;
    border: 1px solid var(--primary-brown) !important;
}

.group-hover:hover .img-hover-scale {
    transform: scale(1.1);
}

.hover-shadow-sm:hover {
    box-shadow: 0 .125rem .25rem rgba(0, 0, 0, .075) !important;
    background-color: #fff !important;
}

.text-shadow {
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

/* Responsive Blog Styles (Removed Inline CSS) */
.cb-img-hero {
    max-height: 390px;
    transition: transform 0.5s ease;
}

.cb-img-hero:hover {
    transform: scale(1.05) !important;
}

.cb-img-overlay {
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85), transparent);
}

.cb-fs-14 {
    font-size: 14px;
}

.cb-fs-16-lh-18 {
    font-size: 16px;
    line-height: 1.8;
}

.cb-dropcap {
    font-size: 5.5rem;
    margin-top: -12px;
}

.cb-quote-box {
    background: linear-gradient(135deg, #fff9f0 0%, #fffdfa 100%);
    box-shadow: 0 10px 30px rgba(183, 73, 47, 0.08);
}

.cb-quote-line {
    width: 30px;
    height: 2px;
    background-color: var(--primary-brown);
}

.cb-icon-50 {
    width: 50px;
    height: 50px;
}

.cb-fs-13 {
    font-size: 13px;
}

.cb-bg-fb {
    background-color: #3b5998;
}

.cb-bg-tw {
    background-color: #1da1f2;
}

.cb-bg-li {
    background-color: #0077b5;
}

.cb-bg-wa {
    background-color: #25d366;
}

.cb-icon-35 {
    width: 35px;
    height: 35px;
}

.cb-avatar-65-1 {
    width: 65px;
    height: 65px;
    background-color: #a8b2c1;
}

.cb-fs-15 {
    font-size: 15px;
}

.cb-reply-card {
    border-color: var(--primary-brown) !important;
    margin-left: 2rem;
}

.cb-avatar-65 {
    width: 65px;
    height: 65px;
}

.cb-badge-author {
    font-size: 10px;
    background-color: var(--primary-brown);
}

.cb-form-line {
    height: 4px;
    background-color: var(--primary-brown);
}

.cb-form-subtitle {
    max-width: 400px;
    font-size: 13px;
    margin: 0 auto;
}

.cb-textarea-100 {
    height: 100px;
}

.cb-cursor-pointer {
    cursor: pointer;
}

.cb-border-gray {
    border-color: #adb5bd;
}

.cb-icon-42 {
    width: 42px;
    height: 42px;
}

.cb-icon-80 {
    width: 80px;
    height: 80px;
}

.cb-fs-12 {
    font-size: 12px;
}

@media (max-width: 768px) {
    .cb-img-hero {
        max-height: 350px;
    }

    .cb-dropcap {
        font-size: 4rem;
        margin-top: -5px;
    }

    .cb-fs-16-lh-18 {
        font-size: 15px;
    }

    .cb-reply-card {
        margin-left: 1rem;
    }

    .cb-quote-box {
        padding: 1.5rem !important;
    }

    .cb-details-content {
        padding: 1.5rem !important;
    }
}

.cb-dashboard-section {
    padding: 4rem 0;
    background-color: #f4f6f9;
    position: relative;
    background-image: url('data:image/svg+xml;utf8,<svg width="20" height="20" xmlns="http://www.w3.org/2000/svg"><circle cx="2" cy="2" r="1.5" fill="%23e2e8f0"/></svg>');
}

.cb-dashboard-container {
    padding: 1.5rem;
}

/* Sidebar */
.cb-dashboard-sidebar {
    background-color: #ffffff;
    border-radius: 1.5rem;
    box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.05);
    padding: 2rem;
    position: sticky;
    top: 100px;
    z-index: 10;
    border: 1px solid rgba(0, 0, 0, 0.02);
}

.cb-user-profile {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px dashed #e2e8f0;
}

.cb-user-icon {
    width: 65px;
    height: 65px;
    background: linear-gradient(135deg, var(--primary-yellow) 0%, #e0a800 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #b7492f;
    font-size: 1.8rem;
    box-shadow: 0 8px 16px rgba(245, 185, 66, 0.3);
    flex-shrink: 0;
}

.cb-user-name {
    font-weight: 700;
    color: var(--bs-dark);
    margin-bottom: 0.25rem;
    font-size: 1.3rem;
}

.cb-user-email {
    color: #64748b;
    font-size: 0.9rem;
    margin-bottom: 0;
    font-family: 'Barlow', sans-serif;
}

/* Navigation */
.cb-dashboard-nav {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.cb-dashboard-nav .cb-dash-link {
    font-family: 'Barlow', sans-serif;
    text-align: left;
    font-weight: 600;
    padding: 1rem 1.5rem;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid transparent;
    color: #475569;
    background-color: transparent;
    width: 100%;
    text-decoration: none;
    font-size: 1.05rem;
}

.cb-dashboard-nav .cb-dash-link:hover {
    background-color: #f8fafc;
    color: var(--primary-brown);
    transform: translateX(5px);
}

.cb-dashboard-nav .cb-dash-link.active {
    background: linear-gradient(90deg, var(--primary-brown) 0%, #7a2d1a 100%);
    color: white;
    box-shadow: 0 10px 20px rgba(156, 59, 36, 0.25);
    border-color: transparent;
}

.cb-dashboard-nav .cb-dash-link.active .cb-nav-icon {
    color: var(--primary-yellow) !important;
    opacity: 1 !important;
}

.cb-nav-icon {
    margin-right: 0.8rem;
    opacity: 0.7;
    font-size: 1.1rem;
}

.cb-logout-btn {
    color: #ef4444 !important;
    background-color: #fef2f2 !important;
    margin-top: 1.5rem;
}

.cb-logout-btn:hover {
    background-color: #ef4444 !important;
    color: white !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 10px 20px rgba(239, 68, 68, 0.2);
}

/* Main Panels */
.cb-dashboard-panel {
    background-color: #ffffff;
    border-radius: 1.5rem;
    box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.05);
    padding: 2rem;
    border: 1px solid rgba(0, 0, 0, 0.02);
}

@media (min-width: 768px) {
    .cb-dashboard-panel {
        padding: 3.5rem;
    }
}

.cb-panel-title {
    font-weight: 500;
    color: var(--primary-brown);
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}



.cb-panel-desc {
    color: #64748b;
    margin-bottom: 3rem;
    font-family: 'Barlow', sans-serif;
    font-size: 1.05rem;
}

/* Stat Cards */
.cb-stat-card {
    padding: 2rem 1.5rem;
    border-radius: 1.2rem;
    background: #fff;
    border: 1px solid #e2e8f0;
    text-align: center;
    height: 100%;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.cb-stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-yellow), var(--primary-brown));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.cb-stat-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    border-color: transparent;
}

.cb-stat-card:hover::before {
    opacity: 1;
}

.cb-stat-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.2rem;
    background: #f8fafc;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.05);
    transition: transform 0.4s ease;
    color: var(--primary-brown);
    font-size: 1.8rem;
}

.cb-stat-card:hover .cb-stat-icon {
    transform: scale(1.15) rotate(5deg);
    background: var(--primary-yellow);
    color: #fff;
    box-shadow: 0 10px 20px rgba(245, 185, 66, 0.4);
}

.cb-stat-value {
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 0.25rem;
    font-size: 2.2rem;
    font-family: 'Playfair Display', serif;
}

.cb-stat-label {
    color: #64748b;
    font-size: 0.9rem;
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 0;
    letter-spacing: 1px;
    font-family: 'Barlow', sans-serif;
}

/* Orders Table */
.cb-orders-table-wrapper {
    overflow-x: auto;
    background: #fff;
    border-radius: 1rem;
    border: 1px solid #e2e8f0;
}

.cb-order-table {
    width: 100%;
    margin-bottom: 0;
}

.cb-order-table th {
    padding: 1.2rem 1.5rem;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.85rem;
    color: #64748b;
    border-bottom: 2px solid #e2e8f0;
    background-color: #f8fafc;
    font-family: 'Barlow', sans-serif;
    letter-spacing: 0.5px;
}

.cb-order-table td {
    padding: 1.5rem;
    vertical-align: middle;
    border-bottom: 1px solid #e2e8f0;
    font-family: 'Barlow', sans-serif;
    font-size: 1.05rem;
}

.cb-order-table tr:hover td {
    background-color: #fcfcfd;
}

.cb-order-id {
    font-weight: 700;
    color: var(--primary-brown);
}

.cb-order-date {
    color: #64748b;
    font-weight: 500;
}

/* Badges */
.cb-badge-status {
    padding: 0.6rem 1.2rem;
    border-radius: 50rem;
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.cb-status-processing {
    background-color: #fef3c7;
    color: #d97706;
    border: 1px solid #fde68a;
}

.cb-status-delivered {
    background-color: #dcfce7;
    color: #15803d;
    border: 1px solid #bbf7d0;
}

.cb-status-cancelled {
    background-color: #fee2e2;
    color: #b91c1c;
    border: 1px solid #fecaca;
}

.cb-order-total {
    font-weight: 700;
    color: #1e293b;
}

.cb-order-items {
    color: #94a3b8;
    font-weight: 500;
    font-size: 0.85rem;
}

.cb-btn-view {
    padding: 0.6rem 1.5rem;
    font-weight: 600;
    border-radius: 50rem;
    transition: all 0.3s ease;
    font-family: 'Barlow', sans-serif;
    letter-spacing: 0.5px;
}

/* Address Cards */
.cb-address-card {
    border: 1px solid #e2e8f0;
    border-radius: 1.2rem;
    padding: 2rem;
    height: 100%;
    position: relative;
    transition: all 0.3s ease;
    background: #fff;
}

@media (min-width: 1200px) {
    .cb-address-card {
        padding: 2.5rem;
    }
}

.cb-address-card:hover {
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
    transform: translateY(-5px);
    border-color: #cbd5e1;
}

.cb-address-default {
    border: 2px solid var(--primary-yellow);
    background: #fffbeb;
}

.cb-badge-default {
    position: absolute;
    top: 0;
    right: 0;
    margin: 1.2rem;
    padding: 0.5rem 1rem;
    border-radius: 50rem;
    font-weight: 700;
    font-size: 0.8rem;
    background: linear-gradient(90deg, var(--primary-yellow) 0%, #f59e0b 100%);
    color: #6e6e6e;
    box-shadow: 0 4px 10px rgba(245, 185, 66, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-family: 'Barlow', sans-serif;
}

.cb-address-name {
    font-weight: 800;
    color: var(--primary-brown);
    margin-bottom: 1.2rem;
    font-size: 1.4rem;
}

.cb-address-details {
    color: #475569;
    line-height: 1.8;
    margin-bottom: 2rem;
    font-family: 'Barlow', sans-serif;
    font-size: 1.05rem;
}

.cb-address-add {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-color: #f8fafc;
    border: 2px dashed #cbd5e1;
    cursor: pointer;
    min-height: 280px;
}

.cb-address-add:hover {
    border-color: var(--primary-yellow);
    background-color: #fff;
}

.cb-address-add:hover .cb-stat-icon {
    transform: scale(1.15) rotate(90deg);
    background: var(--primary-yellow);
    color: #fff;
}

/* Forms */
.cb-form-label {
    font-weight: 600;
    color: #475569;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: 'Barlow', sans-serif;
    margin-bottom: 0.5rem;
}

.cb-input-rounded {
    padding: 0.8rem 1.2rem;
    border-radius: 0.8rem;
    background-color: #f8fafc;
    border: 1px solid #e2e8f0;
    font-family: 'Barlow', sans-serif;
    transition: all 0.3s ease;
}

.cb-input-rounded:focus {
    background-color: #fff;
    border-color: var(--primary-yellow);
    box-shadow: 0 0 0 4px rgba(245, 185, 66, 0.15);
    outline: none;
}

/* Modal Custom Classes */
.cb-modal-content {
    border-radius: 1.5rem;
    border: none;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    overflow: hidden;
}

.cb-modal-header {
    border-bottom: 1px solid #e2e8f0;
    padding: 2rem 2.5rem 1.5rem;
    background: #fcfcfd;
}

.cb-modal-title {
    font-weight: 800;
    color: var(--primary-brown);
    font-size: 1.8rem;
}

.cb-modal-body {
    padding: 2rem 2.5rem;
}

.cb-order-date-text {
    color: #64748b;
    font-size: 0.95rem;
    margin-bottom: 2rem;
    font-family: 'Barlow', sans-serif;
    font-weight: 500;
}

/* Tracker */
.cb-tracker-container {
    background-color: #fcfcfd;
    border-radius: 1.2rem;
    padding: 2rem;
    margin-bottom: 2rem;
    border: 1px solid #e2e8f0;
    padding-bottom: 3.5rem;
}

.cb-tracker-title {
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 2rem;
    font-size: 1.3rem;
}

.cb-tracker-track {
    position: relative;
    margin: 3.5rem 1.5rem;
}

.cb-tracker-progress {
    height: 6px;
    background-color: #e2e8f0;
    border: none;
    border-radius: 10px;
    overflow: visible;
    box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.05);
}

.cb-tracker-steps {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
}

.cb-tracker-step {
    text-align: center;
    position: relative;
}

.cb-tracker-dot {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 2;
    margin-top: -18px;
    margin-left: auto;
    margin-right: auto;
    transition: all 0.3s ease;
    font-size: 1.2rem;
}

.cb-tracker-dot.active {
    background: linear-gradient(135deg, var(--primary-yellow) 0%, #e0a800 100%);
    color: #fff;
    border: none;
}

.cb-tracker-dot.current {
    background-color: #fff;
    border: 3px solid var(--primary-yellow);
    color: var(--primary-yellow);
    box-shadow: 0 0 0 5px rgba(245, 185, 66, 0.2);
}

.cb-tracker-dot.pending {
    background-color: #fff;
    border: 2px solid #cbd5e1;
    color: #cbd5e1;
}

.cb-tracker-label {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    margin-top: 0.8rem;
    width: max-content;
    font-size: 0.9rem;
    font-family: 'Barlow', sans-serif;
    letter-spacing: 0.5px;
}

.cb-tracker-label.active {
    font-weight: 700;
    color: var(--primary-brown);
}

.cb-tracker-label.pending {
    font-weight: 600;
    color: #94a3b8;
}

.cb-delivery-badge-wrapper {
    text-align: center;
    margin-top: 4rem;
}

.cb-delivery-badge {
    padding: 0.6rem 1.5rem;
    border-radius: 50rem;
    font-weight: 600;
    background-color: #fffbeb;
    border: 1px dashed var(--primary-yellow);
    color: #b45309;
    font-family: 'Barlow', sans-serif;
}

/* Items List */
.cb-item-list-container {
    border: 1px solid #e2e8f0;
    border-radius: 1.2rem;
    margin-bottom: 2rem;
    overflow: hidden;
    background: #fff;
}

.cb-item-row {
    display: flex;
    align-items: center;
    padding: 1.2rem 1.5rem;
    transition: background 0.2s ease;
}

.cb-item-row:hover {
    background-color: #f8fafc;
}

.cb-item-row:not(:last-child) {
    border-bottom: 1px solid #e2e8f0;
}

.cb-item-img-wrapper {
    width: 80px;
    height: 80px;
    border-radius: 0.8rem;
    overflow: hidden;
    background-color: #fff;
    border: 1px solid #e2e8f0;
    margin-right: 1.5rem;
    flex-shrink: 0;
    padding: 5px;
}

.cb-item-img-wrapper img {
    border-radius: 0.5rem;
}

.cb-item-name {
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 0.3rem;
    font-size: 1.15rem;
}

.cb-item-qty {
    color: #64748b;
    font-size: 0.95rem;
    margin-bottom: 0;
    font-family: 'Barlow', sans-serif;
    font-weight: 500;
}

.cb-item-price {
    font-weight: 800;
    color: var(--primary-brown);
    font-size: 1.2rem;
}

/* Summary Boxes */
.cb-info-box {
    background-color: #fcfcfd;
    padding: 2rem;
    border-radius: 1.2rem;
    height: 100%;
    border: 1px solid #e2e8f0;
}

.cb-info-title {
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px dashed #cbd5e1;
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: 'Barlow', sans-serif;
}

.cb-info-text {
    font-weight: 700;
    color: var(--primary-brown);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.cb-info-subtext {
    color: #475569;
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-family: 'Barlow', sans-serif;
    font-weight: 500;
}

.cb-summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.8rem;
    font-family: 'Barlow', sans-serif;
}

.cb-summary-label {
    color: #64748b;
    font-size: 1rem;
    font-weight: 500;
}

.cb-summary-val {
    font-weight: 600;
    color: #1e293b;
    font-size: 1rem;
}

.cb-summary-divider {
    border-bottom: 1px dashed #cbd5e1;
    padding-bottom: 1.2rem;
    margin-bottom: 1.2rem;
}

.cb-summary-total-label {
    font-weight: 800;
    color: #1e293b;
    font-size: 1.2rem;
    text-transform: uppercase;
}

.cb-summary-total-val {
    font-weight: 800;
    color: var(--primary-brown);
    font-size: 1.5rem;
}

.cb-modal-footer {
    border-top: 1px solid #e2e8f0;
    justify-content: center;
    padding: 1.5rem 2.5rem 2rem;
    background: #fcfcfd;
    border-radius: 0 0 1.5rem 1.5rem;
}

/* =========================================
   ABOUT US PAGE PREMIUM DESIGN
   ========================================= */

.about-us-section {
    position: relative;
    z-index: 1;
}

.about-image-wrapper {
    position: relative;
    padding-right: 2rem;
    padding-bottom: 2rem;
    z-index: 1;
}

.main-img-wrap {
    height: 500px;
    border-radius: 2rem;
    overflow: hidden;
    position: relative;
    z-index: 1;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.sub-img-wrap {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 55%;
    height: 250px;
    border-radius: 1.5rem;
    z-index: 2;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
    border: 8px solid #fff !important;
}

.about-experience-badge {
    top: 5%;
    left: -20px;
    width: 130px;
    height: 130px;
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%) !important;
    border: 5px solid #fff;
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    animation: float 4s ease-in-out infinite;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2) !important;
}

.badge-year {
    font-size: 2.2rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.badge-text {
    font-size: 0.8rem;
    letter-spacing: 1px;
    color: #cbd5e1;
}

.zoom-on-hover {
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.about-image-wrapper:hover .zoom-on-hover {
    transform: scale(1.05);
}

.story-badge {
    background-color: #fffbeb !important;
    border: 1px solid var(--primary-yellow) !important;
    color: var(--primary-brown) !important;
    padding: 0.5rem 1.2rem !important;
    border-radius: 50rem !important;
    font-weight: 700;
}

.story-line {
    height: 2px;
    background: linear-gradient(90deg, var(--primary-yellow) 0%, transparent 100%);
    opacity: 0.5;
}

.icon-box-sm {
    width: 50px;
    height: 50px;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.icon-box-sm:hover {
    transform: translateY(-3px) scale(1.05);
}

.stats-section {
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%) !important;
    border-top: 5px solid var(--primary-yellow);
    border-bottom: 5px solid var(--primary-yellow);
}

.stats-overlay {
    background-image: url('data:image/svg+xml;utf8,<svg width="40" height="40" xmlns="http://www.w3.org/2000/svg"><circle cx="2" cy="2" r="1" fill="rgba(255,255,255,0.05)"/></svg>');
}

.stat-text {
    color: #94a3b8 !important;
}

.about-feature-card {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid #f1f5f9 !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03) !important;
}

.about-feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08) !important;
    border-color: #e2e8f0 !important;
}

.card-glow-style {
    width: 150px;
    height: 150px;
    filter: blur(40px);
    z-index: 0;
    transition: opacity 0.4s ease;
}

.about-feature-card:hover .card-glow-style {
    opacity: 0.15 !important;
}

.icon-box-md {
    width: 80px;
    height: 80px;
    z-index: 1;
    transition: all 0.4s ease;
}

.bg-warning-light {
    background-color: #fffbeb !important;
}

.bg-success-light {
    background-color: #f0fdf4 !important;
}

.bg-primary-light {
    background-color: #eff6ff !important;
}

.bg-danger-light {
    background-color: #fef2f2 !important;
}

.about-feature-card:hover .icon-box-md {
    transform: scale(1.1) rotate(5deg);
}

@keyframes float {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }

    100% {
        transform: translateY(0);
    }
}

@media (max-width: 991px) {
    .main-img-wrap {
        height: 400px;
    }

    .sub-img-wrap {
        width: 65%;
        height: 200px;
    }

    .about-experience-badge {
        top: -15px;
        left: 10px;
        width: 100px;
        height: 100px;
    }

    .badge-year {
        font-size: 1.6rem;
    }

    .badge-text {
        font-size: 0.6rem;
    }
}

/* From invoice.html */
.invoice-page {
    --primary-brown: #9c3b24;
    --primary-yellow: #f5b942;
    --text-dark: #2c3e50;
    --text-muted: #8395a7;
    --border-light: #eaeff5;
    background-color: #f0f2f5;
    font-family: 'Poppins', sans-serif;
    color: var(--text-dark);
    -webkit-font-smoothing: antialiased;
}

.invoice-page .print-actions {
    max-width: 950px;
    margin: 30px auto 10px;
    display: flex;
    justify-content: flex-end;
    gap: 15px;
}

.invoice-page .cb-btn-yellow {
    background-color: var(--primary-yellow);
    color: var(--text-dark);
    border: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.invoice-page .cb-btn-yellow:hover {
    background-color: #e0a800;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(245, 185, 66, 0.4);
}

.invoice-wrapper {
    max-width: 950px;
    margin: 0 auto 50px;
    background: #ffffff;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
}

.invoice-top-bar {
    height: 12px;
    background: linear-gradient(90deg, var(--primary-brown) 0%, var(--primary-yellow) 100%);
}

.invoice-header {
    padding: 50px 60px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--border-light);
    background: url('data:image/svg+xml;utf8,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="40" stroke="%23f8f9fa" stroke-width="2" fill="none" opacity="0.5"/></svg>') repeat;
}

.invoice-brand img {
    width: 160px;
    margin-bottom: 15px;
}

.invoice-brand p {
    margin: 0;
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.6;
}

.invoice-title-block {
    text-align: right;
}

.invoice-title-block h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--primary-brown);
    margin: 0 0 5px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.invoice-title-block p {
    font-family: 'Barlow', sans-serif;
    font-size: 1.1rem;
    color: var(--text-muted);
    margin: 0;
    font-weight: 500;
}

.invoice-title-block p span {
    color: var(--text-dark);
    font-weight: 700;
}

.invoice-info {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 40px;
    padding: 40px 60px;
    background-color: #fcfcfd;
    border-bottom: 1px solid var(--border-light);
}

.info-box h6 {
    font-family: 'Barlow', sans-serif;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1.5px;
    color: var(--primary-brown);
    font-weight: 700;
    margin-bottom: 15px;
}

.info-box p {
    margin: 0 0 5px;
    font-size: 0.95rem;
    color: var(--text-dark);
}

.info-box .name {
    font-weight: 700;
    font-size: 1.1rem;
    color: #111;
    margin-bottom: 8px;
}

.info-box i {
    color: var(--primary-yellow);
    width: 20px;
}

.invoice-body {
    padding: 50px 60px;
}

.invoice-page .table {
    margin-bottom: 0;
}

.invoice-page .table th {
    font-family: 'Barlow', sans-serif;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
    color: var(--text-muted);
    border-top: none;
    border-bottom: 2px solid var(--border-light);
    padding: 15px 10px;
    background: transparent;
}

.invoice-page .table td {
    padding: 20px 10px;
    vertical-align: middle;
    border-bottom: 1px solid var(--border-light);
    font-size: 0.95rem;
    font-weight: 500;
}

.item-name {
    font-weight: 700;
    color: var(--text-dark);
    font-size: 1.05rem;
    margin-bottom: 4px;
}

.item-sku {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.invoice-summary-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 40px 60px;
    background-color: #fcfcfd;
    border-top: 2px solid var(--primary-brown);
}

.payment-info {
    width: 45%;
}

.payment-info h6 {
    font-family: 'Barlow', sans-serif;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1.5px;
    color: var(--text-muted);
    font-weight: 700;
    margin-bottom: 15px;
}

.payment-info p {
    font-size: 0.9rem;
    color: var(--text-dark);
    margin-bottom: 5px;
}

.summary-box {
    width: 45%;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    font-size: 1rem;
    color: var(--text-dark);
}

.summary-row.total {
    border-top: 1px dashed var(--border-light);
    margin-top: 10px;
    padding-top: 20px;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary-brown);
}

.invoice-footer {
    background-color: #1a1a1a;
    color: #fff;
    padding: 30px 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-thanks {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-style: italic;
    margin: 0;
    color: var(--primary-yellow);
}

.footer-contact {
    font-size: 0.9rem;
    color: #adb5bd;
    text-align: right;
    margin: 0;
}

.footer-contact a {
    color: #fff;
    text-decoration: none;
}

.paid-stamp {
    position: absolute;
    top: 280px;
    right: 80px;
    font-size: 3rem;
    font-weight: 800;
    color: rgba(46, 204, 113, 0.15);
    border: 5px solid rgba(46, 204, 113, 0.15);
    border-radius: 10px;
    padding: 10px 30px;
    transform: rotate(-15deg);
    text-transform: uppercase;
    letter-spacing: 4px;
    pointer-events: none;
    font-family: 'Barlow', sans-serif;
}

@media print {
    .invoice-page {
        background: #fff !important;
    }

    .invoice-wrapper {
        margin: 0;
        box-shadow: none;
        max-width: 100%;
        border: none !important;
    }

    .no-print {
        display: none !important;
    }

    .invoice-header,
    .invoice-info,
    .invoice-summary-wrapper {
        background-color: #fff !important;
        border-color: #dee2e6 !important;
    }

    .invoice-footer {
        background-color: #fff !important;
        color: #000 !important;
        border-top: 2px solid #000;
    }

    .footer-thanks {
        color: #000 !important;
    }

    .footer-contact,
    .footer-contact a {
        color: #000 !important;
    }

    .paid-stamp {
        color: rgba(46, 204, 113, 0.3) !important;
        border-color: rgba(46, 204, 113, 0.3) !important;
    }

    .invoice-page * {
        -webkit-print-color-adjust: exact !important;
        print-color-adjust: exact !important;
    }
}

/* From thankyou.html - ULTRA MODERN DESIGN */
.ty-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #F7F5F0;
    padding: 2rem;
    font-family: 'Outfit', sans-serif;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

/* Floating Orbs for Glassmorphism Background */
.ty-bg-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    z-index: -1;
    animation: floatOrb 12s ease-in-out infinite;
}
.ty-bg-shape.shape-1 {
    width: 400px;
    height: 400px;
    background-color: rgba(242, 140, 40, 0.15); /* Orange orb */
    top: -100px;
    left: -100px;
}
.ty-bg-shape.shape-2 {
    width: 500px;
    height: 500px;
    background-color: rgba(24, 78, 58, 0.12); /* Green orb */
    bottom: -150px;
    right: -100px;
    animation-delay: -6s;
}

@keyframes floatOrb {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-40px) scale(1.1); }
}

/* Glassmorphism Card */
.ty-card {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 20px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.05);
    padding: 3.5rem 3rem;
    max-width: 580px;
    width: 100%;
    text-align: center;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.6);
}

.ty-icon-wrapper {
    width: 80px;
    height: 80px;
    background: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: #184E3A;
    font-size: 2.2rem;
    box-shadow: 0 15px 30px rgba(24, 78, 58, 0.12);
    position: relative;
}

.ty-icon-wrapper::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 1px solid rgba(24, 78, 58, 0.3);
    animation: ty-pulse 2.5s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}

@keyframes ty-pulse {
    0% { transform: scale(1); opacity: 1; }
    100% { transform: scale(1.4); opacity: 0; }
}

.ty-title {
    font-family: 'Cinzel', serif;
    font-weight: 700;
    color: #184E3A;
    margin-bottom: 0.8rem;
    font-size: 2.4rem;
    letter-spacing: -0.5px;
}

.ty-subtitle {
    color: #555;
    font-size: 1.05rem;
    line-height: 1.6;
    margin-bottom: 2.5rem;
}

/* Modern 2x2 Grid */
.ty-order-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 2.5rem;
    text-align: left;
}

.ty-detail-box {
    background: rgba(255, 255, 255, 0.6);
    border: 1px solid rgba(0, 0, 0, 0.04);
    border-radius: 12px;
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 6px;
    transition: transform 0.3s ease, background 0.3s ease;
}

.ty-detail-box:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.03);
}

.ty-detail-label {
    color: #888;
    font-weight: 500;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.ty-detail-value {
    font-weight: 600;
    color: #111;
    font-size: 1.1rem;
}

/* Modern Minimalist Buttons */
.ty-btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #184E3A;
    color: #ffffff;
    text-decoration: none;
    padding: 0.9rem 2.5rem;
    border-radius: 50rem;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 20px rgba(24, 78, 58, 0.2);
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.ty-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 25px rgba(24, 78, 58, 0.3);
    color: #ffffff;
    background: #123d2d;
}

.ty-btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    color: #111;
    text-decoration: none;
    padding: 0.9rem 2.5rem;
    border-radius: 50rem;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid #ddd;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.ty-btn-secondary:hover {
    background: #f4f4f4;
    color: #111;
    border-color: #ccc;
    transform: translateY(-3px);
}

/* From network-details.html */
.transition-base {
    transition: all 0.3s ease;
}

.hover-brown:hover {
    color: var(--primary-brown) !important;
}

.hover-brown-bg:hover {
    background-color: var(--primary-brown) !important;
    color: white !important;
    border-color: var(--primary-brown) !important;
}

.cb-btn-brown {
    background-color: var(--primary-brown);
}

.cb-btn-brown:hover {
    background-color: #9c3b24;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(183, 73, 47, 0.3) !important;
}

.cb-widget-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    height: 3px;
    width: 50px;
    background-color: var(--primary-brown);
    border-radius: 5px;
}

.cb-form-control:focus {
    box-shadow: none !important;
    background-color: #fff !important;
    border: 1px solid var(--primary-brown) !important;
}

.hover-shadow:hover {
    box-shadow: 0 .5rem 1rem rgba(0, 0, 0, .15) !important;
}

.cb-icon-42 {
    width: 42px;
    height: 42px;
}

.cb-icon-80 {
    width: 80px;
    height: 80px;
}

.cb-fs-13 {
    font-size: 13px;
}

.group-hover:hover .img-hover-scale {
    transform: scale(1.1);
}

.text-shadow {
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.cb-img-hero {
    max-height: 550px;
    transition: transform 0.5s ease;
}

.cb-img-hero:hover {
    transform: scale(1.05) !important;
}

.cb-img-overlay {
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85), transparent);
}

.cb-fs-16-lh-18 {
    font-size: 16px;
    line-height: 1.8;
}

.cb-dropcap {
    font-size: 5.5rem;
    margin-top: -12px;
}

@media (max-width: 768px) {
    .cb-img-hero {
        max-height: 350px;
    }

    .cb-dropcap {
        font-size: 4rem;
        margin-top: -5px;
    }

    .cb-fs-16-lh-18 {
        font-size: 15px;
    }

    .cb-details-content {
        padding: 1.5rem !important;
    }
}

/* From return-policy.html */
.letter-spacing-2 {
    letter-spacing: 2px;
}

.title-line {
    width: 80px;
    height: 3px;
    border-radius: 5px;
}

.policy-content h4 {
    position: relative;
    padding-bottom: 12px;
    font-size: 1.35rem;
}

.policy-content h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 45px;
    height: 2px;
    background-color: var(--bs-warning);
}

.policy-content p,
.policy-content ul {
    font-size: 16px;
}

.policy-content li {
    margin-bottom: 8px;
}

/* From checkout.html */
.cb-address-card {
    cursor: pointer;
    transition: all 0.3s ease;
    background-color: #fff;
}

.cb-address-card:hover {
    border-color: #f7a70e !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.cb-radio-circle {
    width: 20px;
    height: 20px;
    border: 2px solid #dee2e6;
    border-radius: 50%;
    display: inline-block;
    position: relative;
    transition: all 0.3s ease;
}

input[type="radio"]:checked+.cb-address-card .cb-radio-circle {
    border-color: #f7a70e;
    background-color: #f7a70e;
}

input[type="radio"]:checked+.cb-address-card .cb-radio-circle::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #fff;
}

input[type="radio"]:checked+.cb-address-card {
    border-color: #f7a70e !important;
    background-color: #fffaf0;
}

/* From faq.html */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.cb-fade-in-up {
    animation: fadeInUp 0.8s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
    opacity: 0;
}

.cb-faq-section {
    background-color: #f8fafc;
}

.cb-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    z-index: -1;
    opacity: 0.4;
    animation: float 10s ease-in-out infinite;
}

.cb-shape-1 {
    width: 300px;
    height: 300px;
    background-color: rgba(245, 185, 66, 0.3);
    top: -100px;
    left: -100px;
}

.cb-shape-2 {
    width: 400px;
    height: 400px;
    background-color: rgba(156, 59, 36, 0.15);
    bottom: -150px;
    right: -100px;
    animation-delay: -5s;
}

@keyframes float {
    0% {
        transform: translateY(0) scale(1);
    }

    50% {
        transform: translateY(-30px) scale(1.05);
    }

    100% {
        transform: translateY(0) scale(1);
    }
}

.cb-accordion-premium .cb-faq-item {
    border: 1px solid #e2e8f0;
    margin-bottom: 1.2rem;
    border-radius: 1rem !important;
    background: #ffffff;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    overflow: hidden;
}

.cb-accordion-premium .cb-faq-item:hover {
    box-shadow: 0 15px 30px -5px rgba(0, 0, 0, 0.1);
    transform: translateY(-3px);
    border-color: #cbd5e1;
}

.cb-accordion-premium .accordion-button {
    background-color: transparent;
    padding: 1.8rem;
    box-shadow: none;
    color: #1e293b;
    transition: color 0.3s ease;
}

.cb-accordion-premium .accordion-button:not(.collapsed) {
    background: linear-gradient(to right, #fff, #fffbf0);
    color: var(--primary-brown);
    box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.03);
}

.cb-accordion-premium .accordion-button:focus {
    border-color: transparent;
    box-shadow: none;
}

.cb-faq-num {
    font-size: 1.1rem;
    color: var(--primary-yellow);
    margin-right: 1rem;
    font-weight: 800;
    font-family: 'Playfair Display', serif;
}

.cb-accordion-premium .accordion-body {
    padding: 0 1.8rem 1.8rem 4.5rem;
    font-size: 1.05rem;
    color: #64748b;
}

@media (max-width: 768px) {
    .cb-accordion-premium .accordion-body {
        padding: 0 1.5rem 1.5rem 1.5rem;
    }
}

.cb-accordion-premium .accordion-button::after {
    background-image: none;
    content: '\f067';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 1rem;
    color: #94a3b8;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: #f1f5f9;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.cb-accordion-premium .accordion-button:not(.collapsed):after {
    content: '\f068';
    transform: rotate(180deg);
    background-color: var(--primary-yellow);
    color: #000000c4;
    box-shadow: 0 4px 10px rgba(245, 185, 66, 0.4);
}