@import url('https://fonts.googleapis.com/css2?family=Cabin:ital,wght@0,400..700;1,400..700&family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&display=swap');
/* ===== Reset & Base ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}



:root {
    --top-bar-bg: #282025;
    --hero-bg: #FDF1EA;
    --kutch-bg: #B5A194;
    --yellow-banner: #F5C842;
    --beige-banner: #E8D5C4;
    --blue-banner: #B8D4E3;
    --text-dark: #2d2d2d;
    --text-muted: #6b6b6b;
    --maroon: #8B2942;
    --black: #1a1a1a;
    --white: #ffffff;
    --contentbrd:#343434;
    --bs-btn-hover-color:#ffffff;
    --line_str:      #ede4e4;

    --peach: #f5ddd0;
    --dark: #1a1a1a;
    --gold: #e8a838;
    --pink: #d63f7c;
    --dr_pink: #F53F85;
    --white: #fff;
    --text: #3a2a1a;

    --bg:        #000000;
      --line:      rgba(255,255,255,0.10);
      --red:       #c0392b;
      --white:     #ffffff;
      --muted:     rgba(255,255,255,0.65);
      --hover:     #e05555;

    --body-font: "Cabin", sans-serif;
    --body-other-font: "Lato", sans-serif;


    --rose:      #7a3f3f;   /* Jinius wordmark */
    --rose-dk:   #5c2e2e;   /* hover/deep */
    --rose-lt:   #f5eaea;   /* tint bg */
    --pink:      #e8617a;   /* dot accent */
    --pink-lt:   #fdeef1;   /* pink tint */
    --coal:      #3a3535;   /* body text */
    --line_cd:   #ede4e4;
    --muted_cd:   #323232;
    --white:     #ffffff;
    --cream:     #fdf8f8;
    --ease:      cubic-bezier(0.22, 0.61, 0.36, 1);
    --drawer-w:  420px;

    --rose-md: #9b5a5a; 
    --rose-xl: #fdf6f6;
    --pink-dk: #c44d65;
    --muted_cart: #9e8e8e;
    --hint_cart: #c4b4b4;
    --line_cart: #ede4e4;
    --success: #3d8a5e;
    --suc-lt: #edf7f2;
    --shadow: 0 4px 32px rgba(122, 63, 63, .10);
    --shadow-lg: 0 12px 60px rgba(122, 63, 63, .14);
}


@font-face {
  font-family: 'icomoon';
  src:  url('fonts/icomoon.eot?r01l00');
  src:  url('fonts/icomoon.eot?r01l00#iefix') format('embedded-opentype'),
    url('fonts/icomoon.ttf?r01l00') format('truetype'),
    url('fonts/icomoon.woff?r01l00') format('woff'),
    url('fonts/icomoon.svg?r01l00#icomoon') format('svg');
  font-weight: normal;
  font-style: normal;
  font-display: block;
}

[class^="icon-"], [class*=" icon-"] {
  /* use !important to prevent issues with browser extensions that change fonts */
  font-family: 'icomoon' !important;
  speak: never;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;

  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.icon-shield:before {
  content: "\e901";
}
.icon-login:before {
  content: "\e904";
  
}
.icon-quote:before {
  content: "\e903";
  
}
.icon-bag:before {
  content: "\e900";
}
.icon-delivery:before {
  content: "\e902";
}
.icon-scure:before {
  content: "\e906";
}
.icon-search:before {
  content: "\e907";
}
.icon-support:before {
  content: "\e908";
}
.icon-wishlist:before {
  content: "\e909";
}
.icon-dtlarw:before {
  content: "\e90c";
  
}


body {
    font-family: var(--body-font);
    color: var(--text-dark);
    line-height: 1.5;
    overflow-x: hidden;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* ===== Top Bar ===== */
.top-bar {
    background: var(--maroon);
    color: var(--white);
    font-size: 13px;
    padding: 10px 24px;
    position: sticky;
    top: 0;
    z-index: 1001;
    display: flex;
    align-items: center;
    justify-content: space-between;
    overflow: hidden;
}
.top-bar-sticky-right{
    display: flex;
    align-items: center;
    gap: 16px;
}
.top-bar-sticky-left {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    gap: 16px;
    padding-right: 24px;
    margin-right: 24px;
    border-right: 0px solid rgba(255,255,255,0.2);
}

.top-bar-contact {
    opacity: 0.95;
}

.top-bar-insta {
    color: var(--white);
    font-size: 18px;
}

.top-bar-insta:hover {
    opacity: 0.85;
}

.top-bar-marquee-wrap {
    flex: 1;
    overflow: hidden;
    min-width: 0;
}

.top-bar-marquee {
    display: inline-flex;
    animation: marquee 30s linear infinite;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.top-bar-marquee span {
    white-space: nowrap;
    padding-right: 100px;
    font-weight: 500;
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ===== Main Header ===== */
.main-header.header-scrolled {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
    transition: box-shadow 0.3s ease;
}

.main-header {
    background: var(--bs-btn-hover-color);
    padding: 10px 0;
    box-shadow: 0 1px 3px rgba(0,0,0,0.06);
    position: sticky;
    top: var(--topbar-h, 43px);
    overflow: visible;
    z-index: 1000;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width:100%;
    max-width: 100%;
    padding:0 24px;
}

.header-inner .main-nav {
    flex: 1;
    display: flex;
    justify-content: flex-start;
}
.header-inner .logo img{width: 100%;}
.header-inner .logo {
    flex-shrink: 0;
    margin: 0 40px;
    width: 100%;
    max-width: 130px;
}

.header-inner .header-user-menu {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

.logo {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.logo-line {
    width: 40px;
    height: 2px;
    background: var(--maroon);
    margin-bottom: 4px;
}

.logo-text {
    font-family: "Cabin", sans-serif;
    font-size: 32px;
    font-weight: 700;
    color: var(--maroon);
    letter-spacing: -0.5px;
}

.main-nav {
    display: flex;
    gap: 32px;
    align-items: center;
}

.main-nav > a,
.main-nav .nav-dropdown-trigger {
    font-size: 15px;
    font-weight: 600;
    color: var(--text-dark);
}

.main-nav > a:hover,
.main-nav .nav-dropdown-trigger:hover,
.main-nav > a.active,
.main-nav .nav-dropdown-trigger.active {
    color: var(--maroon);
}

.main-nav .nav-dropdown-trigger i {
    font-size: 10px;
    margin-left: 4px;
    transition: transform 0.2s ease;
}

.nav-dropdown {
    position: relative;
}

.nav-dropdown:hover .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
}

.nav-dropdown:hover .nav-dropdown-trigger i {
    transform: rotate(180deg);
}

.nav-dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    margin-top: 8px;
    min-width: 160px;
    background: var(--white);
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
    padding: 8px 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s ease, visibility 0.2s ease;
    z-index: 1000;
}

.nav-dropdown-menu a {
    display: block;
    padding: 10px 20px;
    font-size: 14px;
    color: var(--text-dark);
    transition: background 0.2s, color 0.2s;
}

.nav-dropdown-menu a:hover {
    background: #f8f6f5;
    color: var(--maroon);
}

.nav-dropdown-menu a.active {
    color: var(--maroon);
    font-weight: 600;
}

/* Mega Menu - positioned relative to main-header (nav-mega has position: static) */
.nav-mega {
    position: static;
}

.nav-mega .nav-mega-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    margin-top: -2px;
    padding: 14px 0 32px;
    background: var(--white);
    box-shadow: 0 12px 40px rgba(0,0,0,0.12);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s ease, visibility 0.2s ease;
    z-index: 1000;
}

.nav-mega:hover .nav-mega-menu {
    opacity: 1;
    visibility: visible;
}

.nav-mega:hover .nav-dropdown-trigger i {
    transform: rotate(180deg);
}

.nav-mega .nav-mega-menu .container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

.mega-menu-inner {
    display: flex;
    gap: 64px;
    align-items: flex-start;
}

.mega-menu-col {
    display: flex;
    flex-direction: column;
    gap: 14px;
    min-width: 160px;
}

.mega-menu-col h4 {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--maroon);
    margin-bottom: 4px;
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(139,41,66,0.2);
}

.mega-menu-col a {
    font-size: 15px;
    font-weight: 500;
    color: var(--text-dark);
    padding: 4px 0;
    transition: color 0.2s ease, padding-left 0.2s ease;
}

.mega-menu-col a:hover {
    color: var(--maroon);
    padding-left: 8px;
}

/* Mega menu collection hover preview */
.mega-preview-col {
    flex: 1;
    padding: 0 !important;
    min-width: 0;
}
.mega-preview-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}
.mega-preview-card {
    display: flex;
    flex-direction: column;
    gap: 8px;
    transition: transform .2s ease;
}
.mega-preview-card:hover {
    transform: translateY(0px);
}
.mega-preview-card-img {
    aspect-ratio: 3 / 4;
    overflow: hidden;
    border-radius: 8px;
    background: #f5f4f2;
}
.mega-preview-card-img a:hover{padding-left: 0;}
    .mega-preview-card-img a{display: block;height: 100%;padding: 0;}
.mega-grid-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: opacity .18s ease, transform .3s ease;
}
.mega-preview-card:hover .mega-grid-img {
    /* transform: scale(1.01); */
}
.mega-preview-card-title {
    font-size: 13px;
    font-weight: 500;
    color: var(--text-dark);
    text-align: center;
}

/* Active link in collection list */
.mega-menu-col a.mega-link-active {
    color: var(--maroon) !important;
    padding-left: 8px;
    font-weight: 600;
}

/* Featured section with images */
.mega-menu-featured-with-images {
    min-width: 0;
}

.mega-menu-featured-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}

.mega-menu-featured-card {
    display: flex;
    flex-direction: column;
    gap: 8px;
    text-align: center;
    padding: 0;
    transition: transform 0.2s ease;
}

.mega-menu-featured-card:hover {
    padding-left: 0;
}

.mega-menu-featured-card:hover {
    transform: translateY(0px);
}

.mega-menu-featured-card-img {
    display: block;
    width: 100%;
    aspect-ratio: 3/4;
    border-radius: 8px;
    overflow: hidden;
    background: #f5f4f2;
}

.mega-menu-featured-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.mega-menu-featured-card:hover .mega-menu-featured-card-img img {
    transform: scale(1.05);
}

.mega-menu-featured-card-title {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-dark);
}

.mega-menu-featured-card:hover .mega-menu-featured-card-title {
    color: var(--maroon);
}

.mega-menu-featured {
    margin-left: auto;
    padding-left: 32px;
    border-left: 1px solid #eee;
}

.mega-menu-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 28px !important;
    background: var(--maroon);
    color: var(--white) !important;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px !important;
    margin-top: 4px;
    transition: background 0.2s ease;
}

.mega-menu-cta:hover {
    background: #6b1f33;
    padding-left: 28px !important;
}

.header-user-menu {
    display: flex;
    align-items: center;
    gap: 20px;
}
html body .header-user-menu a i{font-size: 18px;}
html body .header-user-menu a.wishlist_area,
html body .header-user-menu a.cart_area{position: relative;}
html body .header-user-menu a.wishlist_area span.count,
html body .header-user-menu a.cart_area span.count{
    position: absolute;
    top: -7px;
    right: -7px;
    background-color: var(--dr_pink);
    color: var(--white);
    padding: 5px;
    border-radius: 50%;
    font-size: 9px;
    display: flex;
    width: 15px;
    height: 15px;
    line-height: 0;
    text-align: center;
    justify-content: center;
    align-items: center;
}

.header-user-menu a {
    font-size: 13px;
    font-weight: 500;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 6px;
}


.header-user-menu a:hover {
    color: var(--maroon);
}

.header-user-menu a i {
    font-size: 14px;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: var(--text-dark);
}

/* ===== Buttons ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-primary {
    background: var(--black);
    color: var(--white);
}

.btn-primary:hover {
    background: #333;
}

/* ===== Hero Section ===== */
.hero {
    background: var(--hero-bg);
    padding: 50px 0 60px;
    position: relative;
    overflow: hidden;
}

/* Confetti SVG overlay */
.hero-confetti {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 3;
}

/* Hanging fern branch (top-center, between text and image) */
.hero-fern {
    position: absolute;
    top: -10px;
    left: 48%;
    width: 70px;
    height: 130px;
    z-index: 4;
    pointer-events: none;
}

/* Bottom-right fern leaves near image */
.hero-fern-br {
    position: absolute;
    bottom: 20px;
    right: 4%;
    width: 90px;
    height: 70px;
    z-index: 4;
    pointer-events: none;
}

.hero-inner {
    position: relative;
    z-index: 2;
}

.hero-content {
    position: relative;
    align-self: stretch;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-text-box {
    border: 2px solid var(--black);
    padding: 48px 42px 44px;
    position: relative;
    background: rgba(255,255,255,0.45);
}

.hero-subtitle {
    font-size: 15px;
    font-style: italic;
    color: var(--text-muted);
    margin-bottom: 8px;
}

.hero-title {
    font-family: "Cabin", sans-serif;
    font-size: 42px;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.2;
    margin-bottom: 16px;
}

.hero-desc {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 28px;
    max-width: 340px;
    line-height: 1.7;
}

.hero-dots {
    display: flex;
    gap: 10px;
    padding-top: 24px;
}

.hero-dots .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--black);
    cursor: pointer;
    transition: all 0.2s;
}

.hero-dots .dot.active {
    border: 2px solid var(--black);
    background: transparent;
}

.hero-image {
    position: relative;
    display: flex;
    align-items: center;
}

.hero-image-wrapper {
    position: relative;
    z-index: 2;
    overflow: hidden;
    border-radius: 50% 8px 8px 50% / 20% 0 0 20%;
    width: 100%;
    height: 100%;
}

.hero-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 460px;
    object-position: top center;
}

/* ===== Promotional Banners ===== */
.promo-banners {
    padding: 40px 0 0;
}

.banners-grid {
    /* Bootstrap row handles layout */
}
.banners-grid.row { margin-left: 0; margin-right: 0; }

/* Mobile slider overrides */
@media (max-width: 768px) {
    .banners-grid.slick-initialized {
        display: block;
        overflow: hidden;
    }
    .banners-grid.slick-initialized .slick-slide [class*="col-"] {
        width: 100%;
        max-width: 100%;
        flex: 0 0 100%;
        padding: 0;
    }
    .banners-grid .slick-dots {
        position: static;
        margin-top: 14px;
        padding: 0;
    }
    .banners-grid .slick-dots li button:before {
        font-size: 8px;
        color: var(--maroon);
    }
}

.banner {
    min-height: 300px;
    padding: 24px;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    border-radius: 0px;
    transition: all 0.5s ease;
    box-shadow: none;
}
.banner:hover{
    box-shadow: 0 8px 28px rgba(0,0,0,.22);
}

.banner-yellow {
    background: var(--yellow-banner);
}

.banner-beige {
    background: var(--beige-banner);
}

.banner-blue {
    background: var(--blue-banner);
}

.banner-red {
    background: #C94C4C;
}
.banner-red .banner-content.topright{top: 1em;transition: all 0.5s ease;}
.banner-blue .banner-content.bottomright{bottom: 1.5em;transition: all 0.5s ease;}
.banner-beige .banner-content.topright{top:1em;transition: all 0.5s ease;}
.banner .banner-content.bottomleft{transition: all 0.5s ease;top: 0;}
.banner-red:hover .banner-content.topright{top:1.65em;}
.banner-blue:hover .banner-content.bottomright{bottom:2.3em;}

.banner-beige:hover .banner-content.topright{top: 2em;}
.banner:hover .banner-content.bottomleft{top: -1em;}
.banner-content {
    position: relative;
    z-index: 2;

    transition: all 0.3s ease;
}
.banner-content.topright{
    position: absolute;
    top: 1.5em;
    right: 2em;
}
.banner-content.bottomright{position: absolute;bottom:2em;right: 1.5em;}

.banner-subtitle {
    font-size: 12px;
    font-weight: 600;
    display: block;
    margin-bottom: 2px;
    color: var(--black);
    font-family: var(--body-font);
    text-shadow: 0 1px 4px rgba(0,0,0,0.15);
}

.banner-title {
    font-family: var(--body-font);
    font-size: 28px;
    font-weight: 700;
    color: var(--black);
    text-shadow: 0 2px 6px rgba(0,0,0,0.2);
}

.banner-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

.banner::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.45) 0%, rgba(0,0,0,0.05) 50%, transparent 100%);
    z-index: 1;
    pointer-events: none;
}
@keyframes blockIn {
    from { opacity: 0; transform: translateY(18px); }
    to   { opacity: 1; transform: translateY(0); }
}
/* ===== Section Headers ===== */
.section-header {
    text-align: center;
    margin-bottom: 40px;
}

.section-subtitle {
    font-size: 14px;
    color: var(--dr_pink);
    font-weight: 700;
    margin-bottom: 8px;
}

.section-title {
    font-family: var(--body-font)
    font-size: 36px;
    font-weight: 700;
    color: var(--text-dark);
    position: relative;
}
.instagram-feed .section-title::after{
    background:url(../img/border_wh.png) no-repeat scroll center;
    background-size: 100% auto;
}
.section-title::after{
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: -27px;
    width: 17%;
    height: 13px;
    margin: 0 auto;
    background:url(../img/border.png) no-repeat scroll center;
    background-size: 100% auto;
}
.testimonials-section .section-title::after{content: none;}

/* ===== Recent Products ===== */
.recent-products {
    padding: 80px 0;
}

.products-grid {
    /* Bootstrap row/col handles layout */
}

.product-card {
    position: relative;
}

.product-image {
    position: relative;
    overflow: hidden;
    margin-bottom: 20px;
    aspect-ratio: 3/4;
    border-radius:16px;
}

.product-image-link {
    display: block;
    position: absolute;
    inset: 0;
    
}

.product-image-link img,
.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

.product-overlay {
    /*position: absolute;*/
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    /* background: linear-gradient(transparent, rgba(0,0,0,0.7)); */
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.product-card:hover .product-overlay {
    opacity: 1;
}

.overlay-icon {
    width: 40px;
    height: 40px;
    background: var(--white);
    color: var(--text-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s, color 0.2s;
    border:0;
}

.overlay-icon:hover {
    background: var(--maroon);
    color: var(--white);
}

.wishlist-active {
    background: var(--maroon);
    color: var(--white);
}

.product-card .btn-add-cart{
    position: absolute;
    bottom: 0;
    right: 0;
    text-transform: uppercase;
}
.product__overly{
    display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}
.product__overly{position: absolute;bottom: 0;right: 0;left: 0;top: 50%;transform: translateY(-50%);height: 40px;}

.btn-add-cart,
a.btn-add-cart {
    background: #c41e3a;
    color: var(--white);
    border: none;
    text-decoration: none;
    padding: 12px 20px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    transition: background 0.2s;
}

.btn-add-cart:hover,
a.btn-add-cart:hover {
    background: #a01830;
    color: var(--white);
}

.product-title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
}

.product-title a {
    color: var(--text-dark);
}

.product-title a:hover {
    color: var(--maroon);
}

.product-rating {
    color: #f5c842;
    font-size: 12px;
    margin-bottom: 8px;
}

.product-price {
    display: flex;
    align-items: center;
    gap: 10px;
}

.price-old {
    font-size: 14px;
    color: var(--text-muted);
    text-decoration: line-through;
}

.price-current {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-dark);
}

/* ===== Kutch Work Banner ===== */
.kutch-banner {
    background: linear-gradient(100deg, #886C53 0%, #886C53 40%, #BCA693 65%, #BCA693 100%);
    padding: 80px 0;
}

.kutch-inner {
    max-width: 1280px;
    margin: 0 auto;
    position: relative;
    min-height: 360px;
}

.kutch-content {
    padding: 56px 40px 56px 64px;
}

.kutch-title {
    font-family: var(--body-font);
    font-size: 46px;
    font-weight: 700;
    color: var(--white);
    line-height: 1.15;
    margin-bottom: 4px;
}

.kutch-desc {
    font-size: 14px;
    color: rgba(255,255,255,0.82);
    margin: 20px 0 28px;
    max-width: 400px;
    line-height: 1.7;
}

.kutch-images {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding: 30px 40px 30px 0;
}

.kutch-img-frame {
    position: absolute;
    top: 50%;
    left: 40%;
    transform: translate(-50%, -50%);
    width: 35%;
    height: 67%;
    border: 7px solid rgba(255,255,255,0.18);
    pointer-events: none;
    z-index: 0;
}

.kutch-img-box {
    overflow: hidden;
    position: relative;
    z-index: 1;
    box-shadow: 0 8px 30px rgba(0,0,0,0.18);
}

.kutch-img-small {
    width: 300px;
    flex-shrink: 0;
    margin-right: 24px;
    align-self: flex-end;
    margin-bottom: -10px;
}

.kutch-img-small img {
    width: 100%;
    height: 330px;
    object-fit: cover;
}

.kutch-img-tall {
    width: 340px;
    flex-shrink: 0;
    z-index: 2;
}

.kutch-img-tall img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

/* ===== Shop By Category ===== */
.shop-category {
    padding: 80px 0;
}

.category-grid {
    /* Bootstrap row/col handles layout */
    gap:15px;
    justify-content: center;
}

.category-card {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1;
    min-height: 500px;
    border-radius: 16px;
}

.category-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
    transform: scale(1.08);
}

.category-card:hover img {
    transform: scale(1.09);
}
.category-card:hover h3{
    height: 80px;
}
.category-card:hover h3{max-width: 100%;}
.category-card h3 {
    position: absolute;
    bottom: 0;
    height: 61px;
    left: 0;
    right: 0;
    padding: 20px;
    background: linear-gradient(transparent, rgba(0,0,0,0.7));
    color: var(--white);
    font-size: 28px;
    font-weight: 600;
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    text-align: center;
    transition: all 0.5s ease;
}

/* ===== Trust Badges ===== */
.trust-badges {
    padding: 56px 0;
    border-top: 1px solid rgba(0,0,0,0.05);
    border-bottom: 1px solid rgba(0,0,0,0.05);
    background: var(--maroon);
}

.trust-grid {
    text-align: center;
}

.trust-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
}

.trust-icon {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background: #f3f2f0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: var(--text-dark);
    box-shadow: 0 1px 10px 1px rgba(0,0,0,0.5);
}
.trust-icon .icon-shield,
.trust-icon .icon-noun-trust{font-size: 40px;}
.trust-label {
    font-size: 20px;
    font-weight: 600;
    color: var(--white);
}

/* ===== Best Selling Products ===== */
.best-selling {
    padding: 80px 0;
}

.product-badge-label {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.5px;
    color: var(--maroon);
    margin-top: 12px;
}

/* ===== Testimonial ===== */
.testimonial {
    padding: 56px 0;
    background: #ededeb;
    overflow: hidden;
}

.testi-inner {
    /* Bootstrap row/col handles layout */
}

.testi-content {
    padding: 24px 0;
}

.testi-heading {
    font-family: 'DM Sans', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 16px;
}

.testi-quote {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 14px;
}

.testi-mark {
    font-size: 38px;
    color: var(--text-dark);
    flex-shrink: 0;
    line-height: 1;
    margin-top: 2px;
}

.testi-highlight {
    font-size: 18px;
    font-weight: 500;
    color: var(--text-dark);
    padding-top: 8px;
}

.testi-text {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.75;
    max-width: 420px;
    margin-bottom: 16px;
}

.testi-author {
    font-size: 15px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 22px;
}

.testi-nav {
    display: inline-flex;
}

.testi-arrow {
    width: 40px;
    height: 34px;
    border: 1.5px solid var(--black);
    background: var(--black);
    color: var(--white);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 2px;
    cursor: pointer;
    font-size: 15px;
    font-weight: 600;
    transition: background 0.2s, color 0.2s;
    font-family: inherit;
    line-height: 1;
}

.testi-arrow:first-child {
    border-right: 1px solid rgba(255,255,255,0.15);
}

.testi-dot {
    font-size: 16px;
    line-height: 1;
    opacity: 0.6;
}

.testi-arrow:hover {
    background: #444;
}

.testi-visual {
    position: relative;
    min-height: 280px;
}

.testi-dark-block {
    position: absolute;
    top: -14px;
    right: -40px;
    width: 80%;
    height: 108%;
    background: #2a2a2a;
}

.testi-avatars {
    position: absolute;
    top: 50%;
    left: 6%;
    transform: translateY(-20%);
    display: flex;
    gap: 70px;
    z-index: 2;
}

.testi-avatar {
    width: 94px;
    height: 94px;
    border-radius: 50%;
    overflow: hidden;
    border: 3.5px solid rgba(255,255,255,0.9);
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
    background: #ddd;
}

.testi-avatar:last-child {
    margin-top: -14px;
}

.testi-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width: 1024px) {
    .testi-inner {
        grid-template-columns: 1fr;
    }

    .testi-visual {
        min-height: 240px;
    }

    .testi-dark-block {
        right: -20px;
    }
}

@media (max-width: 768px) {
    .testi-visual {
        min-height: 200px;
    }

    .testi-dark-block {
        width: 88%;
        right: -10px;
    }

    .testi-avatar {
        width: 70px;
        height: 70px;
    }

    .testi-avatars {
        gap: 40px;
    }
}

/* ===== Home Blog Grid ===== */
.home-blog {
    padding: 80px 0;
}

.home-blog-grid {
    /* Bootstrap row/col handles layout */
}

.home-blog-card {
    border-radius: 10px;
    overflow: hidden;
    background: var(--white);
    border: 0px solid rgba(0,0,0,0.06);
    transition: transform 0.25s, box-shadow 0.25s;
}

.home-blog-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.08);
}

.home-blog-img {
    overflow: hidden;
    aspect-ratio: 16 / 10;
}

.home-blog-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.home-blog-card:hover .home-blog-img img {
    transform: scale(1.05);
}

.home-blog-body {
    padding: 22px 24px 26px;
}

.home-blog-cat {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--maroon);
    margin-bottom: 10px;
}

.home-blog-title {
    font-family: var(--body-font)
    font-size: 19px;
    font-weight: 700;
    line-height: 1.3;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.home-blog-excerpt {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 14px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.home-blog-date {
    font-size: 12px;
    color: rgba(0,0,0,0.35);
    font-weight: 600;
}

@media (max-width: 768px) {
    .home-blog {
        padding: 56px 0;
    }
}

/* ===== Instagram Feed ===== */
.instagram-feed {
    padding: 50px 0 0;
    background: linear-gradient(100deg, #886C53 0%, #886C53 40%, #BCA693 65%, #BCA693 100%);
}

.instagram-item {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1;
    display: block;
}

.instagram-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.instagram-item:hover img {
    transform: scale(1.08);
}

.instagram-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.instagram-overlay i {
    font-size: 32px;
    color: var(--white);
}

.instagram-item:hover .instagram-overlay {
    opacity: 1;
}

/* ===== Footer ===== */
.footer {
    background: #1a1618;
    color: rgba(255,255,255,0.9);
}

.footer-main {
    padding: 80px 0 60px;
}

.footer-grid {
    /* Bootstrap row/col handles layout */
}

.footer-brand {
    max-width: 100%;
}

@media (min-width: 992px) {
    .footer-brand {
        max-width: 280px;
    }
}

.footer-logo {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 20px;
}

.footer-logo .logo-line {
    width: 40px;
    height: 2px;
    background: var(--maroon);
    margin-bottom: 4px;
}

.footer-logo .logo-text {
    font-family: "Cabin", sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: var(--white);
}

.footer-tagline {
    font-size: 14px;
    line-height: 1.7;
    color: rgba(255,255,255,0.7);
    margin-bottom: 24px;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.08);
    color: var(--white);
    font-size: 16px;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: var(--maroon);
    transform: translateY(-2px);
}

.footer-col h4,
.footer-newsletter h4 {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 24px;
}

.footer-col ul {
    list-style: none;
    padding-left: 0;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    color: rgba(255,255,255,0.7);
    font-size: 14px;
    transition: color 0.2s ease;
}

.footer-col ul li a:hover {
    color: var(--white);
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: rgba(255,255,255,0.7);
    font-size: 14px;
}

.footer-contact li i {
    color: var(--maroon);
    margin-top: 2px;
    flex-shrink: 0;
}

.footer-newsletter p {
    font-size: 14px;
    color: rgba(255,255,255,0.7);
    margin-bottom: 20px;
    line-height: 1.6;
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.newsletter-form input {
    padding: 14px 18px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
    color: var(--white);
    font-size: 14px;
    transition: border-color 0.2s ease;
}

.newsletter-form input::placeholder {
    color: rgba(255,255,255,0.4);
}

.newsletter-form input:focus {
    outline: none;
    border-color: var(--maroon);
}

.newsletter-form .btn {
    width: 100%;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 24px 0;
}

.footer-bottom-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.footer-copyright {
    font-size: 13px;
    color: rgba(255,255,255,0.5);
}

.footer-payments {
    display: flex;
    gap: 16px;
}

.payment-icon {
    font-size: 24px;
    color: rgba(255,255,255,0.4);
}

/* ===== Responsive ===== */
@media (max-width: 1024px) {
    .hero-image {
        order: -1;
    }

    .hero-image-wrapper img {
        min-height: 350px;
    }

    .kutch-content {
        padding: 40px 32px;
    }

    .kutch-images {
        padding: 20px 32px 30px;
    }

    .hero-fern {
        left: 42%;
        width: 55px;
        height: 100px;
    }

    .hero-fern-br {
        width: 70px;
        height: 55px;
    }
}

@media (max-width: 768px) {
    .top-bar {
        flex-wrap: wrap;
        padding: 10px 16px;
    }

    .top-bar-sticky-left {
        margin-right: 12px;
        padding: 0 12px 0 0;
    }

    .header-inner {
        flex-wrap: wrap;
    }

    .header-inner .main-nav {
        display: none;
        order: 3;
        width: 100%;
        flex-direction: column;
        padding: 20px 0;
        border-top: 1px solid #eee;
        gap: 12px;
    }

    .header-inner .header-user-menu {
        display: none;
        order: 4;
        width: 100%;
        flex-direction: column;
        padding: 0 0 20px;
        gap: 18px;
    }

    .main-header.mobile-open .main-nav {
        /* display: flex; */
    }

    .nav-dropdown .nav-dropdown-menu {
        position: static;
        box-shadow: none;
        padding: 8px 0 8px 16px;
        margin-top: 4px;
        margin-left: 0;
        border-left: 2px solid #eee;
        display: none;
    }

    .nav-dropdown.open .nav-dropdown-menu {
        display: block;
        opacity: 1;
        visibility: visible;
    }

    .nav-dropdown.open .nav-dropdown-trigger i {
        transform: rotate(180deg);
    }

    /* Mobile mega menu */
    .nav-mega .nav-mega-menu {
        position: static;
        transform: none;
        width: 100%;
        box-shadow: none;
        padding: 16px 0 16px 16px;
        margin-top: 4px;
        margin-left: 0;
        border-left: 2px solid #eee;
        display: none;
        border-radius: 0;
    }

    .nav-mega.open .nav-mega-menu {
        display: block;
        opacity: 1;
        visibility: visible;
    }

    .nav-mega .mega-menu-inner {
        flex-direction: column;
        gap: 24px;
    }

    .nav-mega .mega-menu-featured {
        margin-left: 0;
        padding-left: 0;
        border-left: none;
    }

    .nav-mega .mega-menu-featured-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .header-inner .logo {
        margin: 0 20px;
        order: 1;
    }

    .mobile-menu-btn {
        display: block;
        order: 2;
    }

    .hero-title {
        font-size: 32px;
    }

    .hero-text-box {
        padding: 30px 25px;
    }

    .banners-grid {
        grid-template-columns: 1fr;
    }

    .products-grid {
        grid-template-columns: 1fr;
    }

    .kutch-title {
        font-size: 36px;
    }

    .kutch-content {
        padding: 32px 20px;
    }

    .kutch-images {
        padding: 16px 20px 24px;
    }

    .kutch-img-small {
        width: 240px;
    }

    .kutch-img-small img {
        height: 260px;
    }

    .kutch-img-tall {
        width: 280px;
    }

    .kutch-img-tall img {
        height: 320px;
    }

    .hero-fern { display: none; }
    .hero-fern-br { display: none; }

    .hero-image-wrapper {
        border-radius: 16px;
    }

    .category-grid {
        grid-template-columns: 1fr;
    }

    .trust-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 28px 16px;
    }

    .trust-icon {
        width: 64px;
        height: 64px;
        font-size: 22px;
    }

    .footer-main {
        padding: 60px 0 40px;
    }

    .footer-brand {
        max-width: none;
    }

    .footer-bottom-inner {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
}

/* ===== Auth Modal ===== */
.am-overlay {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(20, 20, 20, 0.55);
    backdrop-filter: blur(6px);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.25s ease, visibility 0.25s ease;
    padding: 24px;
}

.am-overlay.am-open {
    opacity: 1;
    visibility: visible;
}

.am-modal {
    position: relative;
    width: 100%;
    max-width: 460px;
    max-height: 90vh;
    overflow-y: auto;
    border-radius: 22px;
    background: var(--white);
    box-shadow: 0 32px 80px rgba(0, 0, 0, 0.20);
    padding: 55px 32px 32px;
    transform: translateY(18px) scale(0.97);
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.am-open .am-modal {
    transform: translateY(0) scale(1);
}

.am-modal::-webkit-scrollbar {
    width: 5px;
}
.am-modal::-webkit-scrollbar-thumb {
    background: rgba(0,0,0,0.10);
    border-radius: 999px;
}

.am-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 36px;
    height: 36px;
    border-radius: 999px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    background: rgba(0, 0, 0, 0.03);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: var(--text-muted);
    transition: all 0.15s ease;
    z-index: 2;
}

.am-close:hover {
    border-color: rgba(0, 0, 0, 0.18);
    color: var(--text-dark);
    background: rgba(0, 0, 0, 0.06);
}

.am-tabs {
    display: flex;
    gap: 4px;
    padding: 4px;
    border-radius: 14px;
    background: rgba(0, 0, 0, 0.05);
    margin-bottom: 28px;
}

.am-tab {
    flex: 1;
    padding: 11px 16px;
    border: none;
    border-radius: 11px;
    background: transparent;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    color: var(--text-muted);
    transition: all 0.2s ease;
    font-family: inherit;
}

.am-tab.active {
    background: var(--white);
    color: var(--text-dark);
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
}

.am-panel {
    display: none;
}

.am-panel.active {
    display: block;
}

.am-title {
    font-family: "Cabin", sans-serif;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 4px;
}

.am-sub {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 22px;
}

.am-social {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-bottom: 20px;
}

.am-social-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding: 11px 10px;
    border-radius: 12px;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    border: 1px solid rgba(0, 0, 0, 0.10);
    transition: all 0.2s ease;
    font-family: inherit;
    white-space: nowrap;
}

.am-social-btn i {
    font-size: 16px;
}

.am-google {
    background: var(--white);
    color: var(--text-dark);
}

.am-google:hover {
    border-color: #4285f4;
    box-shadow: 0 4px 18px rgba(66, 133, 244, 0.12);
}

.am-google i { color: #4285f4; }

.am-facebook {
    background: #1877f2;
    color: var(--white);
    border-color: #1877f2;
}

.am-facebook:hover { background: #166bda; }

.am-divider {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 20px;
}

.am-divider::before,
.am-divider::after {
    content: "";
    flex: 1;
    height: 1px;
    background: rgba(0, 0, 0, 0.08);
}

.am-divider span {
    font-size: 11px;
    font-weight: 600;
    color: var(--text-muted);
    letter-spacing: 0.5px;
    white-space: nowrap;
}

.am-form {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.am-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.am-field {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.am-field label,
.am-otp label {
    font-size: 12px;
    font-weight: 700;
}

.am-field input {
    width: 100%;
    padding: 12px 14px;
    border-radius: 10px;
    border: 1px solid rgba(0, 0, 0, 0.12);
    font-size: 14px;
    font-family: inherit;
    background: rgba(251, 250, 248, 0.6);
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.am-field input:focus {
    outline: none;
    border-color: rgba(139, 41, 66, 0.45);
    box-shadow: 0 0 0 3px rgba(139, 41, 66, 0.08);
}

.am-phone {
    display: flex;
    align-items: stretch;
    border-radius: 10px;
    border: 1px solid rgba(0, 0, 0, 0.12);
    overflow: hidden;
    background: rgba(251, 250, 248, 0.6);
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.am-phone:focus-within {
    border-color: rgba(139, 41, 66, 0.45);
    box-shadow: 0 0 0 3px rgba(139, 41, 66, 0.08);
}

.am-country {
    display: flex;
    align-items: center;
    padding: 0 12px;
    font-size: 13px;
    font-weight: 700;
    color: var(--text-muted);
    background: rgba(0, 0, 0, 0.03);
    border-right: 1px solid rgba(0, 0, 0, 0.08);
}

.am-phone input {
    border: none;
    border-radius: 0;
    padding: 12px 12px;
    background: transparent;
}

.am-phone input:focus {
    box-shadow: none;
}

.am-otp {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.am-otp-boxes {
    display: flex;
    gap: 10px;
}

.am-otp-box {
    width: 48px;
    height: 48px;
    text-align: center;
    font-size: 18px;
    font-weight: 700;
    border: 1px solid rgba(0, 0, 0, 0.14);
    border-radius: 10px;
    background: var(--white);
    font-family: inherit;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.am-otp-box:focus {
    outline: none;
    border-color: var(--maroon);
    box-shadow: 0 0 0 3px rgba(139, 41, 66, 0.10);
}

.am-otp-note {
    font-size: 12px;
    color: var(--text-muted);
}

.am-resend {
    background: none;
    border: none;
    color: var(--maroon);
    font-weight: 700;
    cursor: pointer;
    font-size: 12px;
    font-family: inherit;
}

.am-resend:hover { text-decoration: underline; }

.am-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 12px;
    color: var(--text-muted);
    cursor: pointer;
    line-height: 1.5;
}

.am-checkbox input {
    margin-top: 2px;
    accent-color: var(--maroon);
}

.am-checkbox a {
    color: var(--maroon);
    font-weight: 600;
}

.am-checkbox a:hover { text-decoration: underline; }

.am-submit {
    width: 100%;
    padding: 14px 20px;
    border-radius: 12px;
    font-size: 13px;
    margin-top: 2px;
}

.am-switch {
    text-align: center;
    font-size: 13px;
    color: var(--text-muted);
    margin-top: 22px;
}

.am-switch-btn {
    background: none;
    border: none;
    color: var(--maroon);
    font-weight: 700;
    cursor: pointer;
    font-size: 13px;
    font-family: inherit;
}

.am-switch-btn:hover { text-decoration: underline; }

@media (max-width: 480px) {
    .am-overlay {
        padding: 12px;
    }

    .am-modal {
        padding: 28px 20px 24px;
        border-radius: 18px;
    }

    .am-row {
        grid-template-columns: 1fr;
    }

    .am-otp-box {
        width: 44px;
        height: 44px;
        font-size: 16px;
    }
}

/* ===== Search Modal ===== */
.sm-overlay {
    position: fixed;
    inset: 0;
    z-index: 9998;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding: 80px 24px 24px;
    background: rgba(20, 20, 20, 0.50);
    backdrop-filter: blur(8px);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s ease, visibility 0.2s ease;
}

.sm-overlay.sm-open {
    opacity: 1;
    visibility: visible;
}

.sm-inner {
    position: relative;
    width: 100%;
    max-width: 640px;
    max-height: calc(100vh - 120px);
    display: flex;
    flex-direction: column;
    border-radius: 20px;
    background: var(--white);
    box-shadow: 0 32px 80px rgba(0, 0, 0, 0.22);
    overflow: hidden;
    transform: translateY(-12px) scale(0.98);
    transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.sm-open .sm-inner {
    transform: translateY(0) scale(1);
}

.sm-close {
    position: absolute;
    top: 4px;
    right: 4px;
    width: 34px;
    height: 34px;
    border-radius: 999px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    background: rgba(255, 255, 255, 0.83);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    color: var(--text-muted);
    transition: all 0.15s ease;
    z-index: 2;
}

.sm-close:hover {
    border-color: rgba(0, 0, 0, 0.18);
    color: var(--text-dark);
}

.sm-header {
    padding: 55px 22px 55px;
    flex-shrink: 0;
}

.sm-input-wrap {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    border-radius: 14px;
    border: 1px solid rgba(0, 0, 0, 0.10);
    background: rgba(251, 250, 248, 0.6);
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.sm-input-wrap:focus-within {
    border-color: rgba(139, 41, 66, 0.40);
    box-shadow: 0 0 0 3px rgba(139, 41, 66, 0.08);
}

.sm-input-icon {
    color: var(--text-muted);
    font-size: 16px;
    flex-shrink: 0;
}

.sm-input {
    flex: 1;
    border: none;
    background: transparent;
    font-size: 16px;
    font-family: inherit;
    color: var(--text-dark);
    outline: none;
}

.sm-input::placeholder {
    color: rgba(0, 0, 0, 0.32);
}

.sm-kbd {
    flex-shrink: 0;
    font-size: 11px;
    font-weight: 700;
    padding: 4px 8px;
    border-radius: 6px;
    border: 1px solid rgba(0, 0, 0, 0.10);
    background: rgba(0, 0, 0, 0.04);
    color: var(--text-muted);
    font-family: inherit;
}

.sm-filters {
    display: none;
    gap: 6px;
    padding: 14px 0 12px;
    overflow-x: auto;
}

.sm-filter {
    padding: 7px 16px;
    border-radius: 999px;
    border: 1px solid rgba(0, 0, 0, 0.10);
    background: transparent;
    font-size: 12px;
    font-weight: 700;
    cursor: pointer;
    color: var(--text-muted);
    white-space: nowrap;
    font-family: inherit;
    transition: all 0.15s ease;
}

.sm-filter:hover {
    border-color: rgba(139, 41, 66, 0.28);
    color: var(--text-dark);
}

.sm-filter.active {
    background: var(--black);
    color: var(--white);
    border-color: var(--black);
}

.sm-results {
    flex: 1;
    overflow-y: auto;
    padding: 6px 12px 14px;
    
}

.sm-results::-webkit-scrollbar { width: 5px; }
.sm-results::-webkit-scrollbar-thumb { background: rgba(0,0,0,0.08); border-radius: 999px; }

.sm-result {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px 12px;
    border-radius: 14px;
    transition: background 0.15s ease;
    cursor: pointer;
}

.sm-result:hover {
    background: rgba(0, 0, 0, 0.035);
}

.sm-result img {
    width: 48px;
    height: 56px;
    object-fit: cover;
    border-radius: 10px;
    flex-shrink: 0;
}

.sm-result-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: rgba(139, 41, 66, 0.06);
    color: var(--maroon);
    font-size: 16px;
    flex-shrink: 0;
}

.sm-result-info {
    flex: 1;
    min-width: 0;
}

.sm-result-info strong {
    display: block;
    font-size: 14px;
    font-weight: 700;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.sm-result-info span {
    font-size: 12px;
    color: var(--text-muted);
}

.sm-result-type {
    flex-shrink: 0;
    font-size: 11px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 999px;
    background: rgba(0, 0, 0, 0.04);
    color: var(--text-muted);
    letter-spacing: 0.3px;
}

.sm-empty {
    padding: 48px 24px;
    text-align: center;
    color: var(--text-muted);
}

.sm-empty i {
    font-size: 36px;
    margin-bottom: 14px;
    opacity: 0.3;
}

.sm-empty p {
    font-size: 15px;
    font-weight: 600;
}

.sm-trending {
    padding: 8px 22px 22px;
    display: none;
}

.sm-trending h4 {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 12px;
}

.sm-trending-tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.sm-trend-tag {
    padding: 8px 16px;
    border-radius: 999px;
    border: 1px solid rgba(0, 0, 0, 0.10);
    font-size: 13px;
    font-weight: 600;
    color: var(--text-dark);
    transition: all 0.15s ease;
}

.sm-trend-tag:hover {
    border-color: var(--maroon);
    color: var(--maroon);
    background: rgba(139, 41, 66, 0.04);
}

.search-trigger {
    cursor: pointer;
}

.header-search-wrap {
    display: none;
    align-items: center;
    overflow: visible;
    max-width: 0;
    opacity: 0;
    position: relative;
    transition: max-width 0.3s ease, opacity 0.3s ease;
}

.header-search-wrap.search-wrap-open {
    display: flex;
    max-width: 280px;
    opacity: 1;
}

.header-search-wrap .sm-input-wrap {
    display: flex;
    align-items: center;
    background: #f5f5f5;
    border: 1px solid #ddd;
    border-radius: 24px;
    padding: 6px 14px;
    gap: 8px;
    white-space: nowrap;
}

.header-search-wrap .sm-input {
    border: none;
    background: transparent;
    outline: none;
    font-size: 14px;
    width: 220px;
    color: #333;
}

.header-search-close {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    line-height: 1;
    color: #888;
    font-size: 14px;
    display: flex;
    align-items: center;
}

.header-search-close:hover {
    color: #333;
}

.search-suggest-box {
    display: none;
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    width: 360px;
    background: #fff;
    border: 1px solid #e8e8e8;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.12);
    z-index: 9999;
    overflow: hidden;
    max-height: 420px;
    overflow-y: auto;
}

.search-suggest-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 14px;
    text-decoration: none;
    color: inherit;
    border-bottom: 1px solid #f2f2f2;
    transition: background 0.15s;
}

.search-suggest-item:last-child {
    border-bottom: none;
}

.search-suggest-item:hover {
    background: #faf5f7;
}

.suggest-img {
    width: 52px;
    height: 68px;
    object-fit: cover;
    border-radius: 6px;
    flex-shrink: 0;
}

.suggest-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
    flex: 1;
    min-width: 0;
}

.suggest-title {
    font-size: 14px;
    font-weight: 600;
    color: #222;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.suggest-price {
    display: flex;
    align-items: center;
    gap: 8px;
}

.suggest-sale-price {
    font-size: 14px;
    font-weight: 700;
    color: #8b2942;
}

.suggest-base-price {
    font-size: 12px;
    color: #aaa;
    text-decoration: line-through;
}

.search-no-result {
    padding: 20px;
    text-align: center;
    color: #888;
    font-size: 14px;
}

@media (max-width: 768px) {
    .sm-overlay {
        padding: 24px 14px 14px;
    }

    .sm-inner {
        max-height: calc(100vh - 48px);
        border-radius: 16px;
    }

    .sm-kbd {
        display: none;
    }

    .sm-header {
        padding: 16px 16px 0;
    }

    .sm-trending {
        padding: 8px 16px 18px;
    }
}

/* ===== Info Pages (Shipping, Returns, Size Guide, FAQs, Track Order) ===== */
.ip-tag {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--maroon);
    margin-bottom: 14px;
}

.ip-hero {
    padding: 72px 0 56px;
    background: #fbfaf8;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.ip-hero::before {
    content: "";
    position: absolute;
    inset: -60px 0 auto 0;
    height: 340px;
    background: radial-gradient(800px 260px at 30% 40%, rgba(139, 41, 66, 0.08), transparent 60%),
                radial-gradient(600px 220px at 75% 35%, rgba(232, 200, 122, 0.14), transparent 60%);
    pointer-events: none;
}

.ip-hero-title {
    font-family: "Cabin", sans-serif;
    font-size: clamp(34px, 5vw, 56px);
    font-weight: 700;
    line-height: 1.12;
    margin-bottom: 18px;
    position: relative;
}

.ip-hero-title em {
    font-style: normal;
    color: rgba(139, 41, 66, 0.85);
}

.ip-hero-sub {
    font-size: 16px;
    color: var(--text-muted);
    line-height: 1.7;
    max-width: 560px;
    margin: 0 auto;
    position: relative;
}

.ip-breadcrumb {
    display: flex;
    gap: 8px;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 22px;
    position: relative;
}

.ip-breadcrumb a {
    color: var(--text-muted);
    transition: color 0.15s;
}

.ip-breadcrumb a:hover { color: var(--maroon); }

.ip-breadcrumb span { opacity: 0.5; }

.ip-content {
    padding: 64px 0 80px;
}

.ip-content .container {
    max-width: 900px;
}

.ip-section {
    margin-bottom: 52px;
}

.ip-section:last-child {
    margin-bottom: 0;
}

.ip-section-title {
    font-family: "Cabin", sans-serif;
    font-size: clamp(22px, 2.5vw, 30px);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 22px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.ip-section-title i {
    color: var(--maroon);
    font-size: 20px;
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: rgba(139, 41, 66, 0.07);
    flex-shrink: 0;
}

.ip-text {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 18px;
}

.ip-text:last-child { margin-bottom: 0; }

.ip-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
    margin-top: 24px;
}

.ip-card {
    padding: 28px 24px;
    border-radius: 16px;
    border: 1px solid rgba(0, 0, 0, 0.06);
    background: #fbfaf8;
    transition: transform 0.2s, box-shadow 0.2s;
}

.ip-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.06);
}

.ip-card-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: rgba(139, 41, 66, 0.08);
    color: var(--maroon);
    font-size: 18px;
    margin-bottom: 16px;
}

.ip-card h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 8px;
}

.ip-card p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.7;
}

.ip-highlight {
    padding: 24px 28px;
    border-radius: 14px;
    background: rgba(139, 41, 66, 0.04);
    border-left: 4px solid var(--maroon);
    margin: 24px 0;
}

.ip-highlight p {
    font-size: 14px;
    line-height: 1.7;
    color: var(--text-dark);
}

.ip-highlight strong { color: var(--maroon); }

.ip-steps {
    counter-reset: step;
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.ip-steps li {
    counter-increment: step;
    display: flex;
    gap: 16px;
    align-items: flex-start;
    padding: 16px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.ip-steps li:last-child { border-bottom: none; }

.ip-steps li::before {
    content: counter(step);
    flex-shrink: 0;
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: var(--maroon);
    color: var(--white);
    font-size: 13px;
    font-weight: 700;
}

.ip-steps li strong {
    display: block;
    font-size: 15px;
    margin-bottom: 4px;
}

.ip-steps li span {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
}

.ip-table-wrap {
    overflow-x: auto;
    margin: 20px 0;
    border-radius: 14px;
    border: 1px solid rgba(0, 0, 0, 0.06);
}

.ip-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
}

.ip-table th {
    background: #fbfaf8;
    font-weight: 700;
    text-align: left;
    padding: 14px 18px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    white-space: nowrap;
}

.ip-table td {
    padding: 14px 18px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
    color: var(--text-muted);
}

.ip-table tr:last-child td { border-bottom: none; }

.sg-visual {
    display: flex;
    gap: 24px;
    align-items: flex-start;
    margin: 28px 0;
}

.sg-visual-img {
    width: 220px;
    height: 280px;
    border-radius: 14px;
    background: #f5f0eb;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.sg-visual-img i {
    font-size: 56px;
    color: rgba(139, 41, 66, 0.2);
}

.sg-measure-tips {
    flex: 1;
}

.sg-measure-tips h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 12px;
}

.sg-measure-tips ul {
    list-style: none;
    padding: 0;
}

.sg-measure-tips li {
    padding: 8px 0;
    font-size: 14px;
    color: var(--text-muted);
    display: flex;
    gap: 10px;
    align-items: flex-start;
    line-height: 1.6;
}

.sg-measure-tips li i {
    color: var(--maroon);
    margin-top: 3px;
    flex-shrink: 0;
}

.faq-categories {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 32px;
}

.faq-cat-btn {
    padding: 8px 20px;
    border-radius: 999px;
    border: 1px solid rgba(0, 0, 0, 0.10);
    background: transparent;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    color: var(--text-muted);
    font-family: inherit;
    transition: all 0.15s;
}

.faq-cat-btn:hover {
    border-color: rgba(139, 41, 66, 0.3);
    color: var(--text-dark);
}

.faq-cat-btn.active {
    background: var(--black);
    color: var(--white);
    border-color: var(--black);
}

.faq-item {
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 14px;
    margin-bottom: 12px;
    overflow: hidden;
    transition: box-shadow 0.2s;
}

.faq-item:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 18px 22px;
    border: none;
    background: transparent;
    cursor: pointer;
    font-size: 15px;
    font-weight: 700;
    text-align: left;
    font-family: inherit;
    color: var(--text-dark);
}

.faq-question i {
    font-size: 12px;
    color: var(--text-muted);
    transition: transform 0.25s ease;
    flex-shrink: 0;
}

.faq-item.open .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
}

.faq-answer-inner {
    padding: 0 22px 20px;
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.8;
}

.faq-item.open .faq-answer {
    max-height: 400px;
}

.to-search-box {
    max-width: 560px;
    margin: 0 auto 48px;
    display: flex;
    gap: 10px;
}

.to-search-input {
    flex: 1;
    padding: 14px 18px;
    border-radius: 14px;
    border: 1px solid rgba(0, 0, 0, 0.10);
    font-size: 15px;
    font-family: inherit;
    outline: none;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.to-search-input:focus {
    border-color: rgba(139, 41, 66, 0.4);
    box-shadow: 0 0 0 3px rgba(139, 41, 66, 0.08);
}

.to-search-btn {
    padding: 14px 28px;
    border-radius: 14px;
    background: var(--black);
    color: var(--white);
    border: none;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    font-family: inherit;
    transition: background 0.2s;
    white-space: nowrap;
}

.to-search-btn:hover {
    background: var(--maroon);
}

.to-result {
    display: none;
    max-width: 600px;
    margin: 0 auto;
    padding: 32px;
    border-radius: 18px;
    border: 1px solid rgba(0, 0, 0, 0.06);
    background: #fbfaf8;
}

.to-result.active { display: block; }

.to-result-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.to-result-header h4 {
    font-size: 16px;
    font-weight: 700;
}

.to-status-badge {
    padding: 5px 14px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
    background: rgba(72, 165, 100, 0.1);
    color: #2e7d3e;
}

.to-timeline {
    position: relative;
    padding-left: 28px;
}

.to-timeline::before {
    content: "";
    position: absolute;
    left: 8px;
    top: 8px;
    bottom: 8px;
    width: 2px;
    background: rgba(0, 0, 0, 0.08);
}

.to-timeline-step {
    position: relative;
    padding-bottom: 28px;
}

.to-timeline-step:last-child { padding-bottom: 0; }

.to-timeline-step::before {
    content: "";
    position: absolute;
    left: -22px;
    top: 5px;
    width: 12px;
    height: 12px;
    border-radius: 999px;
    background: rgba(0, 0, 0, 0.10);
    border: 2px solid #fbfaf8;
}

.to-timeline-step.done::before {
    background: var(--maroon);
}

.to-timeline-step.current::before {
    background: var(--maroon);
    box-shadow: 0 0 0 4px rgba(139, 41, 66, 0.18);
}

.to-timeline-step strong {
    font-size: 14px;
    display: block;
    margin-bottom: 2px;
}

.to-timeline-step span {
    font-size: 13px;
    color: var(--text-muted);
}

.ip-cta {
    padding: 48px 0;
    text-align: center;
    background: #fbfaf8;
}

.ip-cta p {
    font-size: 15px;
    color: var(--text-muted);
    margin-bottom: 18px;
}

.ip-cta a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 32px;
    border-radius: 999px;
    background: var(--black);
    color: var(--white);
    font-size: 14px;
    font-weight: 700;
    transition: background 0.2s;
}

.ip-cta a:hover { background: var(--maroon); }

@media (max-width: 768px) {
    .ip-hero { padding: 52px 0 40px; }

    .ip-content { padding: 40px 0 56px; }

    .ip-section { margin-bottom: 36px; }

    .ip-cards { grid-template-columns: 1fr; }

    .sg-visual {
        flex-direction: column;
        align-items: center;
    }

    .sg-visual-img { width: 160px; height: 200px; }

    .to-search-box {
        flex-direction: column;
    }

    .to-result { padding: 24px; }

    .faq-categories {
        overflow-x: auto;
        flex-wrap: nowrap;
        padding-bottom: 4px;
    }
}
/* ===== Shop Page ===== */
.shop-main {
    padding: 40px 0 80px;
    min-height: 60vh;
}

.shop-container {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 48px;
    align-items: start;
}

/* ===== Filters Sidebar ===== */
.shop-filters {
    position: sticky;    
    top: 120px;
    background: var(--white);
    border: 1px solid #eee;
    border-radius: 8px;
    padding: 24px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.filters-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid #eee;
}

.filters-header h2 {
    font-size: 18px;
    font-weight: 600;
    color: var(--black);
}

.btn-clear-filters {
    background: none;
    border: none;
    color: var(--maroon);
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    padding: 0;
}

.btn-clear-filters:hover {
    text-decoration: underline;
}

.filter-group {
    border-bottom: 1px solid #eee;
}

.filter-group:last-child {
    border-bottom: none;
}

.filter-toggle {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0;
    background: none;
    border: none;
    font-size: 14px;
    font-weight: 500;
    color: var(--black);
    cursor: pointer;
    text-align: left;
}

.filter-toggle i {
    font-size: 12px;
    color: var(--text-muted);
    transition: transform 0.2s ease;
}

.filter-group.open .filter-toggle i {
    transform: rotate(180deg);
}

.filter-options {
    display: none;
    padding-bottom: 16px;
    max-height: 238px;
    overflow-y: auto;
}

.filter-group.open .filter-options {
    display: block;
}

.filter-checkbox {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    cursor: pointer;
    font-size: 14px;
    color: var(--text-dark);
}

.filter-checkbox input {
    width: 18px;
    height: 18px;
    accent-color: var(--maroon);
    cursor: pointer;
}

.filter-checkbox:hover {
    color: var(--maroon);
}

/* Price inputs */
.price-inputs {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.price-inputs input {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
}

.price-inputs input:focus {
    outline: none;
    border-color: var(--maroon);
}

.price-inputs span {
    color: var(--text-muted);
}

.price-range-display {
    font-size: 13px;
    color: var(--text-muted);
}

/* Color swatches */
.filter-color-swatch {
    display: inline-block;
    margin: 4px;
    cursor: pointer;
}

.filter-color-swatch input {
    display: none;
}

.filter-color-swatch .swatch {
    display: block;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 2px solid transparent;
    transition: all 0.2s ease;
}

.filter-color-swatch input:checked + .swatch {
    border-color: var(--text-dark);
    box-shadow: 0 0 0 2px var(--white);
    transform: scale(1.1);
}

.filter-color-swatch:hover .swatch {
    transform: scale(1.1);
}

/* ===== Products Area ===== */
.shop-products {
    min-width: 0;
}

.shop-toolbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
    flex-wrap: wrap;
    gap: 16px;
}

.shop-toolbar-right {
    display: flex;
    align-items: center;
    gap: 24px;
}

.view-toggle {
    display: flex;
    border: 1px solid #ddd;
    border-radius: 4px;
    overflow: hidden;
}

.view-btn {
    padding: 10px 14px;
    background: var(--white);
    border: none;
    border-right: 1px solid #ddd;
    color: var(--text-muted);
    cursor: pointer;
    transition: all 0.2s ease;
}

.view-btn:last-child {
    border-right: none;
}

.view-btn:hover {
    color: var(--maroon);
    background: #fafafa;
}

.view-btn.active {
    background: var(--maroon);
    color: var(--white);
}

.view-btn-premium {
    border-left: 1px solid rgba(139,41,66,0.2);
}

.view-btn-premium span {
    margin-left: 6px;
    font-size: 12px;
    font-weight: 600;
}

.view-btn-premium.active {
    background: linear-gradient(135deg, #8B2942 0%, #6b1f33 100%);
    box-shadow: 0 2px 8px rgba(139,41,66,0.3);
}

.view-btn-premium.active i {
    color: #e8c4a0;
}

.product-count {
    font-size: 14px;
    color: var(--text-muted);
}

.shop-sort {
    display: flex;
    align-items: center;
    gap: 10px;
}

.shop-sort label {
    font-size: 14px;
    color: var(--text-muted);
}

.shop-sort select {
    padding: 10px 36px 10px 14px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
    color: var(--text-dark);
    background: var(--white);
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%236b6b6b' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
}

.shop-sort select:focus {
    outline: none;
    border-color: var(--maroon);
}

/* Shop products grid - default 3 columns */
.shop-products .products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

/* Grid view - 2 columns */
.shop-products .products-grid.view-grid-2 {
    grid-template-columns: repeat(2, 1fr) !important;
}

/* Grid view - 3 columns (explicit for shop-premium) */
.shop-products .products-grid.view-grid-3 {
    grid-template-columns: repeat(3, 1fr) !important;
}

/* Grid view - 4 columns */
.shop-products .products-grid.view-grid-4 {
    grid-template-columns: repeat(4, 1fr) !important;
}

/* Compact overlay for 3 & 4 column grids - icons and button fit properly */
.shop-products .products-grid.view-grid-3 .product-overlay,
.shop-products .products-grid.view-grid-4 .product-overlay {
    padding: 16px 12px;
    gap: 8px;
    flex-wrap: wrap;
    justify-content: center;
}

.shop-products .products-grid.view-grid-3 .product-overlay .overlay-icon,
.shop-products .products-grid.view-grid-4 .product-overlay .overlay-icon {
    width: 36px;
    height: 36px;
    min-width: 36px;
    font-size: 13px;
}

.shop-products .products-grid.view-grid-3 .product-overlay .btn-add-cart,
.shop-products .products-grid.view-grid-4 .product-overlay .btn-add-cart {
    padding: 10px 16px;
    font-size: 11px;
    letter-spacing: 0.5px;
}

.shop-products .products-grid.view-grid-4 .product-overlay {
    padding: 12px 8px;
    gap: 6px;
}

.shop-products .products-grid.view-grid-4 .product-overlay .overlay-icon {
    width: 32px;
    height: 32px;
    min-width: 32px;
    font-size: 12px;
}

.shop-products .products-grid.view-grid-4 .product-overlay .btn-add-cart {
    padding: 8px 12px;
    font-size: 10px;
}

/* Product info wrapper - grid view */
.product-info {
    display: block;
}

.product-list-actions {
    display: none;
}

/* List view */
.shop-products .products-grid.view-list {
    grid-template-columns: 1fr !important;
    gap: 20px;
}

.shop-products .products-grid.view-list .product-card {
    display: grid;
    grid-template-columns: 180px 1fr auto;
    gap: 28px;
    padding: 0;
    border: 1px solid #e8e6e4;
    border-radius: 12px;
    align-items: center;
    background: var(--white);
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0,0,0,0.04);
    transition: box-shadow 0.3s ease, border-color 0.3s ease;
}

.shop-products .products-grid.view-list .product-card:hover {
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    border-color: rgba(139,41,66,0.2);
}

.shop-products .products-grid.view-list .product-image {
    grid-column: 1;
    grid-row: 1;
    margin-bottom: 0;
    aspect-ratio: 3/4;
    min-width: 180px;
    border-radius: 12px 0 0 12px;
}

.shop-products .products-grid.view-list .product-image img {
    border-radius: 12px 0 0 12px;
}

.shop-products .products-grid.view-list .product-overlay {
    display: none;
}

.shop-products .products-grid.view-list .product-info {
    grid-column: 2;
    grid-row: 1;
    padding: 24px 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
}

.shop-products .products-grid.view-list .product-title {
    font-size: 18px;
    font-weight: 600;
    line-height: 1.35;
    margin: 0;
}

.shop-products .products-grid.view-list .product-rating {
    margin: 0;
    font-size: 13px;
}

.shop-products .products-grid.view-list .product-price {
    margin: 0;
}

.shop-products .products-grid.view-list .product-price .price-current {
    font-size: 18px;
    font-weight: 700;
}

.shop-products .products-grid.view-list .product-list-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    grid-column: 3;
    grid-row: 1;
    padding: 24px 28px 24px 0;
}

.shop-products .products-grid.view-list .product-list-actions .overlay-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    border-radius: 50%;
    background: #f5f4f2;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    justify-content: center;
}

.shop-products .products-grid.view-list .product-list-actions .overlay-icon:hover {
    background: var(--maroon);
    color: var(--white);
}

.shop-products .products-grid.view-list .product-list-actions .btn-add-cart {
    padding: 14px 24px;
    font-size: 12px;
}

.shop-products .products-grid.view-list .product-card:hover .product-image img {
    transform: scale(1.03);
}

.shop-products .products-grid.view-list .product-badge {
    display: none;
}

/* Product badges - visible in premium view */
.product-badge {
    display: none;
    position: absolute;
    z-index: 2;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.5px;
    padding: 6px 12px;
    border-radius: 4px;
}

.view-premium .product-badge {
    display: block;
}

.product-badge-sale {
    top: 12px;
    left: 12px;
    background: #c41e3a;
    color: var(--white);
}

.product-badge-category {
    top: 12px;
    right: 12px;
    background: rgba(255,255,255,0.95);
    color: var(--text-dark);
    border: 1px solid rgba(0,0,0,0.06);
}

/* ===== Premium View ===== */
.shop-products:has(.view-premium) {
    background: linear-gradient(180deg, #faf9f8 0%, #ffffff 100%);
    margin: 0 -24px;
    padding: 32px 24px 48px;
    border-radius: 16px;
}

.shop-products .products-grid.view-premium {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.shop-products .products-grid.view-premium .product-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    border: 1px solid rgba(0,0,0,0.04);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.shop-products .products-grid.view-premium .product-card:hover {
    box-shadow: 0 12px 40px rgba(0,0,0,0.12);
    transform: translateY(-4px);
    border-color: rgba(139,41,66,0.15);
}

.shop-products .products-grid.view-premium .product-image {
    aspect-ratio: 4/5;
    margin-bottom: 0;
}

.shop-products .products-grid.view-premium .product-image img {
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.shop-products .products-grid.view-premium .product-card:hover .product-image img {
    transform: scale(1.05);
}

.shop-products .products-grid.view-premium .product-overlay {
    padding: 24px;
    gap: 12px;
}

.shop-products .products-grid.view-premium .btn-add-cart {
    padding: 14px 24px;
    font-size: 12px;
    letter-spacing: 1.2px;
}

.shop-products .products-grid.view-premium .product-card > *:not(.product-image) {
    padding: 20px 24px 24px;
}

.shop-products .products-grid.view-premium .product-title {
    font-size: 17px;
    font-weight: 600;
    letter-spacing: -0.2px;
    line-height: 1.35;
    margin-bottom: 10px;
}

.shop-products .products-grid.view-premium .product-rating {
    font-size: 13px;
    margin-bottom: 12px;
}

.shop-products .products-grid.view-premium .product-price {
    font-size: 17px;
}

.shop-products .products-grid.view-premium .price-current {
    font-size: 18px;
    font-weight: 700;
}

.shop-products .products-grid.view-premium .price-old {
    font-size: 14px;
}

.no-results {
    text-align: center;
    padding: 80px 24px;
}

.no-results i {
    font-size: 48px;
    color: #ddd;
    margin-bottom: 16px;
}

.no-results h3 {
    font-size: 20px;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.no-results p {
    font-size: 14px;
    color: var(--text-muted);
}

/* Mobile filter toggle */
.filter-mobile-toggle {
    display: none;
    width: 100%;
    padding: 14px 20px;
    background: var(--maroon);
    color: var(--white);
    border: none;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    margin-bottom: 24px;
    border-radius: 4px;
}

.filter-mobile-toggle i {
    margin-right: 8px;
}

/* ===== Responsive ===== */
@media (max-width: 1024px) {
    .shop-container {
        grid-template-columns: 1fr;
    }

    .shop-filters {
        position: relative;
        top: 0;
    }

    .shop-products .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .shop-products .products-grid.view-grid-2 {
        grid-template-columns: repeat(2, 1fr) !important;
    }

    .shop-products .products-grid.view-grid-4 {
        grid-template-columns: repeat(2, 1fr) !important;
    }

    .shop-products .products-grid.view-list {
        grid-template-columns: 1fr !important;
    }

    .shop-products .products-grid.view-list .product-card {
        grid-template-columns: 140px 1fr;
        grid-template-rows: 1fr auto;
    }

    .shop-products .products-grid.view-list .product-image {
        grid-row: 1 / -1;
    }

    .shop-products .products-grid.view-list .product-info {
        padding: 20px 20px 0 0;
    }

    .shop-products .products-grid.view-list .product-list-actions {
        grid-column: 2;
        grid-row: 2;
        padding: 12px 20px 20px 0;
        align-self: end;
    }

    .shop-products .products-grid.view-premium {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

@media (max-width: 768px) {
    .shop-main {
        padding: 24px 0 60px;
    }

    .filter-mobile-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .shop-filters {
        display: none;
        margin-bottom: 24px;
    }

    .shop-filters.open {
        display: block;
    }

    .shop-toolbar {
        flex-direction: column;
        align-items: flex-start;
    }

    .shop-toolbar-right {
        width: 100%;
        flex-wrap: wrap;
    }

    .view-toggle {
        order: 1;
    }

    .shop-sort {
        order: 2;
    }

    .shop-products .products-grid,
    .shop-products .products-grid.view-grid-2,
    .shop-products .products-grid.view-grid-4 {
        grid-template-columns: 1fr !important;
    }

    .shop-products .products-grid.view-list {
        grid-template-columns: 1fr !important;
    }

    .shop-products .products-grid.view-list .product-card {
        grid-template-columns: 1fr;
        grid-template-rows: auto auto auto;
    }

    .shop-products .products-grid.view-list .product-image {
        grid-column: 1;
        grid-row: 1;
        min-width: 100%;
        border-radius: 12px 12px 0 0;
    }

    .shop-products .products-grid.view-list .product-image img {
        border-radius: 12px 12px 0 0;
    }

    .shop-products .products-grid.view-list .product-info {
        grid-column: 1;
        grid-row: 2;
        padding: 20px 20px 12px;
    }

    .shop-products .products-grid.view-list .product-list-actions {
        grid-column: 1;
        grid-row: 3;
        padding: 0 20px 20px;
        justify-content: flex-start;
    }

    .shop-products .products-grid.view-premium {
        grid-template-columns: 1fr !important;
    }
}
/* ===== Shop Premium Page ===== */
.shop-premium-page .shop-premium-main {
    padding-top: 0;
}

.shop-premium-hero {
    background: linear-gradient(135deg, #1a1618 0%, #2d2528 50%, #1a1618 100%);
    padding: 80px 0 60px;
    text-align: center;
    margin-bottom: 48px;
}

.shop-premium-label {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.6);
    margin-bottom: 12px;
}

.shop-premium-title {
    font-family: "Cabin", sans-serif;
    font-size: 48px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

.shop-premium-subtitle {
    font-size: 16px;
    color: rgba(255,255,255,0.8);
    max-width: 480px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Premium products - always use premium layout */
.shop-premium-products .products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.shop-premium-products .products-grid.view-grid-3 {
    grid-template-columns: repeat(3, 1fr) !important;
}

.shop-premium-products .products-grid.view-grid-4 {
    grid-template-columns: repeat(4, 1fr) !important;
}

/* Compact overlay for 3 & 4 column grids - cart, wishlist, eye icons fit properly */
.shop-premium-products .products-grid.view-grid-3 .product-overlay,
.shop-premium-products .products-grid.view-grid-4 .product-overlay {
    padding: 16px 12px;
    gap: 8px;
    flex-wrap: wrap;
    justify-content: center;
}

.shop-premium-products .products-grid.view-grid-3 .product-overlay .overlay-icon,
.shop-premium-products .products-grid.view-grid-4 .product-overlay .overlay-icon {
    width: 36px;
    height: 36px;
    min-width: 36px;
    font-size: 13px;
}

.shop-premium-products .products-grid.view-grid-3 .product-overlay .btn-add-cart,
.shop-premium-products .products-grid.view-grid-4 .product-overlay .btn-add-cart {
    padding: 10px 16px;
    font-size: 11px;
    letter-spacing: 0.5px;
}

.shop-premium-products .products-grid.view-grid-4 .product-overlay {
    padding: 12px 8px;
    gap: 6px;
}

.shop-premium-products .products-grid.view-grid-4 .product-overlay .overlay-icon {
    width: 32px;
    height: 32px;
    min-width: 32px;
    font-size: 12px;
}

.shop-premium-products .products-grid.view-grid-4 .product-overlay .btn-add-cart {
    padding: 8px 12px;
    font-size: 10px;
}

.shop-premium-products {
    background: linear-gradient(180deg, #faf9f8 0%, #ffffff 100%);
    margin: 0 -24px;
    padding: 32px 24px 48px;
    border-radius: 16px;
}

.shop-premium-products .product-badge {
    display: block;
}

.shop-premium-products .product-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    border: 1px solid rgba(0,0,0,0.04);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.shop-premium-products .product-card:hover {
    box-shadow: 0 12px 40px rgba(0,0,0,0.12);
    transform: translateY(-4px);
    border-color: rgba(139,41,66,0.15);
}

.shop-premium-products .product-image {
    aspect-ratio: 4/5;
    margin-bottom: 0;
}

.shop-premium-products .product-image img {
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.shop-premium-products .product-card:hover .product-image img {
    transform: scale(1.05);
}

.shop-premium-products .product-overlay {
    padding: 24px;
    gap: 12px;
}

.shop-premium-products .btn-add-cart {
    padding: 14px 24px;
    font-size: 12px;
    letter-spacing: 1.2px;
}

.shop-premium-products .product-card > *:not(.product-image) {
    padding: 20px 24px 24px;
}

.shop-premium-products .product-title {
    font-size: 17px;
    font-weight: 600;
    letter-spacing: -0.2px;
    line-height: 1.35;
    margin-bottom: 10px;
}

.shop-premium-products .product-rating {
    font-size: 13px;
    margin-bottom: 12px;
}

.shop-premium-products .price-current {
    font-size: 18px;
    font-weight: 700;
}

.shop-premium-products .price-old {
    font-size: 14px;
}

/* Premium filters - refined look */
.shop-premium-filters {
    border-color: rgba(0,0,0,0.06);
    box-shadow: 0 4px 24px rgba(0,0,0,0.04);
}

.shop-premium-filters .filters-header h2 {
    font-family: "Cabin", sans-serif;
    font-weight: 600;
}

@media (max-width: 1024px) {
    .shop-premium-hero {
        padding: 60px 0 48px;
    }

    .shop-premium-title {
        font-size: 36px;
    }

    .shop-premium-products .products-grid,
    .shop-premium-products .products-grid.view-grid-3,
    .shop-premium-products .products-grid.view-grid-4 {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

@media (max-width: 768px) {
    .shop-premium-hero {
        padding: 48px 24px 40px;
    }

    .shop-premium-title {
        font-size: 28px;
    }

    .shop-premium-subtitle {
        font-size: 14px;
    }

    .shop-premium-products .products-grid {
        grid-template-columns: 1fr;
    }
}
/* ===== My Account Dashboard ===== */

.acc-main {
    padding: 40px 0 80px;
    background: #fbfaf8;
    min-height: 70vh;
}

.acc-layout {
    display: grid;
    grid-template-columns: 260px minmax(0, 1fr);
    gap: 32px;
    align-items: start;
}

/* --- Sidebar --- */
.acc-sidebar {
    position: sticky;
    top: 120px;
    border-radius: 20px;
    background: var(--white);
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 14px 40px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.acc-user-card {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 22px 20px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.acc-avatar {
    width: 44px;
    height: 44px;
    border-radius: 999px;
    background: rgba(139, 41, 66, 0.10);
    color: var(--maroon);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}

.acc-avatar-lg {
    width: 72px;
    height: 72px;
    font-size: 28px;
}

.acc-user-card strong {
    display: block;
    font-size: 14px;
}

.acc-user-card span {
    font-size: 12px;
    color: var(--text-muted);
}

.acc-nav {
    display: flex;
    flex-direction: column;
    padding: 0px 0;
}

.acc-nav-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    width: 100%;
    padding: 13px 22px;
    border: none;
    background: none;
    cursor: pointer;
    font-size: 14px;
    font-family: inherit;
    color: var(--text-muted);
    transition: all 0.15s ease;
    text-align: left;
}

.acc-nav-btn:hover {
    background: rgba(0, 0, 0, 0.03);
    color: var(--text-dark);
}

.acc-nav-btn.active {
    background: rgba(139, 41, 66, 0.06);
    color: var(--maroon);
    font-weight: 700;
}

.acc-nav-btn i {
    width: 20px;
    text-align: center;
    font-size: 15px;
}

.acc-nav-logout {
    margin-top: 4px;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
    padding-top: 14px;
    color: #c41e3a;
}

.acc-nav-logout:hover {
    background: rgba(196, 30, 58, 0.06);
    color: #c41e3a;
}

/* --- Content --- */
.acc-section {
    display: none;
}
.acc-sections{padding:80px 0;}
.acc-section.active {
    display: block;
}

.acc-title {
    font-family: "Cabin", sans-serif;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 28px;
}

.acc-count {
    font-family: 'DM Sans', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: var(--text-muted);
}

.acc-subtitle {
    font-size: 18px;
    font-weight: 700;
    margin: 32px 0 16px;
}

/* --- Stats Cards --- */
.acc-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.acc-stat-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 22px 20px;
    border-radius: 16px;
    background: var(--white);
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.04);
}

.acc-stat-card i {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: rgba(139, 41, 66, 0.08);
    color: var(--maroon);
    font-size: 18px;
    flex-shrink: 0;
}

.acc-stat-card strong {
    display: block;
    font-size: 22px;
    font-weight: 800;
}

.acc-stat-card span {
    font-size: 12px;
    color: var(--text-muted);
}

/* --- Table --- */
.acc-table-wrap {
    border-radius: 16px;
    border: 1px solid rgba(0, 0, 0, 0.06);
    background: var(--white);
    overflow-x: auto;
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.04);
}

.acc-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
}

.acc-table th {
    text-align: left;
    padding: 14px 18px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: var(--text-muted);
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    background: rgba(0, 0, 0, 0.02);
}

.acc-table td {
    padding: 14px 18px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
    white-space: nowrap;
}

.acc-table tbody tr:last-child td {
    border-bottom: none;
}

.acc-table tbody tr:hover {
    background: rgba(0, 0, 0, 0.015);
}

.acc-badge {
    display: inline-block;
    padding: 5px 12px;
    border-radius: 999px;
    font-size: 12px;
    white-space: nowrap;
    font-weight: 700;
}

.acc-badge-transit {
    background: rgba(59, 130, 246, 0.10);
    color: #2563eb;
}

.acc-badge-delivered {
    background: rgba(34, 197, 94, 0.10);
    color: #16a34a;
}

.acc-badge-cancelled {
    background: rgba(239, 68, 68, 0.10);
    color: #dc2626;
}

.acc-link-btn {
    background: none;
    border: none;
    font-size: 13px;
    font-weight: 700;
    color: var(--maroon);
    cursor: pointer;
    font-family: inherit;
}

.acc-link-btn:hover {
    text-decoration: underline;
}

/* --- Track Order --- */
.acc-track-search {
    display: flex;
    gap: 12px;
    margin-bottom: 32px;
}

.acc-track-input {
    flex: 1;
    padding: 14px 18px;
    border-radius: 14px;
    border: 1px solid rgba(0, 0, 0, 0.12);
    font-size: 14px;
    font-family: inherit;
    background: var(--white);
}

.acc-track-input:focus {
    outline: none;
    border-color: rgba(139, 41, 66, 0.40);
    box-shadow: 0 0 0 3px rgba(139, 41, 66, 0.08);
}

.acc-track-btn {
    border-radius: 14px;
    padding: 14px 28px;
    white-space: nowrap;
}

.acc-track-result {
    border-radius: 18px;
    background: var(--white);
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 14px 40px rgba(0, 0, 0, 0.05);
    padding: 28px;
}

.acc-track-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 28px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.acc-track-header h3 {
    font-size: 18px;
    font-weight: 700;
}

.acc-track-header p {
    font-size: 14px;
    color: var(--text-muted);
    margin-top: 4px;
}

/* --- Timeline --- */
.acc-timeline {
    position: relative;
    padding-left: 28px;
}

.acc-tl-step {
    position: relative;
    padding-bottom: 28px;
    padding-left: 28px;
}

.acc-tl-step:last-child {
    padding-bottom: 0;
}

.acc-tl-step::before {
    content: "";
    position: absolute;
    left: 0;
    top: 6px;
    bottom: -6px;
    width: 2px;
    background: rgba(0, 0, 0, 0.08);
}

.acc-tl-step:last-child::before {
    display: none;
}

.acc-tl-step.completed::before {
    background: var(--maroon);
}

.acc-tl-dot {
    position: absolute;
    left: -6px;
    top: 3px;
    width: 14px;
    height: 14px;
    border-radius: 999px;
    border: 2px solid rgba(0, 0, 0, 0.12);
    background: var(--white);
}

.acc-tl-step.completed .acc-tl-dot {
    border-color: var(--maroon);
    background: var(--maroon);
}

.acc-tl-step.active .acc-tl-dot {
    border-color: var(--maroon);
    background: var(--white);
    box-shadow: 0 0 0 4px rgba(139, 41, 66, 0.15);
}

.acc-tl-info strong {
    display: block;
    font-size: 14px;
    margin-bottom: 2px;
}

.acc-tl-info span {
    font-size: 13px;
    color: var(--text-muted);
}

/* --- Cart --- */
.acc-cart-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 28px;
}

.acc-cart-item {
    display: grid;
    grid-template-columns: 90px 1fr auto;
    gap: 18px;
    align-items: center;
    padding: 18px;
    border-radius: 16px;
    background: var(--white);
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.04);
}

.acc-cart-item img {
    width: 90px;
    height: 110px;
    object-fit: cover;
    border-radius: 12px;
}

.acc-cart-info h4 {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 4px;
}

.acc-cart-info p {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 6px;
}

.acc-cart-price {
    font-size: 16px;
    font-weight: 800;
}

.acc-cart-actions {
    display: flex;
    align-items: center;
    gap: 14px;
}

.acc-cart-remove {
    width: 36px;
    height: 36px;
    border-radius: 999px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    background: none;
    cursor: pointer;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.acc-cart-remove:hover {
    border-color: #c41e3a;
    color: #c41e3a;
    background: rgba(196, 30, 58, 0.06);
}

.acc-cart-summary {
    border-radius: 16px;
    background: var(--white);
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.04);
    padding: 24px;
}

.acc-cart-totals {
    margin-bottom: 18px;
}

.acc-cart-row {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    font-size: 14px;
    color: var(--text-muted);
}

.acc-cart-total {
    border-top: 1px solid rgba(0, 0, 0, 0.06);
    padding-top: 14px;
    margin-top: 6px;
    font-size: 16px;
    color: var(--text-dark);
}

.acc-checkout-btn {
    width: 100%;
    padding: 16px 24px;
    border-radius: 14px;
    gap: 10px;
}

/* --- Wishlist --- */
.acc-wish-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.acc-wish-card {
    border-radius: 16px;
    overflow: hidden;
    background: var(--white);
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 14px 40px rgba(0, 0, 0, 0.05);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.acc-wish-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 22px 52px rgba(0, 0, 0, 0.10);
}

.acc-wish-img {
    position: relative;
    aspect-ratio: 3/4;
    overflow: hidden;
}

.acc-wish-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.acc-wish-card:hover .acc-wish-img img {
    transform: scale(1.04);
}

.acc-wish-remove {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 32px;
    height: 32px;
    border-radius: 999px;
    border: none;
    background: rgba(255, 255, 255, 0.90);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: var(--text-muted);
    transition: all 0.2s ease;
}

.acc-wish-remove:hover {
    background: #c41e3a;
    color: var(--white);
}

.acc-wish-body {
    padding: 16px;
}

.acc-wish-body h4 {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 6px;
}

.acc-wish-price {
    font-size: 16px;
    font-weight: 800;
    margin-bottom: 12px;
}

.acc-wish-price span {
    font-size: 13px;
    font-weight: 400;
    color: var(--text-muted);
    text-decoration: line-through;
    margin-left: 8px;
}

.acc-wish-btn {
    width: 100%;
    padding: 12px 16px;
    border-radius: 12px;
    font-size: 12px;
}

/* --- Profile Form --- */
.acc-profile-form {
    max-width: 640px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.acc-profile-avatar-row {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 8px;
}

.acc-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.acc-field {
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.acc-field label {
    font-size: 13px;
    font-weight: 700;
}

.acc-field input,
.acc-field textarea {
    width: 100%;
    padding: 14px 16px;
    border-radius: 12px;
    border: 1px solid rgba(0, 0, 0, 0.12);
    font-size: 14px;
    font-family: inherit;
    background: var(--white);
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.acc-field input:focus,
.acc-field textarea:focus {
    outline: none;
    border-color: rgba(139, 41, 66, 0.45);
    box-shadow: 0 0 0 3px rgba(139, 41, 66, 0.08);
}

.acc-field textarea {
    resize: vertical;
}

.acc-save-btn {
    align-self: flex-start;
    padding: 14px 36px;
    border-radius: 14px;
}

/* ===== Mobile Sidebar Toggle ===== */
.acc-mobile-toggle {
    display: none;
}

/* ===== Responsive ===== */
@media (max-width: 1024px) {
    .acc-layout {
        grid-template-columns: 1fr;
    }

    .acc-sidebar {
        position: static;
    }

    .acc-stats {
        grid-template-columns: repeat(2, 1fr);
    }

    .acc-wish-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .acc-main {
        padding: 24px 0 56px;
    }

    .acc-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .acc-stat-card {
        padding: 16px 14px;
    }

    .acc-wish-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .acc-cart-item {
        grid-template-columns: 70px 1fr;
        gap: 14px;
    }

    .acc-cart-actions {
        grid-column: 1 / -1;
        justify-content: space-between;
    }

    .acc-form-row {
        grid-template-columns: 1fr;
    }

    .acc-track-search {
        flex-direction: column;
    }

    .acc-save-btn {
        width: 100%;
    }
}
/* ===== Product Detail - Shared ===== */
.product-detail-main {
    padding: 32px 0 80px;
}

.breadcrumb {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 24px;
}

.breadcrumb a {
    color: var(--text-muted);
}

.breadcrumb a:hover {
    color: var(--maroon);
}

.breadcrumb span {
    margin: 0 8px;
}

.quantity-selector {
    display: flex;
    align-items: center;
    border: 1px solid #ddd;
    border-radius: 4px;
    overflow: hidden;
    width: fit-content;
}

.quantity-selector input {
    width: 48px;
    text-align: center;
    border: none;
    font-size: 14px;
    padding: 10px 0;
}

.quantity-selector input:focus {
    outline: none;
}

.qty-btn {
    width: 40px;
    height: 40px;
    background: #f5f4f2;
    border: none;
    cursor: pointer;
    font-size: 14px;
}

.qty-btn:hover {
    background: #eee;
}

/* ===== Option 1: Classic Side-by-Side ===== */
.product-detail-option-1 .product-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
}

.product-detail-option-1 .product-gallery {
    position: sticky;
    top: 120px;
}

.product-detail-option-1 .product-main-image {
    position: relative;
    aspect-ratio: 4/5;
    overflow: hidden;
    border-radius: 12px;
    margin-bottom: 12px;
}

.product-detail-option-1 .product-main-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-detail-option-1 .product-badge-sale {
    position: absolute;
    top: 16px;
    left: 16px;
    background: #c41e3a;
    color: var(--white);
    padding: 8px 14px;
    font-size: 12px;
    font-weight: 600;
    border-radius: 4px;
}

.product-detail-option-1 .product-thumbnails {
    display: flex;
    gap: 12px;
}

.product-detail-option-1 .product-thumbnails .thumb {
    width: 80px;
    height: 100px;
    padding: 0;
    border: 2px solid transparent;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    background: none;
}

.product-detail-option-1 .product-thumbnails .thumb.active,
.product-detail-option-1 .product-thumbnails .thumb:hover {
    border-color: var(--maroon);
}

.product-detail-option-1 .product-thumbnails .thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-detail-option-1 .product-info-sticky {
    position: sticky;
    top: 120px;
}

.product-detail-option-1 .product-detail-title {
    font-family: "Cabin", sans-serif;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 12px;
}

.product-detail-option-1 .product-rating {
    color: #f5c842;
    font-size: 14px;
    margin-bottom: 16px;
}

.product-detail-option-1 .product-rating span {
    color: var(--text-muted);
    font-size: 13px;
    margin-left: 8px;
}

.product-detail-option-1 .product-detail-price {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
}

.product-detail-option-1 .product-detail-price .price-old {
    font-size: 18px;
    color: var(--text-muted);
    text-decoration: line-through;
}

.product-detail-option-1 .product-detail-price .price-current {
    font-size: 24px;
    font-weight: 700;
}

.product-detail-option-1 .product-detail-desc {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 28px;
}

.product-detail-option-1 .product-options {
    margin-bottom: 28px;
}

.product-detail-option-1 .option-group {
    margin-bottom: 20px;
}

.product-detail-option-1 .option-group label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 10px;
}

.product-detail-option-1 .size-options {
    display: flex;
    gap: 10px;
}

.product-detail-option-1 .size-btn {
    width: 44px;
    height: 44px;
    border: 1px solid #ddd;
    background: var(--white);
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
}

.product-detail-option-1 .size-btn:hover,
.product-detail-option-1 .size-btn.active {
    border-color: var(--maroon);
    color: var(--maroon);
}

.product-detail-option-1 .color-options {
    display: flex;
    gap: 10px;
}

.product-detail-option-1 .color-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 2px solid transparent;
    cursor: pointer;
    padding: 0;
}

.product-detail-option-1 .color-btn.active,
.product-detail-option-1 .color-btn:hover {
    border-color: var(--text-dark);
    box-shadow: 0 0 0 2px var(--white);
}

.product-detail-option-1 .product-actions {
    display: flex;
    gap: 12px;
    margin-bottom: 24px;
}

.product-detail-option-1 .btn-add-to-cart {
    flex: 1;
    padding: 16px 24px;
}

.product-detail-option-1 .btn-wishlist {
    width: 52px;
    height: 52px;
    border: 1px solid #ddd;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    color: var(--text-dark);
}

.product-detail-option-1 .btn-wishlist:hover {
    border-color: var(--maroon);
    color: var(--maroon);
}

.product-detail-option-1 .product-meta {
    font-size: 14px;
    color: var(--text-muted);
}

.product-detail-option-1 .product-meta p {
    margin-bottom: 6px;
}

.product-detail-option-1 .product-tabs {
    margin-top: 48px;
    border-top: 1px solid #eee;
    padding-top: 32px;
}

.product-detail-option-1 .tab-btn {
    background: none;
    border: none;
    padding: 12px 24px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    color: var(--text-muted);
    border-bottom: 2px solid transparent;
    margin-bottom: -1px;
}

.product-detail-option-1 .tab-btn.active {
    color: var(--maroon);
    border-bottom-color: var(--maroon);
}

.product-detail-option-1 .tab-content {
    display: none;
    padding: 24px 0;
    font-size: 15px;
    line-height: 1.7;
}

.product-detail-option-1 .tab-content.active {
    display: block;
}

/* ===== Option 2: Premium Editorial ===== */
.product-detail-option-2 .product-detail-main.option-2 {
    padding: 28px 0 80px;
    background: #fbfaf8;
}

.product-detail-option-2 .pd2-premium {
    position: relative;
}

.product-detail-option-2 .pd2-premium::before {
    content: "";
    position: absolute;
    inset: -40px 0 auto 0;
    height: 360px;
    background: radial-gradient(900px 280px at 20% 20%, rgba(110, 0, 36, 0.10), transparent 55%),
                radial-gradient(720px 260px at 85% 35%, rgba(232, 200, 122, 0.18), transparent 60%);
    pointer-events: none;
}

.product-detail-option-2 .breadcrumb {
    position: relative;
    z-index: 1;
}

.product-detail-option-2 .pd2-layout {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 520px;
    gap: 56px;
    align-items: start;
}

.product-detail-option-2 .pd2-media {
    min-width: 0;
}

.product-detail-option-2 .pd2-gallery-main {
    position: relative;
    aspect-ratio: 4/5;
    border-radius: 18px;
    overflow: hidden;
    background: #f4f1ed;
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.10);
    margin-bottom: 14px;
}

.product-detail-option-2 .pd2-gallery-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.01);
}

.product-detail-option-2 .pd2-float-badges {
    position: absolute;
    top: 18px;
    left: 18px;
    display: flex;
    gap: 10px;
    z-index: 2;
    flex-wrap: wrap;
}

.product-detail-option-2 .pd2-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(0, 0, 0, 0.06);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    backdrop-filter: blur(8px);
}

.product-detail-option-2 .pd2-badge-sale {
    background: rgba(110, 0, 36, 0.92);
    color: var(--white);
    border-color: rgba(110, 0, 36, 0.35);
}

.product-detail-option-2 .pd2-gallery-thumbs {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}

.product-detail-option-2 .pd2-gallery-thumbs button {
    width: 100%;
    aspect-ratio: /*4/5*/ 1/1;
    padding: 0;
    border: 2px solid transparent;
    border-radius: 14px;
    overflow: hidden;
    cursor: pointer;
    background: none;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.06);
    transition: transform 0.15s ease, border-color 0.15s ease;
}

.product-detail-option-2 .pd2-gallery-thumbs button:hover {
    transform: translateY(-2px);
    border-color: rgba(110, 0, 36, 0.35);
}

.product-detail-option-2 .pd2-gallery-thumbs button.active {
    border-color: var(--maroon);
}

.product-detail-option-2 .pd2-gallery-thumbs img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-detail-option-2 .pd2-detail-cards {
    margin-top: 18px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.product-detail-option-2 .pd2-info-card {
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 16px;
    padding: 18px 18px 16px;
    box-shadow: 0 14px 40px rgba(0, 0, 0, 0.06);
}

.product-detail-option-2 .pd2-info-card h3 {
    font-size: 14px;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.product-detail-option-2 .pd2-info-card p {
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.7;
}

.product-detail-option-2 .pd2-specs {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 10px;
}

.product-detail-option-2 .pd2-specs li {
    display: flex;
    justify-content: space-between;
    gap: 14px;
    font-size: 14px;
}

.product-detail-option-2 .pd2-specs li span {
    color: var(--text-muted);
}

.product-detail-option-2 .pd2-specs li strong {
    font-weight: 700;
    text-align: right;
}

.product-detail-option-2 .pd2-buy {
    position: relative;
}

.product-detail-option-2 .pd2-buy-card {
    /* position: sticky; */
    position: static;
    top: 120px;
    border-radius: 18px;
    padding: 26px 26px 22px;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 22px 60px rgba(0, 0, 0, 0.10);
    backdrop-filter: blur(10px);
}

.product-detail-option-2 .pd2-title {
    font-family: "Cabin", sans-serif;
    font-size: 34px;
    font-weight: 700;
    margin-bottom: 6px;
    line-height: 1.2;
}

.product-detail-option-2 .pd2-subtitle {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 14px;
}

.product-detail-option-2 .pd2-rating {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #f5c842;
    font-size: 13px;
    margin-bottom: 14px;
}

.product-detail-option-2 .pd2-rating span {
    color: var(--text-muted);
    margin-left: 6px;
}

.product-detail-option-2 .pd2-price {
    display: flex;
    align-items: baseline;
    gap: 12px;
    margin-bottom: 12px;
}

.product-detail-option-2 .pd2-price .price-current {
    font-size: 28px;
    font-weight: 800;
    color: var(--text-dark);
}

.product-detail-option-2 .pd2-price .price-old {
    font-size: 16px;
    color: var(--text-muted);
    text-decoration: line-through;
}

.product-detail-option-2 .pd2-offer-pill {
    margin-left: auto;
    font-size: 12px;
    font-weight: 700;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(232, 200, 122, 0.28);
    border: 1px solid rgba(232, 200, 122, 0.55);
}

.product-detail-option-2 .pd2-short {
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.75;
    margin-bottom: 14px;
}

.product-detail-option-2 .pd2-divider {
    height: 1px;
    background: rgba(0, 0, 0, 0.06);
    margin: 16px 0;
}

.product-detail-option-2 .pd2-option-group {
    margin-bottom: 16px;
}

.product-detail-option-2 .pd2-label-row {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 14px;
    margin-bottom: 10px;
}

.product-detail-option-2 .pd2-option-group label {
    display: block;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 10px;
}

.product-detail-option-2 .pd2-label-row label {
    margin-bottom: 0;
}

.product-detail-option-2 .pd2-qty-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
}

.product-detail-option-2 .pd2-qty-row label {
    margin-bottom: 0;
    white-space: nowrap;
}

.product-detail-option-2 .pd2-qty-row .quantity-selector {
    width: auto;
}

.product-detail-option-2 .pd2-link {
    font-size: 13px;
    color: var(--maroon);
    font-weight: 700;
}

.product-detail-option-2 .pd2-link:hover {
    text-decoration: underline;
}

.product-detail-option-2 .pd2-tooltip {
    position: relative;
    text-decoration: none;
}

.product-detail-option-2 .pd2-tooltip::after {
    content: attr(data-tooltip);
    position: absolute;
    right: 0;
    top: calc(100% + 10px);
    width: max-content;
    max-width: 260px;
    padding: 10px 12px;
    border-radius: 12px;
    background: rgba(20, 20, 20, 0.96);
    color: rgba(255, 255, 255, 0.92);
    font-size: 12px;
    font-weight: 600;
    line-height: 1.5;
    box-shadow: 0 16px 44px rgba(0, 0, 0, 0.20);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-4px);
    transition: opacity 0.15s ease, transform 0.15s ease, visibility 0.15s ease;
    z-index: 10;
    pointer-events: none;
}

.product-detail-option-2 .pd2-tooltip::before {
    content: "";
    position: absolute;
    right: 18px;
    top: calc(100% + 4px);
    width: 10px;
    height: 10px;
    background: rgba(20, 20, 20, 0.96);
    transform: rotate(45deg);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.15s ease, visibility 0.15s ease;
    z-index: 9;
    pointer-events: none;
}

.product-detail-option-2 .pd2-tooltip:hover::after,
.product-detail-option-2 .pd2-tooltip:hover::before {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.product-detail-option-2 .pd2-size-pills {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.product-detail-option-2 .pd2-color-swatches {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.product-detail-option-2 .pd2-swatch {
    width: 34px;
    height: 34px;
    border-radius: 999px;
    border: 2px solid rgba(0, 0, 0, 0.10);
    background: var(--swatch, #5a0c22);
    cursor: pointer;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.10);
    transition: transform 0.15s ease, box-shadow 0.15s ease, border-color 0.15s ease;
    position: relative;
}

.product-detail-option-2 .pd2-swatch:hover {
    transform: translateY(-1px);
    border-color: rgba(110, 0, 36, 0.28);
    box-shadow: 0 14px 26px rgba(0, 0, 0, 0.12);
}

.product-detail-option-2 .pd2-swatch.active {
    border-color: var(--maroon);
    box-shadow: 0 0 0 4px rgba(110, 0, 36, 0.10), 0 14px 26px rgba(0, 0, 0, 0.12);
}

/* .product-detail-option-2 .pd2-swatch.active::after {
    content: "";
    position: absolute;
    inset: 7px;
    border-radius: 999px;
    border: 2px solid rgba(255, 255, 255, 0.75);
    mix-blend-mode: overlay;
} */
 .product-detail-option-2 .pd2-swatch.active::after {
    content: "";
    position: absolute;
    inset: 7px;
   border-radius: 999px;
    border: 2px solid rgba(255, 255, 255, 0.75);
}

.product-detail-option-2 .quantity-selector {
    width: 100%;
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
    gap: 0;
}

.product-detail-option-2 .quantity-selector input {
    width: 64px;
    flex: 1 1 auto;
    min-width: 64px;
}

.product-detail-option-2 .qty-btn {
    flex: 0 0 44px;
    width: 44px;
    height: 44px;
}

.product-detail-option-2 .pd2-pill {
    min-width: 44px;
    height: 42px;
    padding: 0 14px;
    border-radius: 999px;
    border: 1px solid rgba(0, 0, 0, 0.14);
    background: rgba(255, 255, 255, 0.75);
    cursor: pointer;
    font-weight: 700;
    font-size: 13px;
    transition: border-color 0.15s ease, transform 0.15s ease, background 0.15s ease;
}

.product-detail-option-2 .pd2-pill:hover {
    transform: translateY(-1px);
    border-color: rgba(110, 0, 36, 0.38);
}

.product-detail-option-2 .pd2-pill.active {
    border-color: var(--maroon);
    color: var(--maroon);
    background: rgba(110, 0, 36, 0.06);
}

.product-detail-option-2 .pd2-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    margin-top: 10px;
}

.product-detail-option-2 .pd2-add-cart {
    width: 100%;
    padding: 16px 18px;
    border-radius: 12px;
}

.product-detail-option-2 .pd2-buy-now {
    width: 100%;
    padding: 14px 18px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.product-detail-option-2 .btn-outline {
    background: transparent;
    color: var(--text-dark);
    border: 1px solid rgba(0, 0, 0, 0.14);
}

.product-detail-option-2 .btn-outline:hover {
    border-color: rgba(110, 0, 36, 0.32);
    color: var(--maroon);
}

.product-detail-option-2 .pd2-row-actions {
    display: flex;
    justify-content: space-between;
    gap: 14px;
    margin-top: 14px;
    padding-top: 14px;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.product-detail-option-2 .pd2-wishlist,
.product-detail-option-2 .pd2-share {
    font-size: 13px;
    font-weight: 700;
    color: var(--text-dark);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.product-detail-option-2 .pd2-wishlist:hover,
.product-detail-option-2 .pd2-share:hover {
    color: var(--maroon);
}

.product-detail-option-2 .pd2-trust {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-top: 14px;
}

.product-detail-option-2 .pd2-trust-item {
    border: 1px solid rgba(0, 0, 0, 0.06);
    background: rgba(250, 249, 248, 0.72);
    border-radius: 14px;
    padding: 10px 10px;
    display: flex;
    gap: 10px;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: 12px;
    color: var(--text-muted);
}

.product-detail-option-2 .pd2-trust-item i {
    color: var(--maroon);
}

.product-detail-option-2 .pd2-delivery {
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.product-detail-option-2 .pd2-delivery h4 {
    font-size: 13px;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.product-detail-option-2 .pd2-pincode {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 10px;
    margin-bottom: 10px;
}

.product-detail-option-2 .pd2-pincode input {
    height: 42px;
    border-radius: 12px;
    border: 1px solid rgba(0, 0, 0, 0.14);
    padding: 0 14px;
    font-size: 14px;
    background: rgba(255, 255, 255, 0.7);
}

.product-detail-option-2 .pd2-pincode input:focus {
    outline: none;
    border-color: rgba(110, 0, 36, 0.40);
    box-shadow: 0 0 0 3px rgba(110, 0, 36, 0.08);
}

.product-detail-option-2 .pd2-pincode button {
    height: 42px;
    border-radius: 12px;
    border: 1px solid rgba(0, 0, 0, 0.14);
    padding: 0 14px;
    font-weight: 800;
    cursor: pointer;
    background: rgba(255, 255, 255, 0.86);
}

.product-detail-option-2 .pd2-pincode button:hover {
    border-color: rgba(110, 0, 36, 0.30);
}

.product-detail-option-2 .pd2-delivery-note {
    font-size: 13px;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 8px;
    line-height: 1.6;
}

.product-detail-option-2 .pd2-story {
    position: relative;
    z-index: 1;
    margin-top: 42px;
}

.product-detail-option-2 .pd2-story-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
}

.product-detail-option-2 .pd2-story-card {
    background: rgba(255, 255, 255, 0.78);
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 18px;
    padding: 22px;
    box-shadow: 0 14px 40px rgba(0, 0, 0, 0.06);
}

.product-detail-option-2 .pd2-story-card h3 {
    font-size: 14px;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.product-detail-option-2 .pd2-story-card p {
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.8;
}

/* ===== Responsive ===== */
@media (max-width: 1024px) {
    .product-detail-option-1 .product-detail-grid {
        grid-template-columns: 1fr;
    }

    .product-detail-option-1 .product-gallery,
    .product-detail-option-1 .product-info-sticky {
        position: static;
    }

    .product-detail-option-2 .pd2-layout {
        grid-template-columns: 1fr;
    }

    .product-detail-option-2 .pd2-buy-card {
        position: static;
    }

    .product-detail-option-2 .pd2-detail-cards,
    .product-detail-option-2 .pd2-story-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .product-detail-option-1 .product-detail-title {
        font-size: 24px;
    }

    .product-detail-option-2 .pd2-title {
        font-size: 26px;
    }

    .product-detail-option-2 .pd2-gallery-thumbs {
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 10px;
    }

    .product-detail-option-2 .pd2-trust {
        grid-template-columns: 1fr;
    }
}
/* ===== Blog - Shared ===== */

.blog-cat {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 7px 14px;
    border-radius: 999px;
    background: rgba(139, 41, 66, 0.88);
    color: var(--white);
}

.blog-meta {
    display: flex;
    align-items: center;
    gap: 18px;
    font-size: 13px;
    color: var(--text-muted);
}

.blog-meta i {
    margin-right: 5px;
}

/* ===== Blog Listing Page ===== */

/* --- Hero --- */
.blog-hero {
    padding: 72px 0 56px;
    background: #fbfaf8;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.blog-hero::before {
    content: "";
    position: absolute;
    inset: -60px 0 auto 0;
    height: 320px;
    background: radial-gradient(800px 260px at 25% 40%, rgba(139, 41, 66, 0.08), transparent 60%),
                radial-gradient(600px 220px at 80% 30%, rgba(232, 200, 122, 0.14), transparent 60%);
    pointer-events: none;
}

.blog-hero-tag {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--maroon);
    margin-bottom: 14px;
    position: relative;
}

.blog-hero-title {
    font-family: "Cabin", sans-serif;
    font-size: clamp(32px, 5vw, 52px);
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 16px;
    position: relative;
}

.blog-hero-sub {
    font-size: 16px;
    color: var(--text-muted);
    line-height: 1.7;
    max-width: 560px;
    margin: 0 auto;
    position: relative;
}

/* --- Filter Tabs --- */
.blog-filters {
    padding: 0 0 16px;
    background: #fbfaf8;
}

.blog-tabs {
    display: flex;
    gap: 8px;
    justify-content: center;
    flex-wrap: wrap;
}

.blog-tab {
    padding: 10px 22px;
    border-radius: 999px;
    border: 1px solid rgba(0, 0, 0, 0.10);
    background: var(--white);
    cursor: pointer;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-muted);
    transition: all 0.2s ease;
}

.blog-tab:hover {
    border-color: rgba(139, 41, 66, 0.30);
    color: var(--text-dark);
}

.blog-tab.active {
    background: var(--black);
    color: var(--white);
    border-color: var(--black);
}

/* --- Featured Post --- */
.blog-featured {
    padding: 40px 0 56px;
    background: #fbfaf8;
}

.blog-featured-card {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    border-radius: 22px;
    overflow: hidden;
    background: var(--white);
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 22px 60px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-featured-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 32px 72px rgba(0, 0, 0, 0.12);
}

.blog-featured-img {
    position: relative;
    aspect-ratio: 16/11;
    overflow: hidden;
}

.blog-featured-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.blog-featured-card:hover .blog-featured-img img {
    transform: scale(1.04);
}

.blog-featured-img .blog-cat {
    position: absolute;
    top: 20px;
    left: 20px;
}

.blog-featured-content {
    padding: 40px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 14px;
}

.blog-featured-content h2 {
    font-family: "Cabin", sans-serif;
    font-size: clamp(22px, 2.5vw, 30px);
    font-weight: 700;
    line-height: 1.3;
}

.blog-featured-content p {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.7;
}

.blog-read-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: var(--maroon);
    margin-top: 4px;
    transition: gap 0.2s ease;
}

.blog-featured-card:hover .blog-read-more {
    gap: 14px;
}

/* --- Blog Grid --- */
.blog-list {
    padding: 40px 0 72px;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.blog-grid-3 {
    grid-template-columns: repeat(3, 1fr);
}

.blog-card {
    border-radius: 18px;
    overflow: hidden;
    background: var(--white);
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 14px 40px rgba(0, 0, 0, 0.06);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 24px 56px rgba(0, 0, 0, 0.10);
}

.blog-card-img {
    position: relative;
    aspect-ratio: 16/10;
    overflow: hidden;
}

.blog-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.blog-card:hover .blog-card-img img {
    transform: scale(1.05);
}

.blog-card-img .blog-cat {
    position: absolute;
    top: 14px;
    left: 14px;
}

.blog-card-body {
    padding: 22px 22px 26px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex: 1;
}

.blog-card-body h3 {
    font-family: "Cabin", sans-serif;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.35;
}

.blog-card-body p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.65;
    flex: 1;
}

/* --- Newsletter CTA --- */
.blog-newsletter {
    padding: 0 0 80px;
}

.blog-newsletter-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 48px;
    padding: 48px 56px;
    border-radius: 22px;
    background: var(--black);
    color: var(--white);
}

.blog-newsletter-card .blog-hero-tag {
    color: rgba(232, 200, 122, 0.88);
}

.blog-newsletter-content h2 {
    font-family: "Cabin", sans-serif;
    font-size: clamp(22px, 2.5vw, 30px);
    font-weight: 700;
    color: var(--white);
    margin-bottom: 8px;
}

.blog-newsletter-content p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.60);
    line-height: 1.6;
}

.blog-newsletter-form {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
}

.blog-newsletter-form input {
    padding: 14px 20px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    background: rgba(255, 255, 255, 0.08);
    color: var(--white);
    font-size: 14px;
    min-width: 260px;
}

.blog-newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.45);
}

.blog-newsletter-form input:focus {
    outline: none;
    border-color: rgba(232, 200, 122, 0.55);
}
.blog-newsletter-form .btn:hover{background: #333;}
.blog-newsletter-form .btn {
    border-radius: 10px;
    white-space: nowrap;
    background: var(--text-dark);
}
.blog-newsletter-form :not(.btn-check)+.btn:active{
    background: var(--text-dark);
}
/* ===== Blog Detail Page ===== */

/* --- Detail Hero --- */
.bdt-hero {
    position: relative;
    min-height: 56vh;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
}

.bdt-hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.bdt-hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.bdt-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(26, 26, 26, 0.20) 0%, rgba(26, 26, 26, 0.78) 100%);
    z-index: 1;
}

.bdt-hero-inner {
    position: relative;
    z-index: 2;
    padding-bottom: 56px;
    max-width: 780px;
}

.bdt-hero-inner .breadcrumb {
    margin-bottom: 18px;
}

.bdt-hero-inner .breadcrumb,
.bdt-hero-inner .breadcrumb a,
.bdt-hero-inner .breadcrumb span {
    color: rgba(255, 255, 255, 0.60);
}

.bdt-hero-inner .breadcrumb a:hover {
    color: var(--white);
}

.bdt-hero-inner .blog-cat {
    margin-bottom: 16px;
}

.bdt-title {
    font-family: "Cabin", sans-serif;
    font-size: clamp(28px, 4.5vw, 48px);
    font-weight: 700;
    color: var(--white);
    line-height: 1.18;
    margin-bottom: 24px;
}

.bdt-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
}

.bdt-author {
    display: flex;
    align-items: center;
    gap: 14px;
}

.bdt-author img {
    width: 44px;
    height: 44px;
    border-radius: 999px;
    object-fit: cover;
    border: 2px solid rgba(255, 255, 255, 0.25);
}

.bdt-author strong {
    display: block;
    font-size: 14px;
    color: var(--white);
}

.bdt-author span {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.55);
}

.bdt-meta-right {
    display: flex;
    gap: 20px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.60);
}

.bdt-meta-right i {
    margin-right: 5px;
}

/* --- Article Layout --- */
.bdt-article {
    padding: 64px 0 80px;
}

.bdt-layout {
    display: grid;
    grid-template-columns: 48px minmax(0, 1fr) 280px;
    gap: 40px;
    align-items: start;
}

/* --- Share Sidebar --- */
.bdt-share-sticky {
    position: sticky;
    top: 120px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
}

.bdt-share-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--text-muted);
    writing-mode: vertical-lr;
    transform: rotate(180deg);
    margin-bottom: 4px;
}

.bdt-share a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    border: 1px solid rgba(0, 0, 0, 0.10);
    color: var(--text-muted);
    font-size: 14px;
    transition: all 0.2s ease;
}

.bdt-share a:hover {
    border-color: var(--maroon);
    color: var(--maroon);
    background: rgba(139, 41, 66, 0.06);
}

/* --- Article Body --- */
.bdt-body {
    min-width: 0;
}

.bdt-lead {
    font-size: 19px;
    line-height: 1.75;
    color: var(--text-dark);
    font-weight: 500;
    margin-bottom: 28px;
}

.bdt-body p {
    font-size: 16px;
    line-height: 1.85;
    color: #444;
    margin-bottom: 22px;
}

.bdt-body h2 {
    font-family: "Cabin", sans-serif;
    font-size: 26px;
    font-weight: 700;
    margin-top: 44px;
    margin-bottom: 18px;
    line-height: 1.3;
}

.bdt-body ul {
    margin: 0 0 24px 24px;
    padding: 0;
}

.bdt-body ul li {
    font-size: 16px;
    line-height: 1.85;
    color: #444;
    margin-bottom: 10px;
}

.bdt-body blockquote {
    margin: 32px 0;
    padding: 28px 28px 24px;
    border-left: 4px solid var(--maroon);
    border-radius: 0 16px 16px 0;
    background: rgba(139, 41, 66, 0.04);
}

.bdt-body blockquote p {
    font-family: "Cabin", sans-serif;
    font-size: 19px;
    font-style: italic;
    color: var(--text-dark);
    line-height: 1.65;
    margin-bottom: 8px;
}

.bdt-body blockquote cite {
    font-size: 13px;
    color: var(--text-muted);
    font-style: normal;
    font-weight: 600;
}

.bdt-figure {
    margin: 32px 0;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 14px 40px rgba(0, 0, 0, 0.08);
}

.bdt-figure img {
    width: 100%;
    display: block;
}

.bdt-figure figcaption {
    padding: 14px 18px;
    font-size: 13px;
    color: var(--text-muted);
    background: #faf9f7;
    line-height: 1.5;
}

.bdt-figure-wide {
    margin-left: -40px;
    margin-right: -40px;
}

/* --- Tags --- */
.bdt-tags {
    margin-top: 44px;
    padding-top: 28px;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.bdt-tags-label {
    font-size: 13px;
    font-weight: 700;
    color: var(--text-dark);
}

.bdt-tags a {
    font-size: 13px;
    padding: 6px 14px;
    border-radius: 999px;
    border: 1px solid rgba(0, 0, 0, 0.10);
    color: var(--text-muted);
    transition: all 0.2s ease;
}

.bdt-tags a:hover {
    border-color: var(--maroon);
    color: var(--maroon);
    background: rgba(139, 41, 66, 0.04);
}

/* --- Right Sidebar --- */
.bdt-sidebar-sticky {
    position: sticky;
    top: 120px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.bdt-sidebar-card {
    padding: 24px;
    border-radius: 18px;
    border: 1px solid rgba(0, 0, 0, 0.06);
    background: #faf9f7;
    box-shadow: 0 14px 40px rgba(0, 0, 0, 0.05);
}

.bdt-sidebar-card h4 {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 10px;
}

.bdt-sidebar-card p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.65;
    margin-bottom: 16px;
}

.bdt-sidebar-btn {
    width: 100%;
    border-radius: 10px;
    padding: 14px 18px;
}

.bdt-related-item {
    display: flex;
    gap: 14px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    align-items: center;
}

.bdt-related-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.bdt-related-item:first-of-type {
    padding-top: 0;
}

.bdt-related-item img {
    width: 64px;
    height: 64px;
    border-radius: 10px;
    object-fit: cover;
    flex-shrink: 0;
}

.bdt-related-item strong {
    display: block;
    font-size: 13px;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 2px;
}

.bdt-related-item span {
    font-size: 12px;
    color: var(--text-muted);
}

.bdt-related-item:hover strong {
    color: var(--maroon);
}

/* --- More Articles --- */
.bdt-more {
    padding: 0 0 80px;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
    padding-top: 56px;
}

.bdt-more-title {
    font-family: "Cabin", sans-serif;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 32px;
    text-align: center;
}

/* ===== Responsive ===== */
@media (max-width: 1024px) {
    .blog-featured-card {
        grid-template-columns: 1fr;
    }

    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .blog-grid-3 {
        grid-template-columns: repeat(2, 1fr);
    }

    .blog-newsletter-card {
        flex-direction: column;
        text-align: center;
        gap: 28px;
        padding: 40px 36px;
    }

    .blog-newsletter-form {
        width: 100%;
        justify-content: center;
    }

    .bdt-layout {
        grid-template-columns: minmax(0, 1fr);
        gap: 0;
    }

    .bdt-share {
        order: 2;
        margin-top: 32px;
    }

    .bdt-share-sticky {
        flex-direction: row;
        justify-content: center;
        position: static;
    }

    .bdt-share-label {
        writing-mode: horizontal-tb;
        transform: none;
        margin-bottom: 0;
    }

    .bdt-sidebar {
        order: 3;
        margin-top: 40px;
    }

    .bdt-sidebar-sticky {
        position: static;
        flex-direction: row;
    }

    .bdt-sidebar-card {
        flex: 1;
    }

    .bdt-figure-wide {
        margin-left: 0;
        margin-right: 0;
    }
}

@media (max-width: 768px) {
    .blog-hero {
        padding: 52px 0 40px;
    }

    .blog-grid,
    .blog-grid-3 {
        grid-template-columns: 1fr;
    }

    .blog-featured-content {
        padding: 24px 22px 28px;
    }

    .blog-newsletter-form {
        flex-direction: column;
    }

    .blog-newsletter-form input {
        min-width: 0;
        width: 100%;
    }

    .bdt-hero {
        min-height: 44vh;
    }

    .bdt-hero-inner {
        padding-bottom: 36px;
    }

    .bdt-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 14px;
    }

    .bdt-article {
        padding: 40px 0 56px;
    }

    .bdt-sidebar-sticky {
        flex-direction: column;
    }

    .bdt-body blockquote {
        padding: 20px 18px;
    }

    .bdt-body blockquote p {
        font-size: 17px;
    }
}
/* ===== About Us - Premium ===== */

/* ---------- Hero ---------- */
.abt-hero {
    position: relative;
    min-height: 82vh;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
}

.abt-hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.abt-hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.04);
}

.abt-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(26, 26, 26, 0.15) 0%, rgba(26, 26, 26, 0.72) 100%);
    z-index: 1;
}

.abt-hero-inner {
    position: relative;
    z-index: 2;
    padding-bottom: 80px;
    max-width: 780px;
}

.abt-hero-label {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    font-family: var(--body-other-font);
    color: rgba(255, 255, 255, 0.72);
    margin-bottom: 20px;
    padding-left: 2px;
}

.abt-hero-title {
    font-family: var(--body-font)
    font-size: clamp(40px, 6vw, 72px);
    font-weight: 700;
    color: var(--white);
    line-height: 1.10;
    margin-bottom: 24px;
}

.abt-hero-title em {
    font-style: italic;
    color: rgba(232, 200, 122, 0.92);
}

.abt-hero-sub {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.78);
    line-height: 1.7;
    max-width: 540px;
    font-family: var(--body-other-font);
}

/* ---------- Shared Tags / Headings ---------- */
.abt-tag {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--dr_pink);
    margin-bottom: 14px;
}

.abt-tag-light {
    color: rgba(232, 200, 122, 0.92);
}

.abt-heading {
    font-family: var(--body-font)
    font-size: clamp(28px, 3.5vw, 44px);
    font-weight: 700;
    line-height: 1.18;
    margin-bottom: 24px;
}

/* ---------- Brand Story ---------- */
.abt-story {
    padding: 100px 0;
    background: #fbfaf8;
}

.abt-story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.abt-story-media {
    position: relative;
    min-height: 520px;
}

.abt-story-img {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.12);
}

.abt-story-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.abt-story-img-1 {
    width: 78%;
    aspect-ratio: 3/4;
    position: relative;
    z-index: 2;
}

.abt-story-img-2 {
    width: 52%;
    aspect-ratio: 4/5;
    position: absolute;
    bottom: 0;
    right: 0;
    z-index: 3;
    border: 6px solid #fbfaf8;
}

.abt-story-accent {
    position: absolute;
    top: 32px;
    right: 28%;
    width: 140px;
    height: 140px;
    border-radius: 999px;
    background: radial-gradient(circle, rgba(232, 200, 122, 0.35), transparent 70%);
    z-index: 1;
}

.abt-story-content {
    max-width: 500px;
}

.abt-story-content p {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.85;
    margin-bottom: 18px;
}

.abt-story-content p:last-child {
    margin-bottom: 0;
}

/* ---------- Values ---------- */
.abt-values {
    padding: 90px 0;
    background: var(--white);
}

.abt-values-header {
    text-align: center;
    max-width: 540px;
    margin: 0 auto 56px;
}

.abt-values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.abt-value-card {
    padding: 36px 28px 32px;
    border-radius: 20px;
    border: 1px solid rgba(0, 0, 0, 0.06);
    background: rgba(251, 250, 248, 0.65);
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.abt-value-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 28px 64px rgba(0, 0, 0, 0.10);
}

.abt-value-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: rgba(139, 41, 66, 0.08);
    color: var(--maroon);
    font-size: 22px;
}

.abt-value-card h3 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 10px;
}

.abt-value-card p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.7;
}

/* ---------- Artisan Gallery ---------- */
.abt-gallery {
    padding: 90px 0;
    background: #f7f5f2;
}

.abt-gallery-header {
    text-align: center;
    max-width: 580px;
    margin: 0 auto 56px;
}

.abt-gallery-sub {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.7;
}

.abt-gallery-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 18px;
}

.abt-gallery-item {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
}

.abt-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.abt-gallery-item:hover img {
    transform: scale(1.04);
}

.abt-gallery-item-lg {
    grid-row: 1 / -1;
}

.abt-gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px 22px;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.60) 0%, transparent 100%);
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.abt-gallery-caption span {
    font-size: 14px;
    font-weight: 700;
    color: var(--white);
}

.abt-gallery-caption small {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.65);
}

/* ---------- Stats ---------- */
.abt-stats {
    padding: 80px 0;
    background: var(--black);
    color: var(--white);
}

.abt-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    text-align: center;
}

.abt-stat-number {
    display: block;
    font-family: var(--body-font);
    font-size: clamp(36px, 4vw, 52px);
    font-weight: 800;
    margin-bottom: 8px;
    color: rgba(232, 200, 122, 0.92);
}

.abt-stat-label {
    font-size: 13px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.55);
    font-weight: 600;
}

/* ---------- Founder ---------- */
.abt-founder {
    padding: 100px 0;
    background: #fbfaf8;
}

.abt-founder-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 72px;
    align-items: center;
}

.abt-quote {
    font-family: "Cabin", sans-serif;
    font-size: clamp(20px, 2.5vw, 28px);
    font-style: italic;
    font-weight: 400;
    line-height: 1.55;
    color: var(--text-dark);
    margin-bottom: 32px;
    position: relative;
    padding-left: 28px;
    border-left: 3px solid var(--maroon);
}

.abt-founder-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
    padding-left: 28px;
}

.abt-founder-info strong {
    font-size: 16px;
    font-weight: 700;
}

.abt-founder-info span {
    font-size: 13px;
    color: var(--text-muted);
    letter-spacing: 0.5px;
}

.abt-founder-img {
    border-radius: 24px;
    overflow: hidden;
    aspect-ratio: 3/4;
    box-shadow: 0 28px 72px rgba(0, 0, 0, 0.14);
}

.abt-founder-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ---------- CTA ---------- */
.abt-cta {
    position: relative;
    min-height: 52vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.abt-cta-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.abt-cta-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.abt-cta-overlay {
    position: absolute;
    inset: 0;
    background: rgba(26, 26, 26, 0.68);
    z-index: 1;
}

.abt-cta-inner {
    position: relative;
    z-index: 2;
    max-width: 600px;
    margin: 0 auto;
    padding: 80px 24px;
}

.abt-cta-title {
    font-family: var(--body-font)
    font-size: clamp(28px, 4vw, 48px);
    font-weight: 700;
    color: var(--white);
    margin-bottom: 12px;
}

.abt-cta-sub {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.72);
    margin-bottom: 36px;
}

.abt-cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.abt-btn {
    padding: 16px 36px;
    border-radius: 8px;
    font-size: 13px;
}

.abt-btn-outline {
    background: transparent;
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.35);
}

.abt-btn-outline:hover {
    background: rgba(255, 255, 255, 0.10);
    border-color: rgba(255, 255, 255, 0.55);
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
    .abt-story-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .abt-story-media {
        min-height: 400px;
    }

    .abt-values-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .abt-gallery-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto;
    }

    .abt-gallery-item-lg {
        grid-row: auto;
    }

    .abt-stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px 24px;
    }

    .abt-founder-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .abt-founder-media {
        order: -1;
        max-width: 420px;
    }
}

@media (max-width: 768px) {
    .abt-hero {
        min-height: 65vh;
    }

    .abt-hero-inner {
        padding-bottom: 48px;
    }

    .abt-story {
        padding: 64px 0;
    }

    .abt-story-media {
        min-height: 320px;
    }

    .abt-story-img-1 {
        width: 72%;
    }

    .abt-story-img-2 {
        width: 48%;
    }

    .abt-values {
        padding: 64px 0;
    }

    .abt-values-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .abt-gallery {
        padding: 64px 0;
    }

    .abt-gallery-grid {
        grid-template-columns: 1fr;
    }

    .abt-gallery-item-lg {
        aspect-ratio: 4/3;
    }

    .abt-gallery-item:not(.abt-gallery-item-lg) {
        aspect-ratio: 16/9;
    }

    .abt-stats {
        padding: 56px 0;
    }

    .abt-stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px 16px;
    }

    .abt-founder {
        padding: 64px 0;
    }

    .abt-quote {
        padding-left: 20px;
    }

    .abt-founder-info {
        padding-left: 20px;
    }

    .abt-founder-img {
        aspect-ratio: 1/1;
    }

    .abt-cta-inner {
        padding: 56px 20px;
    }
}
/* ===== Contact Us Page ===== */

/* --- Shared --- */
.ct-tag {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--maroon);
    margin-bottom: 14px;
}

.ct-section-title {
    font-family: "Cabin", sans-serif;
    font-size: clamp(26px, 3vw, 38px);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 28px;
}

/* --- Hero --- */
.ct-hero {
    padding: 72px 0 56px;
    background: #fbfaf8;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.ct-hero::before {
    content: "";
    position: absolute;
    inset: -60px 0 auto 0;
    height: 340px;
    background: radial-gradient(800px 260px at 30% 40%, rgba(139, 41, 66, 0.08), transparent 60%),
                radial-gradient(600px 220px at 75% 35%, rgba(232, 200, 122, 0.14), transparent 60%);
    pointer-events: none;
}

.ct-hero-title {
    font-family: "Cabin", sans-serif;
    font-size: clamp(34px, 5vw, 56px);
    font-weight: 700;
    line-height: 1.12;
    margin-bottom: 18px;
    position: relative;
}

.ct-hero-title em {
    font-style: italic;
    color: rgba(139, 41, 66, 0.85);
}

.ct-hero-sub {
    font-size: 16px;
    color: var(--text-muted);
    line-height: 1.7;
    max-width: 540px;
    margin: 0 auto;
    position: relative;
}

/* --- Contact Cards --- */
.ct-cards {
    padding: 56px 0 48px;
}

.ct-cards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.ct-card {
    padding: 32px 24px;
    border-radius: 20px;
    border: 1px solid rgba(0, 0, 0, 0.06);
    background: var(--white);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.ct-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 26px 60px rgba(0, 0, 0, 0.10);
}

.ct-card-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: rgba(139, 41, 66, 0.08);
    color: var(--maroon);
    font-size: 20px;
}

.ct-card h3 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 6px;
}

.ct-card p {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 10px;
}

.ct-card-link {
    font-size: 14px;
    font-weight: 700;
    color: var(--maroon);
}

a.ct-card-link:hover {
    text-decoration: underline;
}

/* --- Form + Map --- */
.ct-main {
    padding: 48px 0 90px;
}

.ct-main-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 56px;
    align-items: start;
}

/* --- Form --- */
.ct-form-wrap {
    min-width: 0;
}

.ct-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.ct-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.ct-field {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.ct-field label {
    font-size: 13px;
    font-weight: 700;
}

.ct-field label span {
    color: var(--maroon);
}

.ct-field input,
.ct-field select,
.ct-field textarea {
    width: 100%;
    padding: 14px 18px;
    border-radius: 14px;
    border: 1px solid rgba(0, 0, 0, 0.12);
    font-size: 14px;
    font-family: inherit;
    background: rgba(251, 250, 248, 0.60);
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.ct-field input:focus,
.ct-field select:focus,
.ct-field textarea:focus {
    outline: none;
    border-color: rgba(139, 41, 66, 0.45);
    box-shadow: 0 0 0 3px rgba(139, 41, 66, 0.08);
}

.ct-field textarea {
    resize: vertical;
    min-height: 140px;
}

.ct-field select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%236b6b6b' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 42px;
}

.ct-submit {
    align-self: flex-start;
    padding: 16px 40px;
    border-radius: 14px;
    gap: 10px;
    font-size: 13px;
}

/* --- Map Side --- */
.ct-map-wrap {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.ct-map-card {
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.06);
    background: var(--white);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.06);
}

.ct-map-frame {
    aspect-ratio: 16/10;
    background: #eee;
}

.ct-map-frame iframe {
    display: block;
}

.ct-map-info {
    padding: 22px 24px;
}

.ct-map-info h4 {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 6px;
}

.ct-map-info p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 10px;
}

.ct-map-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 700;
    color: var(--maroon);
    transition: gap 0.2s ease;
}

.ct-map-link:hover {
    gap: 14px;
}

.ct-hours-card {
    padding: 24px;
    border-radius: 20px;
    border: 1px solid rgba(0, 0, 0, 0.06);
    background: #faf9f7;
    box-shadow: 0 14px 40px rgba(0, 0, 0, 0.05);
}

.ct-hours-card h4 {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.ct-hours-card h4 i {
    color: var(--maroon);
}

.ct-hours {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.ct-hours li {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.ct-hours li:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.ct-hours li span {
    color: var(--text-muted);
}

.ct-hours li strong {
    font-weight: 700;
}

/* --- FAQ --- */
.ct-faq {
    padding: 72px 0 90px;
    background: #fbfaf8;
}

.ct-faq-header {
    text-align: center;
    margin-bottom: 44px;
}

.ct-faq-grid {
    max-width: 780px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.ct-faq-item {
    border-radius: 16px;
    border: 1px solid rgba(0, 0, 0, 0.06);
    background: var(--white);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
    overflow: hidden;
    transition: box-shadow 0.25s ease;
}

.ct-faq-item:hover {
    box-shadow: 0 16px 44px rgba(0, 0, 0, 0.08);
}

.ct-faq-q {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 20px 24px;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 15px;
    font-weight: 700;
    text-align: left;
    color: var(--text-dark);
    font-family: inherit;
}

.ct-faq-q i {
    flex-shrink: 0;
    font-size: 14px;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: rgba(139, 41, 66, 0.06);
    color: var(--maroon);
    transition: transform 0.25s ease, background 0.25s ease;
}

.ct-faq-item.open .ct-faq-q i {
    transform: rotate(45deg);
    background: rgba(139, 41, 66, 0.12);
}

.ct-faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.ct-faq-item.open .ct-faq-a {
    max-height: 300px;
}

.ct-faq-a p {
    padding: 0 24px 22px;
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.75;
}

/* ===== Responsive ===== */
@media (max-width: 1024px) {
    .ct-cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .ct-main-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }
}

@media (max-width: 768px) {
    .ct-hero {
        padding: 52px 0 40px;
    }

    .ct-cards-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .ct-card {
        text-align: left;
        display: grid;
        grid-template-columns: auto 1fr;
        grid-template-rows: auto auto;
        column-gap: 18px;
        padding: 22px 20px;
    }

    .ct-card-icon {
        grid-row: 1 / -1;
        margin: 0;
        width: 48px;
        height: 48px;
    }

    .ct-card h3 {
        margin-bottom: 2px;
    }

    .ct-card p {
        display: none;
    }

    .ct-form-row {
        grid-template-columns: 1fr;
    }

    .ct-submit {
        width: 100%;
        justify-content: center;
    }

    .ct-main {
        padding: 36px 0 64px;
    }

    .ct-faq {
        padding: 56px 0 64px;
    }

    .ct-faq-q {
        font-size: 14px;
        padding: 16px 18px;
    }

    .ct-faq-a p {
        padding: 0 18px 18px;
    }
}
/* ===== Collection Page ===== */
.collection-main {
    padding-bottom: 80px;
}

.collection-hero {
    background: linear-gradient(135deg, #FDF1EA 0%, #f8f0eb 100%);
    padding: 80px 0 60px;
    text-align: center;
}

.collection-hero .container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

.collection-hero-label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--maroon);
    margin-bottom: 12px;
}

.collection-hero-title {
    font-family: "Cabin", sans-serif;
    font-size: 48px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 16px;
}

.collection-hero-desc {
    font-size: 16px;
    color: var(--text-muted);
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.6;
}

.collection-grid-section {
    padding: 60px 0;
}

.collection-grid-section .container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

.collection-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

/* Override Bootstrap col when used with collection grid */
.collection-grid .collection-card {
    flex: none;
    max-width: none;
    padding-left: 0;
    padding-right: 0;
    width: 100%;
}

.collection-card {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    aspect-ratio: 4/5;
    display: block;
    margin-bottom: 0;
    text-decoration: none;
    color: inherit;
}

.collection-card-image {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.collection-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.collection-card:hover .collection-card-image img {
    transform: scale(1.08);
}

.collection-card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 28px 24px;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.3) 50%, transparent 100%);
    color: var(--white);
    z-index: 1;
}

.collection-card-content h3 {
    font-family: "Cabin", sans-serif;
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--white);
}

.collection-card-content span {
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.5px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    opacity: 0.95;
}

.collection-card:hover .collection-card-content span {
    gap: 12px;
    transition: gap 0.3s ease;
}

@media (max-width: 1024px) {
    .collection-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .collection-hero-title {
        font-size: 36px;
    }
}

@media (max-width: 768px) {
    .collection-hero {
        padding: 48px 24px 40px;
    }

    .collection-hero-title {
        font-size: 28px;
    }

    .collection-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .collection-card {
        aspect-ratio: 4/3;
    }

    .collection-card-content {
        padding: 20px 16px;
    }

    .collection-card-content h3 {
        font-size: 18px;
    }

    .collection-card-content span {
        font-size: 12px;
    }
}
/* ===== Auth Page (Login / Sign Up) ===== */

.auth-page {
    min-height: 100vh;
}

.auth-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 100vh;
}

/* --- Visual Panel --- */
.auth-visual {
    position: relative;
    overflow: hidden;
}

.auth-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.auth-visual-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(26, 26, 26, 0.25) 0%, rgba(26, 26, 26, 0.75) 100%);
}

.auth-visual-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 48px;
    z-index: 1;
}

.auth-logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 28px;
}

.auth-logo .logo-text {
    font-family: "Cabin", sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: var(--white);
}

.auth-logo .logo-line {
    width: 36px;
    height: 2px;
    background: rgba(232, 200, 122, 0.80);
}

.auth-visual-content h2 {
    font-family: "Cabin", sans-serif;
    font-size: clamp(26px, 3vw, 36px);
    font-weight: 700;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 12px;
}

.auth-visual-content h2 em {
    font-style: italic;
    color: rgba(232, 200, 122, 0.90);
}

.auth-visual-content p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.7;
    max-width: 400px;
}

/* --- Forms Panel --- */
.auth-forms {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 48px 40px;
    background: #fbfaf8;
    overflow-y: auto;
}

.auth-forms-inner {
    width: 100%;
    max-width: 440px;
}

.auth-mobile-logo {
    display: none;
    align-items: center;
    gap: 10px;
    margin-bottom: 28px;
}

.auth-mobile-logo .logo-text {
    font-family: "Cabin", sans-serif;
    font-size: 24px;
    font-weight: 700;
}

.auth-mobile-logo .logo-line {
    width: 28px;
    height: 2px;
    background: var(--maroon);
}

/* --- Tabs --- */
.auth-tabs {
    display: flex;
    gap: 4px;
    padding: 4px;
    border-radius: 14px;
    background: rgba(0, 0, 0, 0.05);
    margin-bottom: 32px;
}

.auth-tab {
    flex: 1;
    padding: 12px 20px;
    border: none;
    border-radius: 11px;
    background: transparent;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    color: var(--text-muted);
    transition: all 0.2s ease;
    font-family: inherit;
}

.auth-tab.active {
    background: var(--white);
    color: var(--text-dark);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

/* --- Panels --- */
.auth-panel {
    display: none;
}

.auth-panel.active {
    display: block;
}

.auth-title {
    font-family: "Cabin", sans-serif;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 6px;
}

.auth-sub {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 28px;
}

/* --- Social Buttons --- */
.auth-social {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 24px;
}

.auth-social-btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 14px 20px;
    border-radius: 14px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    border: 1px solid rgba(0, 0, 0, 0.10);
    transition: all 0.2s ease;
    font-family: inherit;
}

.auth-google {
    background: var(--white);
    color: var(--text-dark);
}

.auth-google:hover {
    border-color: #4285f4;
    box-shadow: 0 6px 24px rgba(66, 133, 244, 0.12);
}

.auth-google i {
    color: #4285f4;
    font-size: 16px;
}

.auth-facebook {
    background: #1877f2;
    color: var(--white);
    border-color: #1877f2;
}

.auth-facebook:hover {
    background: #166bda;
}

.auth-facebook i {
    font-size: 16px;
}

/* --- Divider --- */
.auth-divider {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
}

.auth-divider::before,
.auth-divider::after {
    content: "";
    flex: 1;
    height: 1px;
    background: rgba(0, 0, 0, 0.08);
}

.auth-divider span {
    font-size: 12px;
    font-weight: 600;
    color: var(--text-muted);
    letter-spacing: 0.5px;
    white-space: nowrap;
}

/* --- Form --- */
.auth-form {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.auth-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.auth-field {
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.auth-field label,
.auth-otp-section label {
    font-size: 13px;
    font-weight: 700;
}

.auth-field input,
.auth-field select {
    width: 100%;
    padding: 14px 16px;
    border-radius: 12px;
    border: 1px solid rgba(0, 0, 0, 0.12);
    font-size: 14px;
    font-family: inherit;
    background: var(--white);
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.auth-field input:focus {
    outline: none;
    border-color: rgba(139, 41, 66, 0.45);
    box-shadow: 0 0 0 3px rgba(139, 41, 66, 0.08);
}

.auth-phone-input {
    display: flex;
    align-items: stretch;
    border-radius: 12px;
    border: 1px solid rgba(0, 0, 0, 0.12);
    overflow: hidden;
    background: var(--white);
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.auth-phone-input:focus-within {
    border-color: rgba(139, 41, 66, 0.45);
    box-shadow: 0 0 0 3px rgba(139, 41, 66, 0.08);
}

.auth-country {
    display: flex;
    align-items: center;
    padding: 0 14px;
    font-size: 14px;
    font-weight: 700;
    color: var(--text-muted);
    background: rgba(0, 0, 0, 0.03);
    border-right: 1px solid rgba(0, 0, 0, 0.08);
}

.auth-phone-input input {
    border: none;
    border-radius: 0;
    padding: 14px 14px;
}

.auth-phone-input input:focus {
    box-shadow: none;
}

/* --- OTP --- */
.auth-otp-section {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.auth-otp-inputs {
    display: flex;
    gap: 12px;
}

.auth-otp-box {
    width: 52px;
    height: 52px;
    text-align: center;
    font-size: 20px;
    font-weight: 700;
    border: 1px solid rgba(0, 0, 0, 0.14);
    border-radius: 12px;
    background: var(--white);
    font-family: inherit;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.auth-otp-box:focus {
    outline: none;
    border-color: var(--maroon);
    box-shadow: 0 0 0 3px rgba(139, 41, 66, 0.10);
}

.auth-otp-note {
    font-size: 13px;
    color: var(--text-muted);
}

.auth-resend {
    background: none;
    border: none;
    color: var(--maroon);
    font-weight: 700;
    cursor: pointer;
    font-size: 13px;
    font-family: inherit;
}

.auth-resend:hover {
    text-decoration: underline;
}

/* --- Checkbox --- */
.auth-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 13px;
    color: var(--text-muted);
    cursor: pointer;
    line-height: 1.5;
}

.auth-checkbox input {
    margin-top: 3px;
    accent-color: var(--maroon);
}

.auth-checkbox a {
    color: var(--maroon);
    font-weight: 600;
}

.auth-checkbox a:hover {
    text-decoration: underline;
}

/* --- Submit --- */
.auth-submit {
    width: 100%;
    padding: 16px 24px;
    border-radius: 14px;
    font-size: 14px;
    margin-top: 4px;
}

/* --- Switch --- */
.auth-switch {
    text-align: center;
    font-size: 14px;
    color: var(--text-muted);
    margin-top: 28px;
}

.auth-switch-btn {
    background: none;
    border: none;
    color: var(--maroon);
    font-weight: 700;
    cursor: pointer;
    font-size: 14px;
    font-family: inherit;
}

.auth-switch-btn:hover {
    text-decoration: underline;
}

/* ===== Responsive ===== */
@media (max-width: 1024px) {
    .auth-layout {
        grid-template-columns: 1fr;
    }

    .auth-visual {
        display: none;
    }

    .auth-mobile-logo {
        display: inline-flex;
    }

    .auth-forms {
        min-height: 100vh;
        padding: 40px 24px;
    }
}

@media (max-width: 480px) {
    .auth-row {
        grid-template-columns: 1fr;
    }

    .auth-otp-box {
        width: 48px;
        height: 48px;
        font-size: 18px;
    }
}



 /* ── Slider Wrapper ── */
  .banner-slider { width: 100%; }
.banner-slider .slick-prev i{
    transform: rotateZ(230deg) translateY(-1px) translateX(12px);
    position: absolute;
    top: 50%;
    left: 50%;
    color: var(--contentbrd);
    transition: all 0.5s ease;
}
.banner-slider .slick-prev::before,  
.banner-slider .slick-next::before{content: none;}
.banner-slider .slick-prev:hover i,
.banner-slider .slick-next:hover i{color: var(--white) !important;}
.banner-slider .slick-prev:hover,
.banner-slider .slick-next:hover{background-color: var(--contentbrd);}
.banner-slider .slick-prev,
.banner-slider .slick-next{transition: all 0.5s ease;font-size: 18px;}
.banner-slider .slick-next i {
  transform: rotateZ(50deg) translateY(1px) translateX(-10px);
  position: absolute;
  top: 50%;
  left: 50%;
  color: var(--contentbrd);
  transition: all 0.5s ease;
}
  /* ── Each Slide ── */
  .slide {
    position: relative;
    /* height: 480px; */
    background: var(--peach);
    overflow: hidden;
    outline: none;
  }
  .slide img{width: 100%;}
  html body .banner-slider.slick-dotted.slick-slider{margin-bottom: 0;}
  /* Decorative dots / stars (CSS only, no images needed) */
  .slide::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
      radial-gradient(circle, #e8a83844 1px, transparent 1px),
      radial-gradient(circle, #d63f7c33 1px, transparent 1px);
    background-size: 40px 40px, 60px 60px;
    background-position: 0 0, 20px 20px;
    pointer-events: none;
    z-index: 0;
  }
 
  /* Wave divider between left text and right image */
  .wave {
    position: absolute;
    top: 0; right: 38%;
    width: 140px; height: 100%;
    z-index: 1;
    pointer-events: none;
  }
 
  /* ── LEFT CONTENT ── */
  .slide-content {
    position: absolute;
    top: 50%; left: 6%;
    transform: translateY(-50%);
    z-index: 2;
    max-width: 566px;
  }
 
  .slide-tag {
    display: inline-block;
    font-size: 22px;
    font-weight: 300;
    letter-spacing: 2px;
    text-transform: capitalize;
    color: var(--contentbrd);
    font-family: var(--body-other-font);
    border-radius: 20px;
    padding: 4px 14px 4px 0;
    margin-bottom: 0px;
    opacity: 0;
    transform: translateY(18px);
    transition: opacity .5s .1s ease, transform .5s .1s ease;
  }
 
  .slide-title {
    font-family: var(--body-font);
    font-size: clamp(28px, 4vw, 48px);
    font-weight: 700;
    color: var(--text);
    line-height: 1.18;
    margin-bottom: 14px;
    opacity: 0;
    transform: translateY(22px);
    transition: opacity .5s .22s ease, transform .5s .22s ease;
  }
 
  .slide-title span { color: var(--pink); }
 
  .slide-desc {
    font-size: 15px;
    color: var(--contentbrd);
    font-family: var(--body-other-font);
    line-height: 1.65;
    margin-bottom: 26px;
    opacity: 0;
    transform: translateY(18px);
    transition: opacity .5s .34s ease, transform .5s .34s ease;
  }
 
  .slide-btn {
    display: inline-block;
    padding: 12px 28px;
    background: var(--text);
    color: #fff;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 1px;
    border-radius: 0px;
    text-decoration: none;
    transition: background .25s, transform .2s;
    opacity: 0;
    transform: translateY(16px);
    transition: opacity .5s .46s ease, transform .5s .46s ease, background .25s;
    width: 100%;
    max-width: 160px;
    text-transform: uppercase;
    text-align: center;
  }
 
  .slide-btn:hover { background: var(--pink); transform: translateY(-2px) !important; }
 
  /* Active slide — animate in */
  .slick-active .slide-tag,
  .slick-active .slide-title,
  .slick-active .slide-desc,
  .slick-active .slide-btn {
    opacity: 1;
    transform: translateY(0);
  }
 
  /* ── RIGHT IMAGE ── */
  .slide-img-wrap {
    position: absolute;
    top: 0; right: 0;
    width: 42%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
    border-radius: 0 0 0 60% / 0 0 0 30%;
    background: #ede0d8;
  }
 
  .slide-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
    transition: transform .6s ease;
  }
 
  .slick-active .slide-img-wrap img { transform: scale(1.04); }
 
  /* Leaf decorations */
  .leaf {
    position: absolute;
    z-index: 3;
    pointer-events: none;
  }
  .leaf svg { display: block; }
  .leaf-tl { top: 90px; left: 46%; width: 70px; transform: rotate(-20deg); }
  .leaf-br { bottom: 10px; right: 2%; width: 90px; transform: rotate(10deg); }
 
  /* ── Slick Dots ── */
  .banner-slider .slick-dots {
    bottom: 18px;
    left: 6%;
    width: auto;
    text-align: left;
  }
  .banner-slider .slick-dots li.slick-active button::before{
    color: var(--contentbrd);
    border:1px solid var(--contentbrd);
    
  }
  .promo-banners .slick-dots li button::before,
  .banner-slider .slick-dots li button::before {
    font-size: 35px;
    color: var(--black);
    opacity: 1;
    transition: all 0.5s ease;
    border:1px solid transparent;
    border-radius: 50%;
    line-height: 14px;
  }
  .promo-banners .slick-dots li button:before{color:var(--peach);}
  .promo-banners .slick-dots li.slick-active button::before{color: var(--rose-dk);}
  .banner-slider .slick-dots li.slick-active button::before { opacity: 1; }
  .promo-banners .slick-dots li button:before,
  .banner-slider .slick-dots li button:before{
        width: 15px;
    height: 15px;
  }

  /* ── Arrows ── */
  .banner-slider .slick-prev,
  .banner-slider .slick-next {
    z-index: 10;
    width: 40px; height: 40px;
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 2px 10px #0002;
    top: 50%;
  }
  .banner-slider .slick-prev { left: 10px; }
  .banner-slider .slick-next { right: 10px; }
  .banner-slider .slick-prev::before,
  .banner-slider .slick-next::before { color: var(--text); font-size: 18px; }
 
  /* ── Responsive ── */
  @media (max-width: 768px) {
    .slide { height: auto; min-height: 420px; padding-bottom: 60px; }
    .slide-img-wrap { position: relative; width: 100%; height: 220px; border-radius: 0 0 50% 50% / 0 0 30px 30px; }
    .wave { display: none; }
    .banner-slider .slide-content { /*position: relative; top: auto; left: auto; transform: none; padding: 28px 20px 0; max-width: 100%;*/ max-width: 50%; padding: 16px 24px;}
    .slide::before { background-size: 28px 28px, 42px 42px; }
    .leaf-tl { display: none; }
    .leaf-br { width: 60px; }
    .banner-slider .slide{min-height: auto;padding-bottom: 0;}
    .banner-slider .slick-dots{bottom: 0;}
  }
 
  @media (max-width: 480px) {
    .slide-img-wrap { height: 180px; }
    .slide-title { font-size: 24px; }
  }



   .testimonials-wrapper {
      width: 100%;
      max-width: 100%;
      margin: 0 auto;
    }
 
    .section-label {
      font-size: 11px;
      font-weight: 500;
      letter-spacing: 0.25em;
      text-transform: uppercase;
      color: var(--accent);
      margin-bottom: 14px;
    }
 
    /* ── TWO-PANEL SHELL ── */
    .testi-shell {
      display: flex;
      min-height: 380px;
      border-radius: 4px;
      overflow: hidden;
    }
 
    /* ════════════════════
       LEFT — slides only
    ════════════════════ */
    .testi-left-wrap {
      flex: 0 0 48%;
      background: var(--off-white);
      overflow: hidden;
    }
 
    .testi-left-slider { height: 100%; }
 
    .slide-content::after {
        content: '';
        position: absolute;
        bottom: 0;left: 0;
        width: 50%;
        height: 5px;
        background-color: var(--contentbrd);
    }
    .slide-content {
      padding: 52px 48px 44px 24px;
      display: flex !important;
      flex-direction: column;
      justify-content: center;
      /* height: 100%; */
      border-top: 5px solid var(--contentbrd);
      border-left: 5px solid var(--contentbrd);
      outline: none;
    }
 
    .quote-icon {
      font-family: 'Cormorant Garamond', serif;
      font-size: 80px;
      font-weight: 700;
      line-height: 0.8;
      color: var(--black);
      display: block;
      margin-bottom: 8px;
      opacity: 0;
      transform: translateY(22px);
      transition: opacity 0.55s ease 0.05s, transform 0.55s ease 0.05s;
    }
    .tagline {
      font-family: 'Cormorant Garamond', serif;
      font-size: 22px;
      font-weight: 600;
      color: var(--text);
      margin-bottom: 16px;
      opacity: 0;
      transform: translateY(18px);
      transition: opacity 0.55s ease 0.15s, transform 0.55s ease 0.15s;
    }
    .body-text {
      font-size: 15px;
      font-weight: 300;
      line-height: 1.78;
      color: #333;
      max-width: 400px;
      margin-bottom: 24px;
      opacity: 0;
      transform: translateY(14px);
      transition: opacity 0.55s ease 0.25s, transform 0.55s ease 0.25s;
    }
    .author {
      font-size: 12px;
      font-weight: 500;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--muted);
      opacity: 0;
      transform: translateY(12px);
      transition: opacity 0.55s ease 0.35s, transform 0.55s ease 0.35s;
    }
    .testi-nav {
      display: flex;
      gap: 2px;
      margin-top: 32px;
      opacity: 0;
      transform: translateY(10px);
      transition: opacity 0.55s ease 0.45s, transform 0.55s ease 0.45s;
    }
 
    .slick-active .quote-icon,
    .slick-active .tagline,
    .slick-active .body-text,
    .slick-active .author,
    .slick-active .testi-nav {
      opacity: 1;
      transform: translateY(0);
    }
 
    .nav-btn {
      width: 46px; height: 38px;
      background: var(--black);
      border: none; cursor: pointer;
      display: flex; align-items: center; justify-content: center;
      transition: background 0.2s;
    }
    .nav-btn:hover { background: var(--accent); }
    .nav-btn svg { width: 15px; height: 15px; stroke: #fff; stroke-width: 2; fill: none; }
 
    /* ════════════════════
       RIGHT — STATIC PANEL
    ════════════════════ */
    .testi-right {
      flex: 1;
      background: var(--black);
      position: relative;
      overflow: hidden;
      display: flex;
      align-items: center;
      justify-content: center;
    }
 
    /* diagonal texture — never moves */
    .testi-right::before {
      content: '';
      position: absolute; inset: 0;
      background: repeating-linear-gradient(
        -55deg,
        transparent, transparent 18px,
        rgba(255,255,255,0.03) 18px,
        rgba(255,255,255,0.03) 19px
      );
      pointer-events: none;
    }
 
    /* gold bottom line — static */
    .testi-right::after {
      content: '';
      position: absolute;
      bottom: 0; left: 0;
      height: 3px; width: 100%;
      background: linear-gradient(90deg, var(--accent), transparent);
    }
 
    /* ── AVATARS ── */
    .avatars-track {
      display: flex;
      align-items: center;
      gap: 44px;
      position: relative;
      z-index: 2;
    }
 
    .avatar-item {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 10px;
    }
 
    .avatar-ring {
      width: 92px; height: 92px;
      border-radius: 50%;
      border: 3px solid rgba(255,255,255,0.35);
      overflow: hidden;
      transition:
        border-color 0.5s ease,
        box-shadow   0.5s ease,
        transform    0.5s cubic-bezier(0.34,1.56,0.64,1),
        opacity      0.5s ease;
    }
 
    /* ACTIVE */
    .avatar-item.active .avatar-ring {
      border-color: #fff;
      box-shadow: 0 0 0 4px rgba(200,169,110,0.5);
      transform: scale(1.1);
      opacity: 1;
    }
 
    /* INACTIVE */
    .avatar-item.inactive .avatar-ring {
      border-color: rgba(255,255,255,0.18);
      box-shadow: none;
      transform: scale(0.86);
      opacity: 0.4;
    }
 
    .avatar-placeholder {
      width: 100%; height: 100%;
      background: linear-gradient(135deg, #3a3a3a, #1a1a1a);
      display: flex; align-items: center; justify-content: center;
    }
    .avatar-placeholder svg { width: 40px; height: 40px; fill: rgba(255,255,255,0.22); }
 
    .avatar-name {
      font-size: 11px;
      font-weight: 400;
      letter-spacing: 0.07em;
      text-transform: uppercase;
      transition: color 0.5s ease, opacity 0.5s ease;
    }
    .avatar-item.active   .avatar-name { color: rgba(255,255,255,0.9);  opacity: 1;   }
    .avatar-item.inactive .avatar-name { color: rgba(255,255,255,0.3);  opacity: 0.5; }
 
    /* ── Slick height fix ── */
    .testi-left-slider .slick-list,
    .testi-left-slider .slick-track { height: 100%; }
    .testi-left-slider .slick-track  { display: flex !important; }
    .testi-left-slider .slick-slide  { height: inherit !important; }
    .testi-left-slider .slick-slide > div { height: 100%; }
 
    /* ── Responsive ── */
    @media (max-width: 860px) {
      .testi-shell { flex-direction: column; }
      .testi-left-wrap { flex: none; }
      .slide-content { padding: 36px 24px; }
      .testi-right { min-height: 200px; }
    }
    @media (max-width: 480px) {
      .tagline { font-size: 18px; }
      .body-text { font-size: 14px; }
      .avatar-ring { width: 68px; height: 68px; }
      .avatars-track { gap: 28px; }
    }



    
 .footer-outer {
      position: relative;
      border-top: 0px solid var(--line);
      background-color: var(--bg);
    }
 
    /* The 5 vertical lines visible in the design */
    .footer-outer::before {
      content: '';
      position: absolute;
      pointer-events: none;
      height: 1px;
      background-color: var(--line);
      top: 5.53em;
      left: 0;
      width: 100%;
    }
 
    /* ── MAIN FOOTER BODY ── */
    .footer-body {
      position: relative;
      z-index: 1;
      max-width: 1200px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1fr 1fr 1fr;
      border-left:  1px solid var(--line);
      border-right: 1px solid var(--line);
    }
 
    .footer-col {
      padding: 56px 48px 52px;
      border-right: 1px solid var(--line);
      animation: fadeUp 0.7s ease both;
    }
    .footer-col:last-child { border-right: none; }
 
    .footer-col:nth-child(1) { animation-delay: 0.05s; }
    .footer-col:nth-child(2) { animation-delay: 0.15s; }
    .footer-col:nth-child(3) { animation-delay: 0.25s; }
 
    @keyframes fadeUp {
      from { opacity: 0; transform: translateY(18px); }
      to   { opacity: 1; transform: translateY(0); }
    }
 
    /* ── HEADING ── */
    .col-heading {
      font-size: 16px;
      font-weight: 600;
      letter-spacing: 0.03em;
      color: var(--white);
      margin-bottom: 20px;
      position: relative;
      padding-bottom: 14px;
    }
 
    /* red underline matching design */
    .col-heading::after {
      content: '';
      position: absolute;
      bottom: 0; left: 0;
      width: 36px; height: 2px;
      background: var(--red);
      transition: width 0.4s ease;
    }
    .footer-col:hover .col-heading::after { width: 60px; }
 
    /* ── CONTACT INFO ── */
    .contact-list {
      list-style: none;
      margin-top: 22px;
      display: flex;
      flex-direction: column;
      gap: 14px;
    }
 
    .contact-list li {
      display: flex;
      align-items: flex-start;
      gap: 12px;
      font-size: 13.5px;
      font-weight: 300;
      color: var(--muted);
      line-height: 1.5;
      transition: color 0.25s;
    }
    .contact-list li:hover { color: var(--white); }
 
    .contact-list li .icon {
      color: var(--red);
      font-size: 14px;
      margin-top: 2px;
      flex-shrink: 0;
      transition: transform 0.3s ease;
    }
    .contact-list li:hover .icon { transform: scale(1.2); }
 
    /* ── SOCIAL ICONS ── */
    .social-row {
      display: flex;
      gap: 8px;
      margin-top: 32px;
    }
 
    .social-btn {
      width: 36px; height: 36px;
      border: 1px solid rgba(255,255,255,0.2);
      border-radius: 4px;
      display: flex; align-items: center; justify-content: center;
      color: var(--white);
      font-size: 13px;
      text-decoration: none;
      position: relative;
      overflow: hidden;
      transition: border-color 0.3s, color 0.3s, transform 0.3s;
    }
 
    .social-btn::before {
      content: '';
      position: absolute;
      inset: 0;
      background: var(--red);
      transform: translateY(100%);
      transition: transform 0.3s cubic-bezier(0.23,1,0.32,1);
    }
 
    .social-btn i { position: relative; z-index: 1; }
 
    .social-btn:hover {
      border-color: var(--red);
      transform: translateY(-2px);
    }
    .social-btn:hover::before { transform: translateY(0); }
 
    /* ── QUICK LINKS / CUSTOMER SUPPORT LISTS ── */
    .link-list {
      list-style: none;
      margin-top: 22px;
      display: flex;
      flex-direction: column;
      gap: 0;
    }
 
    .link-list li a {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      font-size: 13.5px;
      font-weight: 300;
      color: var(--muted);
      text-decoration: none;
      padding: 7px 0;
      position: relative;
      transition: color 0.25s, gap 0.25s;
    }
 
    /* animated arrow on hover */
    .link-list li a::before {
      content: '›';
      font-size: 16px;
      color: var(--red);
      opacity: 0;
      transform: translateX(-6px);
      transition: opacity 0.25s, transform 0.25s;
      line-height: 1;
    }
 
    .link-list li a:hover {
      color: var(--white);
      gap: 12px;
    }
    .link-list li a:hover::before {
      opacity: 1;
      transform: translateX(0);
    }
 
    /* underline slide effect */
    .link-list li a::after {
      content: '';
      position: absolute;
      bottom: 5px; left: 0;
      height: 1px;
      width: 0;
      background: var(--red);
      transition: width 0.3s ease;
    }
    .link-list li a:hover::after { width: 100%; }
 
    /* ══════════════════════════════
       BOTTOM BAR
    ══════════════════════════════ */
    .footer-bottom {
      position: relative;
      z-index: 1;
      border-top: 1px solid var(--line);
      border-left:  1px solid var(--line);
      border-right: 1px solid var(--line);
      max-width: 1200px;
      margin: 0 auto;
      padding: 18px 48px;
      text-align: center;
      font-size: 13px;
      font-weight: 300;
      color: var(--muted);
      letter-spacing: 0.01em;
    }
 
    .footer-bottom a {
      color: var(--red);
      text-decoration: none;
      transition: color 0.2s;
    }
    .footer-bottom a:hover { color: var(--hover); }
 
    /* ══════════════════════════════
       RESPONSIVE
    ══════════════════════════════ */
    @media (max-width: 900px) {
      .footer-body {
        grid-template-columns: 1fr 1fr;
      }
      .footer-col:nth-child(1) {
        grid-column: 1 / -1;
        border-right: none;
        border-bottom: 1px solid var(--line);
        padding-bottom: 36px;
      }
      .footer-col:nth-child(2) { border-right: 1px solid var(--line); }
      .footer-col:nth-child(3) { border-right: none; }
    }
 
    @media (max-width: 560px) {
      .footer-body {
        grid-template-columns: 1fr;
      }
      .footer-col {
        padding: 36px 24px;
        border-right: none !important;
        border-bottom: 1px solid var(--line);
      }
      .footer-col:last-child { border-bottom: none; }
      .footer-bottom { padding: 16px 24px; font-size: 12px; }
    }



     /* ══════════════════════════════
       SECTION WRAPPER
    ══════════════════════════════ */
    .gallery-section {
      position: relative;
      padding: 40px 0 52px;
      background:
        radial-gradient(ellipse 80% 60% at 50% 50%, #2d2000 0%, #0f0c00 100%);
      overflow: hidden;
    }
 
    /* decorative leaf silhouettes — left & right edges */
    .gallery-section::before,
    .gallery-section::after {
      content: '';
      position: absolute;
      top: 0; bottom: 0;
      width: 220px;
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 600'%3E%3Cpath d='M180,0 Q60,150 100,300 Q140,450 80,600' stroke='%23b8960c' stroke-width='1.5' fill='none' opacity='0.18'/%3E%3Cpath d='M160,0 Q40,200 80,350 Q120,500 60,600' stroke='%23b8960c' stroke-width='1' fill='none' opacity='0.10'/%3E%3Cpath d='M200,100 Q80,180 120,300 Q150,400 100,500' stroke='%23d4a917' stroke-width='1' fill='none' opacity='0.12'/%3E%3C/svg%3E");
      background-repeat: no-repeat;
      background-size: cover;
      pointer-events: none;
      z-index: 0;
    }
    .gallery-section::before { left: 0; }
    .gallery-section::after  { right: 0; transform: scaleX(-1); }
 
    /* ══════════════════════════════
       SLIDER TRACK
    ══════════════════════════════ */
    .gallery-slider-wrap {
      position: relative;
      z-index: 1;
      max-width: 1440px;
      margin: 0 auto;
      padding: 0 20px;
    }
    .hidden {
    overflow: hidden;
    display: none;
    visibility: hidden;
    }
    .gallery-slider { outline: none; }
 
    /* each slide wrapper */
    .gallery-slide {
      padding: 16px 10px;
      outline: none;
    }
 
    /* image frame */
    .slide-frame {
      position: relative;
      border-radius: 10px;
      overflow: hidden;
      border: 1.5px solid rgba(180,140,10,0.25);
      transition:
        transform    0.5s cubic-bezier(0.23,1,0.32,1),
        border-color 0.4s ease,
        box-shadow   0.4s ease;
      line-height: 0;
    }
 
    .slide-frame img {
      width: 100%;
      height: auto;
      object-fit: cover;
      object-position: top center;
      display: block;
      transition: transform 0.6s ease;
      filter: brightness(0.88);
    }
 
    /* ── CENTER (active) slide ── */
    .slick-center .slide-frame {
      border-color: rgba(200,162,39,0.55);
      box-shadow: 0 8px 48px rgba(0,0,0,0.55), 0 0 0 1px rgba(200,162,39,0.2);
      transform: scale(1.04);
    }
    .slick-center .slide-frame img {
      filter: brightness(1);
    }
 
    /* hover on any slide */
    .slide-frame:hover img {
      transform: scale(1.04);
    }
 
    /* ══════════════════════════════
       DOTS
    ══════════════════════════════ */
    .gallery-slider .slick-dots {
      bottom: -36px;
      display: flex !important;
      justify-content: center;
      gap: 8px;
      list-style: none;
      padding: 0;
    }
 
    .gallery-slider .slick-dots li {
      width: auto; height: auto; margin: 0;
    }
 
    .gallery-slider .slick-dots li button {
      width: 10px; height: 10px;
      border-radius: 50%;
      background: var(--dr_pink);
      border: none; padding: 0;
      font-size: 0;
      cursor: pointer;
      transition: background 0.3s, transform 0.3s, width 0.3s;
    }
    .gallery-slider .slick-dots li button::before { display: none; }
 
    .gallery-slider .slick-dots li.slick-active button {
      background: var(--bs-btn-hover-color);
      width: 24px;
      border-radius: 5px;
      transform: none;
    }
 
    /* ══════════════════════════════
       RESPONSIVE
    ══════════════════════════════ */
    @media (max-width: 1024px) {
      .slide-frame img { height: 360px; }
    }
    @media (max-width: 768px) {
      .slide-frame img { height: 280px; }
      .gallery-slide   { padding: 12px 6px; }
    }
    @media (max-width: 480px) {
      .slide-frame img { height: auto; }
    }


    
.testimonials-section{background-color: #F4F4F4;padding: 80px 0;}

html body .slider-for .testimonial-section-col-logo-holder.slick-current img{
  max-width: 110px;
  height: 110px;  
}
html body .slider-for .testimonial-section-col-logo-holder img {
  max-width: 90px;
  height: 90px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--white);
}
.testimonial-section-col-right .slick-slide::before{
    content: "\e903";
    font-family: 'icomoon' !important;
    font-size: 23px;
    color: #8F8F85;
}
.testimonial-section-col-left .slick-slide img{
    margin-left: -3em;
}
.testimonial-section-col-left{
    background: url(../img/m8-bg-91.png) no-repeat center;
}
/* Default - all slides at 0.5 opacity */
.slider-for .slick-slide {
    opacity: 0.5;
    transition: opacity 0.3s ease;
}

/* Current active slide - full opacity */
.slider-for .slick-slide.slick-current {
    opacity: 1;
}

/* Next slide (sibling after current) - 0.5 opacity */
.slider-for .slick-slide.slick-current + .slick-slide {
    opacity: 0.5;
    padding-top: 58px !important;
}
.testimonial-section-col-right .custom-slick-arrow:hover{background-color: var(--bg);}
.testimonial-section-col-right .custom-slick-arrow{width: 38px;height: 38px;background-color: #222222;position: relative;transition: all 0.5s ease;}
.testimonial-section-col-right .custom-slick-arrow-right i{
    transform: rotate(50deg) translateX(-54%) translateY(-3%);
    position: absolute;
    top: 50%;
    left: 50%;
}
.testimonial-section-col-right .custom-slick-arrow-left i{
    transform: rotate(230deg) translateX(69%) translateY(-3%);
    position: absolute;
    top: 50%;
    left: 50%;
}


  /* ───── MOBILE MENU BTN ───── */
  .mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    margin-left: 8px;
    color: var(--deep);
    font-size: 20px;
    border-radius: 8px;
    transition: background 0.2s;
  }
  .mobile-menu-btn:hover { background: rgba(184,134,11,0.08); }

  /* ───── MOBILE DRAWER ───── */
  .mobile-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(26,18,8,0.45);
    z-index: 1100;
    opacity: 0;
    transition: opacity 0.3s;
  }
  .mobile-overlay.open { opacity: 1; }

  .mobile-drawer {
    position: fixed;
    top: 0; right: 0; bottom: 0;
    width: 300px;
    background: #fff;
    z-index: 1101;
    transform: translateX(100%);
    transition: transform 0.36s var(--ease);
    display: flex;
    flex-direction: column;
    overflow-y: auto;
  }
  .mobile-drawer.open { transform: translateX(0); }

  .drawer-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    border-bottom: 1px solid var(--border);
  }
  .drawer-header img{width: 50%;}
  .drawer-close {
    background: none;
    border: none;
    font-size: 20px;
    cursor: pointer;
    color: var(--deep);
    padding: 4px 8px;
    border-radius: 6px;
    transition: background 0.2s;
  }
  .drawer-close:hover {background: rgba(184,134,11,0.08);}
  .drawer-nav { padding: 16px 0; flex: 1; }
  .drawer-nav a,
  .drawer-nav .drawer-section-trigger {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 13px 24px;
    font-size: 14px;
    font-weight: 500;
    color: var(--deep);
    text-decoration: none;
    letter-spacing: 0.03em;
    border: none;
    background: none;
    width: 100%;
    cursor: pointer;
    text-align: left;
    transition: background 0.2s, color 0.2s;
  }
  .drawer-nav a:hover,
  .drawer-nav .drawer-section-trigger:hover {
    background: rgba(0,0,0,0.06);
    color: var(--maroon);
  }
  .drawer-sub {
    background: rgba(0,0,0,0.03);
    border-left: 2px solid var(--border);
    padding-left: 24px;
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.3s var(--ease);
  }
  .drawer-sub.open { max-height: 400px; }
  .drawer-sub a {
    padding: 10px 16px;
    font-size: 13px;
    font-weight: 400;
    color: #5a4a2a;
  }
  .drawer-sub a:hover { color: var(--gold); }
  .drawer-chevron { font-size: 10px; transition: transform 0.3s; opacity: 0.5; }
  .drawer-section-trigger.open .drawer-chevron { transform: rotate(180deg); }

  .drawer-footer {
    padding: 20px 24px;
    border-top: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  .drawer-footer a {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: var(--white);
    text-decoration: none;
    padding: 10px 14px;
    border-radius: 8px;
    border: 1px solid var(--border);
    transition: background 0.2s;
  }
  
  .drawer-footer a.btn-continue{color: var(--black);}
  .drawer-footer a:hover { background: rgba(184,134,11,0.06); color:var(--black)}
  .drawer-footer .btn-login-m {
    background: var(--deep);
    color: var(--cream) !important;
    border-color: var(--deep);
    justify-content: center;
  }
  .drawer-footer .btn-login-m:hover { background: var(--gold); border-color: var(--gold); }


  /* ═══════════════════════════════
     BACK TO TOP BUTTON
  ═══════════════════════════════ */
  #backToTop {
    position: fixed;
    bottom: 36px;
    right: 36px;
    z-index: 9999;
 
    width: 52px;
    height: 52px;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    outline: none;
    overflow: hidden;
 
    /* Initial hidden state */
    opacity: 0;
    transform: translateY(20px) scale(0.85);
    pointer-events: none;
    transition:
      opacity 0.4s var(--ease),
      transform 0.4s var(--ease),
      box-shadow 0.3s var(--ease);
  }
 
  /* Visible state */
  #backToTop.visible {
    opacity: 1;
    transform: translateY(0) scale(1) rotate(-39deg);
    pointer-events: all;
  }
 
  /* Background layers */
  #backToTop .btn-bg {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: var(--deep);
    transition: transform 0.5s var(--ease), background 0.3s;
  }
  #backToTop:hover .btn-bg {
    background: var(--pink);
    transform: scale(1.08);
  }
 
  /* Ripple ring */
  #backToTop::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 1.5px solid var(--pink);
    transform: scale(1);
    opacity: 0;
    transition: transform 0.5s var(--ease), opacity 0.5s;
  }
  #backToTop:hover::before {
    transform: scale(1.5);
    opacity: 0;
    animation: ringPulse 1.2s var(--ease) infinite;
  }
  @keyframes ringPulse {
    0%   { transform: scale(1);   opacity: 0.7; }
    100% { transform: scale(1.7); opacity: 0; }
  }
 
  /* Arrow icon */
  #backToTop .btn-icon {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.35s ease;
  }
  #backToTop:hover .btn-icon {
    transform: translateY(-1px) translateX(2px);
  }
  #backToTop .btn-icon svg {
    width: 20px;
    height: 20px;
    fill: none;
    stroke: #f5f0e8;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    transition: stroke 0.3s;
  }
 
  /* Progress ring */
  #backToTop .progress-ring {
    position: absolute;
    inset: -3px;
    width: calc(100% + 6px);
    height: calc(100% + 6px);
    transform: rotate(-90deg);
    pointer-events: none;
  }
  #backToTop .progress-ring circle {
    fill: none;
    stroke: var(--pink);
    stroke-width: 2.5;
    stroke-linecap: round;
    transition: stroke-dashoffset 0.1s linear;
  }
 
  /* Active click flash */
  #backToTop:active .btn-bg {
    transform: scale(0.92);
    background: var(--warm);
  }
 
  /* ── TOOLTIP ── */
  #backToTop .tooltip {
    position: absolute;
    right: calc(100% + 12px);
    top: 50%;
    transform: translateY(-50%) translateX(6px);
    background: var(--deep);
    color: var(--cream);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    white-space: nowrap;
    padding: 6px 12px;
    border-radius: 6px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s, transform 0.25s var(--ease);
  }
  #backToTop .tooltip::after {
    content: '';
    position: absolute;
    left: 100%;
    top: 50%;
    transform: translateY(-50%);
    border: 5px solid transparent;
    border-left-color: var(--deep);
  }
  #backToTop:hover .tooltip {
    opacity: 1;
    transform: translateY(-50%) translateX(0);
  }
 
  /* ── RESPONSIVE ── */
  @media (max-width: 600px) {
    #backToTop {
      bottom: 24px;
      right: 20px;
      width: 46px;
      height: 46px;
    }
    #backToTop .tooltip { display: none; }
  }



  /* ══════════════════════════════════════════════
   OVERLAY
══════════════════════════════════════════════ */
#cartOverlay{
  position:fixed;inset:0;
  background:rgba(58,53,53,.45);
  backdrop-filter:blur(3px);
  -webkit-backdrop-filter:blur(3px);
  z-index:998;
  opacity:0;
  display:none;
  transition:opacity .32s var(--ease);
}
#cartOverlay.active{opacity:1;}
 
/* ══════════════════════════════════════════════
   CART DRAWER
══════════════════════════════════════════════ */
#cartDrawer{
  position:fixed;
  top:0;right:0;bottom:0;
  width:var(--drawer-w);
  max-width:100vw;
  background:var(--white);
  z-index:9999;
  display:flex;flex-direction:column;
  transform:translateX(100%);
  transition:transform .38s var(--ease);
  box-shadow:-8px 0 60px rgba(122,63,63,.14);
}
#cartDrawer.open{transform:translateX(0);}
 
/* ── DRAWER HEAD ── */
.drawer-head{
  padding:24px 28px 20px;
  border-bottom:1px solid var(--line);
  display:flex;align-items:center;justify-content:space-between;
  flex-shrink:0;
  background:var(--white);
}
.drawer-head-left{display:flex;align-items:center;gap:12px;}
.drawer-head-icon{
  width:40px;height:40px;
  border-radius:10px;
  background:var(--rose-lt);
  display:flex;align-items:center;justify-content:center;
  color:var(--rose);font-size:16px;
}
.drawer-head-title{
  font-family:;
  font-size:20px;font-weight:600;
  color:var(--rose);letter-spacing:.01em;
}
.drawer-head-count{
  font-size:12px;font-weight:500;
  color:var(--rose);letter-spacing:.04em;
}
.drawer-close{
  width:36px;height:36px;
  border-radius:10px;
  border:1.5px solid var(--line_cd);
  background:transparent;
  color:var(--muted_cd);
  font-size:14px;cursor:pointer;
  display:flex;align-items:center;justify-content:center;
  transition:background .2s,color .2s,border-color .2s,transform .2s;
}
.drawer-close:hover{
  background:var(--pink);
  color:#fff;
  border-color:var(--pink);
  transform:rotate(90deg);
}
 
/* ── FREE SHIPPING BAR ── */
.shipping-bar{
  margin:18px 28px 0;
  padding:12px 16px;
  background:var(--pink-lt);
  border-radius:10px;
  border:1px solid rgba(232,97,122,.15);
  flex-shrink:0;
}
.shipping-bar-top{
  display:flex;align-items:center;justify-content:space-between;
  margin-bottom:8px;
}
.shipping-bar-top span{
  font-size:12px;font-weight:500;color:var(--rose);
  display:flex;align-items:center;gap:6px;
}
.shipping-bar-top span i{color:var(--pink);font-size:12px;}
.shipping-bar-top .ship-amt{
  font-size:12px;font-weight:600;color:var(--pink);
}
.ship-track{
  height:5px;background:rgba(232,97,122,.2);
  border-radius:999px;overflow:hidden;
}
.ship-fill{
  height:100%;border-radius:999px;
  background:linear-gradient(90deg,var(--pink),var(--rose));
  width:40%;
  transition:width .6s var(--ease);
}
 
/* ── ITEMS SCROLL AREA ── */
.drawer-items{
  flex:1;
  overflow-y:auto;
  padding:20px 28px;
  scrollbar-width:thin;
  scrollbar-color:var(--line) transparent;
}
.drawer-items::-webkit-scrollbar{width:4px;}
.drawer-items::-webkit-scrollbar-thumb{background:var(--line);border-radius:4px;}
 
/* ── CART ITEM ── */
.cart-item{
  display:flex;gap:14px;
  padding:16px 0;
  border-bottom:1px solid var(--line);
  animation:itemIn .35s var(--ease) both;
}
.cart-item:last-child{border-bottom:none;}
@keyframes itemIn{
  from{opacity:0;transform:translateX(16px)}
  to{opacity:1;transform:translateX(0)}
}
.item-img{
  width:82px;height:96px;
  border-radius:10px;
  overflow:hidden;flex-shrink:0;
  background:var(--rose-lt);
  border:1px solid var(--line);
}
.item-img img{width:100%;height:100%;object-fit:cover;}
.item-info{flex:1;min-width:0;}
.item-tag{
  font-size:10px;font-weight:600;
  letter-spacing:.1em;text-transform:uppercase;
  color:var(--pink);margin-bottom:4px;
}
.item-name{
  font-family:var(--body-font);
  font-size:15px;font-weight:400;
  color:var(--coal);line-height:1.3;
  margin-bottom:6px;
}
.item-variant{
  font-size:12px;color:var(--muted_cart);
  margin-bottom:10px;letter-spacing:.02em;
}
.item-bottom{display:flex;align-items:center;justify-content:space-between;}
.item-price{
  font-size:16px;font-weight:600;color:var(--rose);
  font-family:'Outfit',sans-serif;
}
.item-price s{
  font-size:12px;font-weight:400;
  color:var(--muted_cd);margin-left:4px;
}
 
/* qty control */
.qty-ctrl{
  display:flex;align-items:center;gap:0;
  border:1.5px solid var(--line_cd);
  border-radius:8px;overflow:hidden;
}
.qty-btn{
  width:28px;height:28px;
  background:transparent;border:none;
  cursor:pointer;font-size:14px;
  color:var(--rose);
  transition:background .2s,color .2s;
  display:flex;align-items:center;justify-content:center;
}
.qty-btn:hover{background:var(--rose);color:#fff;}
.qty-val{
  width:28px;height:28px;
  display:flex;align-items:center;justify-content:center;
  font-size:13px;font-weight:600;
  color:var(--coal);
  border-left:1px solid var(--line);
  border-right:1px solid var(--line);
  background:var(--cream);
  user-select:none;
}
.item-remove{
  margin-left:10px;
  background:none;border:none;cursor:pointer;
  color:var(--black);font-size:13px;
  transition:color .2s,transform .2s;
  padding:4px;
}
.item-remove:hover{color:var(--pink);transform:scale(1.2);}
 
/* ── EMPTY STATE ── */
.empty-state{
  display:none;
  flex-direction:column;align-items:center;justify-content:center;
  height:100%;gap:16px;text-align:center;
  padding:40px;
}
.blog-no-results{
  display:flex;
  flex-direction:column;
  justify-content:center;
  align-items:center;
  text-align:center;
  /* background: rgba(255, 245, 240, 0.85); */
  /* border: 1px solid rgba(245, 202, 188, 0.75); */
  border-radius: 24px;
  min-height: 240px;
  padding: 40px 30px;
}
.empty-icon{
  width:72px;height:72px;
  border-radius:20px;
  background:var(--rose-lt);
  display:flex;align-items:center;justify-content:center;
  font-size:28px;color:var(--rose);
  margin-bottom:8px;
}
.empty-state h3{
  font-family:var(--body-font);
  font-size:20px;color:var(--rose);
}
.empty-state p{font-size:13px;color:var(--muted_cd);line-height:1.6;max-width:520px;}
 
/* ── DRAWER FOOTER ── */
.drawer-footer{
  flex-shrink:0;
  padding:20px 28px 28px;
  border-top:1px solid var(--line_cd);
  background:var(--white);
}
.subtotal-row{
  display:flex;align-items:baseline;justify-content:space-between;
  margin-bottom:6px;
}
.subtotal-row .lbl{
  font-size:18px;color:var(--muted_cd);font-weight:700;
}
.subtotal-row .val{
  font-family:var(--body-font);
  font-size:24px;font-weight:600;color:var(--rose);
}
.subtotal-note{
  font-size:14px;color:var(--muted_cd);
  font-family: var(--body-other-font);
  margin-bottom:18px;letter-spacing:.02em;
}
.drawer-btns{display:flex;flex-direction:column;gap:10px;}
.btn-checkout{
  display:flex;align-items:center;justify-content:center;gap:10px;
  padding:15px;
  background:var(--rose);color:#fff;
  font-size:13px;font-weight:600;
  letter-spacing:.07em;text-transform:uppercase;
  border-radius:12px;text-decoration:none;border:none;cursor:pointer;
  transition:background .25s,transform .2s;
  position:relative;overflow:hidden;
}
.btn-checkout::after{
  content:'';
  position:absolute;inset:0;
  background:rgba(255,255,255,.12);
  transform:translateX(-100%);
  transition:transform .4s var(--ease);
}
.btn-checkout:hover::after{transform:translateX(0);}
.btn-checkout:hover{background:var(--rose-dk);transform:translateY(-1px);}
.btn-checkout i{font-size:15px;}
 
.btn-continue{
  display:flex;align-items:center;justify-content:center;gap:8px;
  padding:12px;
  background:transparent;
  color:var(--rose);
  font-size:12px;font-weight:600;
  letter-spacing:.06em;text-transform:uppercase;
  border-radius:12px;
  border:1.5px solid var(--line);
  cursor:pointer;text-decoration:none;
  transition:border-color .2s,background .2s;
}
.btn-continue:hover{border-color:var(--rose);background:var(--rose-lt);}
 
/* ── SAFE PAY ── */
.safe-pay{
  display:flex;align-items:center;justify-content:center;
  gap:6px;margin-top:14px;
  font-size:11px;color:var(--muted_cd);letter-spacing:.04em;
}
.safe-pay i{color:var(--pink);font-size:11px;}





/* ═══════════════════════════════════════════
   HEADER
═══════════════════════════════════════════ */
.chk-header{
  background:var(--white);
  border-bottom:1px solid var(--line);
  padding:0 40px;
  height:66px;
  display:flex;align-items:center;justify-content:space-between;
  position:sticky;top:0;z-index:100;
  box-shadow:0 2px 16px rgba(122,63,63,.06);
}
.logo-wrap{
  display:flex;align-items:center;gap:7px;
  text-decoration:none;
}
.logo-dot{
  width:10px;height:10px;border-radius:50%;
  background:var(--pink);
  animation:pulse 2.4s ease-in-out infinite;
}
@keyframes pulse{0%,100%{transform:scale(1)}50%{transform:scale(1.3)}}
.logo-name{
  font-family:var(--body-font);
  font-size:25px;font-weight:600;
  color:var(--rose);letter-spacing:.01em;line-height:1;
}
.logo-tag{
  font-size:9px;font-weight:500;letter-spacing:.13em;
  text-transform:uppercase;color:var(--muted);
  align-self:flex-end;margin-bottom:1px;
}
.chk-steps{
  display:flex;align-items:center;gap:0;
}
.step{
  display:flex;align-items:center;gap:7px;
  font-size:12px;font-weight:500;
  color:var(--hint);letter-spacing:.04em;
  text-transform:uppercase;padding:0 14px;
  position:relative;
}
.step.active{color:var(--rose);}
.step.done{color:var(--success);}
.step-num{
  width:22px;height:22px;border-radius:50%;
  display:flex;align-items:center;justify-content:center;
  font-size:11px;font-weight:600;
  background:var(--line);color:var(--muted);
  transition:all .3s;
}
.step.active .step-num{background:var(--rose);color:#fff;}
.step.done .step-num{background:var(--success);color:#fff;}
.step-sep{
  width:28px;height:1px;background:var(--line);
}
.chk-secure{
  display:flex;align-items:center;gap:7px;
  font-size:12px;color:var(--muted);
}
.chk-secure i{color:var(--pink);font-size:13px;}
 
/* ═══════════════════════════════════════════
   LAYOUT
═══════════════════════════════════════════ */
.chk-layout{
  max-width:1120px;margin:0 auto;
  padding:44px 24px 80px;
  display:grid;
  grid-template-columns:1fr 400px;
  gap:36px;align-items:start;
}
@media(max-width:900px){
  .chk-layout{grid-template-columns:1fr;}
  .order-col{order:-1;}
  .chk-steps{display:none;}
}
@media(max-width:600px){
  .chk-header{padding:0 20px;}
  .chk-layout{padding:24px 16px 60px;}
  .logo-tag{display:none;}
  .chk-secure span{display:none;}
}
 
/* ═══════════════════════════════════════════
   FORM COLUMN
═══════════════════════════════════════════ */
.form-col{}
 
/* ── Section card ── */
.chk-card{
  background:var(--white);
  border-radius:18px;
  border:1px solid var(--line);
  padding:30px 32px;
  margin-bottom:24px;
  box-shadow:var(--shadow);
  animation:cardIn .45s var(--ease) both;
}
@keyframes cardIn{
  from{opacity:0;transform:translateY(18px)}
  to  {opacity:1;transform:translateY(0)}
}
.chk-card:nth-child(1){animation-delay:.04s}
.chk-card:nth-child(2){animation-delay:.10s}
.chk-card:nth-child(3){animation-delay:.16s}
.chk-card:nth-child(4){animation-delay:.22s}

.promo-toggle-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    background: none;
    border: none;
    cursor: pointer;
    font-family: 'Outfit', sans-serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: var(--pink);
    padding: 4px 0;
    transition: color .2s;
}
.promo-codes-list.open {
    max-height: 600px;
    opacity: 1;
}

.promo-codes-list {
    overflow: hidden;
    max-height: 0;
    transition: max-height .42s var(--ease), opacity .3s;
    opacity: 0;
}
.promo-codes-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    padding: 14px 0 18px;
}
.promo-code-card {
    border: 1.5px dashed var(--line);
    border-radius: 12px;
    padding: 13px 14px;
    cursor: pointer;
    background: var(--cream);
    transition: border-color .22s, background .22s, transform .2s;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.promo-code-card:hover {
    border-color: var(--rose);
    background: var(--rose-xl);
    transform: translateY(-2px);
}
.promo-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .08em;
    color: var(--rose);
    font-family: 'Outfit', sans-serif;
}
.promo-desc {
    font-size: 13px;
    /* color: var(--muted); */
    line-height: 1.45;
}
.promo-save {
    font-size: 11px;
    font-weight: 700;
    color: var(--success);
    background: var(--suc-lt);
    padding: 2px 8px;
    border-radius: 5px;
    display: inline-block;
    margin-top: 2px;
    width: fit-content;
}
.promo-expiry {
    font-size: 10px;
    color: var(--hint);
    letter-spacing: .03em;
    margin-top: 2px;
}
.promo-click-hint {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: .07em;
    text-transform: uppercase;
    color: var(--rose-md);
    margin-top: 6px;
    display: flex;
    align-items: center;
    gap: 5px;
    opacity: .7;
}
.promo-remove {
    top: 8px;
    right: 8px;
    background: none;
    border: none;
    color: var(--muted_cd);
    font-size: 12px;
    cursor: pointer;
    transition: color .2s, transform .2s;
}
.promo-remove:hover {
    color: var(--pink);
    transform: scale(1.2);
}

.card-head{
  display:flex;align-items:center;justify-content:space-between;
  margin-bottom:22px;
}
.card-head-left{display:flex;align-items:center;gap:12px;}
.card-icon{
  width:38px;height:38px;border-radius:10px;
  background:var(--rose-lt);
  display:flex;align-items:center;justify-content:center;
  color:var(--rose);font-size:15px;flex-shrink:0;
}
.card-title{
  font-family:var(--body-font);
  font-size:17px;font-weight:600;
  color:var(--rose);letter-spacing:.01em;
}
.card-sub{font-size:12px;color:var(--muted_cart);margin-top:1px;}
.card-link{
  font-size:12px;font-weight:500;color:var(--pink);
  text-decoration:none;
  display:flex;align-items:center;gap:5px;
  transition:color .2s;
}
.card-link:hover{color:var(--pink-dk);}
 
/* ── Inputs ── */
.form-row{display:grid;grid-template-columns:1fr 1fr;gap:14px;margin-bottom:14px;}
.form-row.single{grid-template-columns:1fr;}
.form-row.trio{grid-template-columns:1fr 1fr 1fr;}
@media(max-width:540px){
  .form-row,.form-row.trio{grid-template-columns:1fr;}
}
 
.fld{display:flex;flex-direction:column;gap:5px;position:relative;}
.fld label{
  font-size:12px;font-weight:600;
  letter-spacing:.07em;text-transform:uppercase;
  color:var(--black);
}
.fld label span{color:var(--pink);}
.fld input,
.fld select,
.fld textarea{
  height:46px;
  padding:0 14px;
  border:1.5px solid var(--line);
  border-radius:10px;
  font-family:'Outfit',sans-serif;
  font-size:16px;color:var(--coal);
  background:var(--cream);
  font-family: var(--body-other-font);
  outline:none;
  transition:border-color .25s,background .25s,box-shadow .25s;
  appearance:none;-webkit-appearance:none;
}
.fld select{
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%239e8e8e' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat:no-repeat;background-position:right 14px center;
  padding-right:36px;cursor:pointer;
}
.fld textarea{height:88px;padding:12px 14px;resize:none;}
.fld input:focus,
.fld select:focus,
.fld textarea:focus{
  border-color:var(--rose);
  background:var(--white);
  box-shadow:0 0 0 3px rgba(122,63,63,.10);
}
.fld input::placeholder{color:var(--hint);}
.fld input.valid{border-color:var(--success);}
.fld input.error{border-color:var(--pink);}
.fld .field-icon{
  position:absolute;right:13px;bottom:13px;
  font-size:14px;color:var(--hint);
  pointer-events:none;transition:color .2s;
}
.fld input:focus ~ .field-icon{color:var(--rose);}
.fld input.valid ~ .field-icon{color:var(--success);}
.fld .err-msg{
  font-size:11px;color:var(--pink);
  display:none;gap:4px;align-items:center;
}
.fld input.error ~ .err-msg{display:flex;}
 
/* ── Payment methods ── */
.pay-methods{
  display:grid;grid-template-columns:repeat(3,1fr);gap:10px;
  margin-bottom:20px;
}
@media(max-width:480px){.pay-methods{grid-template-columns:1fr;}}
.pay-opt{
  border:1.5px solid var(--line);border-radius:12px;
  padding:14px 12px;cursor:pointer;
  display:flex;align-items:center;gap:10px;
  transition:border-color .25s,background .25s,transform .2s;
  background:var(--cream);
  position:relative;
}
.pay-opt:hover{border-color:var(--rose-md);background:var(--rose-xl);}
.pay-opt.selected{
  border-color:var(--rose);
  background:var(--rose-lt);
}
.pay-opt input[type=radio]{
  accent-color:var(--rose);
  width:16px;height:16px;flex-shrink:0;
}
.pay-opt-label{
  font-size:13px;font-weight:500;color:var(--coal);
  display:flex;flex-direction:column;gap:2px;
}
var(--body-font){font-size:11px;color:var(--muted);font-weight:400;}
.pay-opt i{font-size:20px;color:var(--rose);flex-shrink:0;margin-right:2px;}
 
.card-fields{
  overflow:hidden;
  max-height:0;
  transition:max-height .4s var(--ease),opacity .3s;
  opacity:0;
}
.card-fields.show{max-height:300px;opacity:1;}
 
/* card number icons */
.card-icons{
  display:flex;gap:6px;align-items:center;margin-bottom:16px;
}
.card-icons img{height:22px;border-radius:4px;border:1px solid var(--line);}
 
/* ── Promo code ── */
.promo-row{display:flex;gap:10px;}
.promo-row input{
  flex:1;height:44px;padding:0 14px;
  border:1.5px solid var(--line);border-radius:10px;
  font-family:'Outfit',sans-serif;font-size:13px;
  color:var(--coal);background:var(--cream);outline:none;
  transition:border-color .25s;
  text-transform:uppercase;letter-spacing:.05em;
}
.promo-row input:focus{border-color:var(--rose);}
.promo-row input::placeholder{text-transform:none;letter-spacing:0;}
.btn-promo{
  height:44px;padding:0 20px;
  background:var(--rose);color:#fff;
  border:none;border-radius:10px;
  font-family:'Outfit',sans-serif;font-size:13px;font-weight:600;
  letter-spacing:.05em;text-transform:uppercase;cursor:pointer;
  transition:background .25s,transform .2s;white-space:nowrap;
}
.btn-promo:hover{background:var(--rose-dk);transform:translateY(-1px);}
.promo-success{
  display:none;align-items:center;gap:8px;
  margin-top:10px;padding:10px 14px;
  background:var(--suc-lt);border-radius:8px;
  font-size:12px;color:var(--success);font-weight:500;
}
.promo-success i{font-size:13px;}
 
/* ── Submit ── */
.btn-place{
  width:100%;padding:17px;
  background:var(--rose);color:#fff;
  border:none;border-radius:14px;
  font-family:var(--body-font);
  font-size:16px;font-weight:600;font-style:italic;
  letter-spacing:.04em;cursor:pointer;
  display:flex;align-items:center;justify-content:center;gap:12px;
  transition:background .25s,transform .2s,box-shadow .25s;
  box-shadow:0 6px 28px rgba(122,63,63,.28);
  position:relative;overflow:hidden;
}
.btn-place::after{
  content:'';position:absolute;inset:0;
  background:linear-gradient(90deg,transparent,rgba(255,255,255,.15),transparent);
  transform:translateX(-100%);
  transition:transform .5s var(--ease);
}
.btn-place:hover::after{transform:translateX(100%);}
.btn-place:hover{
  background:var(--rose-dk);
  transform:translateY(-2px);
  box-shadow:0 10px 36px rgba(122,63,63,.36);
}
.btn-place:active{transform:translateY(0);box-shadow:none;}
.btn-place i{font-size:17px;}
.btn-place .spinner{
  display:none;
  width:18px;height:18px;
  border:2px solid rgba(255,255,255,.35);
  border-top-color:#fff;
  border-radius:50%;
  animation:spin .7s linear infinite;
}
@keyframes spin{to{transform:rotate(360deg)}}
 
.trust-row{
  display:flex;align-items:center;justify-content:center;
  gap:20px;margin-top:16px;flex-wrap:wrap;
}
.trust-item{
  display:flex;align-items:center;gap:6px;
  font-size:11px;color:var(--muted);
}
.trust-item i{}
 
/* ═══════════════════════════════════════════
   ORDER SUMMARY COLUMN
═══════════════════════════════════════════ */
.order-col{
  position:sticky;top:86px;
}
.order-card{
  background:var(--white);
  border-radius:18px;
  border:1px solid var(--line);
  overflow:hidden;
  box-shadow:var(--shadow-lg);
  animation:cardIn .45s .06s var(--ease) both;
}
.order-head{
  background:var(--rose);
  padding:20px 24px;
  display:flex;align-items:center;justify-content:space-between;
}
.order-head-title{
  font-family:var(--body-font);
  font-size:17px;font-weight:600;font-style:italic;
  color:#fff;letter-spacing:.02em;
}
.order-head-count{
  font-size:12px;color:rgba(255,255,255,.75);
  background:rgba(255,255,255,.15);
  padding:4px 10px;border-radius:20px;
}
 
.order-items{padding:20px 24px;border-bottom:1px solid var(--line);}
.o-item{
  display:flex;gap:12px;
  padding:10px 0;
  border-bottom:1px solid var(--line);
}
.o-item:last-child{border-bottom:none;}
.o-item-img{
  width:60px;height:70px;border-radius:8px;
  overflow:hidden;flex-shrink:0;
  background:var(--rose-lt);position:relative;
}
.o-item-img img{width:100%;height:100%;object-fit:cover;}
.o-item-qty{
  position:absolute;top:-6px;right:-6px;
  width:20px;height:20px;border-radius:50%;
  background:var(--rose);color:#fff;
  font-size:10px;font-weight:700;
  display:flex;align-items:center;justify-content:center;
  border:2px solid var(--white);
}
.o-item-info{flex:1;min-width:0;}
.o-item-tag{font-size:10px;color:var(--pink);font-weight:600;letter-spacing:.08em;text-transform:uppercase;margin-bottom:3px;}
.o-item-name{font-size:13px;font-weight:500;color:var(--coal);line-height:1.3;margin-bottom:4px;}
.o-item-var{font-size:11px;color:var(--muted_cart);}
.o-item-price{
  font-size:14px;font-weight:600;color:var(--rose);
  align-self:center;white-space:nowrap;flex-shrink:0;
}
 
/* totals */
.order-totals{padding:20px 24px;}
.tot-row{
  display:flex;justify-content:space-between;
  align-items:center;padding:7px 0;
  font-size:13.5px;
}
.tot-row .lbl{color:var(--muted_cart);}
.tot-row .val{font-weight:500;color:var(--coal);}
.tot-row.discount .val{color:var(--success);}
.tot-row.free .val{color:var(--success);font-weight:600;}
.tot-divider{height:1px;background:var(--line_cart);margin:10px 0;}
.tot-row.grand .lbl{
  font-family:var(--body-font);
  font-size:16px;font-weight:600;color:var(--rose);
}
.tot-row.grand .val{
  font-family:var(--body-font);
  font-size:22px;font-weight:600;color:var(--rose);
}
 
/* delivery estimate */
.delivery-box{
  margin:0 24px 20px;
  padding:13px 16px;
  background:var(--pink-lt);
  border-radius:10px;
  border:1px solid rgba(232,97,122,.15);
  display:flex;align-items:center;gap:12px;
}
.delivery-box i{font-size:18px;color:var(--pink);flex-shrink:0;}
.delivery-box-text{font-size:12px;color:var(--rose);}
.delivery-box-text strong{font-size:13px;font-weight:600;display:block;margin-bottom:1px;}
 
/* ── SUCCESS MODAL ── */
.success-modal{
  display:none;
  position:fixed;inset:0;z-index:9999;
  align-items:center;justify-content:center;
  background:rgba(58,53,53,.5);
  backdrop-filter:blur(4px);
}
.success-modal.show{display:flex;}
.success-box{
  background:var(--white);
  border-radius:24px;
  padding:48px 40px;
  max-width:420px;width:90%;
  text-align:center;
  box-shadow:0 30px 90px rgba(122,63,63,.22);
  animation:popIn .45s var(--ease) both;
}
@keyframes popIn{
  from{transform:scale(.85);opacity:0}
  to  {transform:scale(1);opacity:1}
}
.success-icon{
  width:72px;height:72px;border-radius:50%;
  background:var(--suc-lt);
  display:flex;align-items:center;justify-content:center;
  margin:0 auto 20px;
  font-size:28px;color:var(--success);
  animation:checkBounce .5s .2s var(--ease) both;
}
@keyframes checkBounce{
  from{transform:scale(0)}
  70% {transform:scale(1.15)}
  to  {transform:scale(1)}
}
.success-box h2{
  font-family:var(--body-font);
  font-size:26px;font-weight:600;color:var(--rose);
  margin-bottom:10px;
}
.success-box p{font-size:14px;color:var(--muted);line-height:1.6;margin-bottom:8px;}
.order-id{
  font-size:13px;font-weight:600;
  color:var(--rose);letter-spacing:.06em;
  background:var(--rose-lt);padding:8px 18px;
  border-radius:8px;display:inline-block;margin:8px 0 24px;
}
.btn-back-shop{
  display:inline-flex;align-items:center;gap:8px;
  padding:13px 28px;
  background:var(--rose);color:#fff;
  border-radius:12px;border:none;cursor:pointer;
  font-family:'Outfit',sans-serif;font-size:13px;font-weight:600;
  letter-spacing:.05em;text-transform:uppercase;
  transition:background .25s,transform .2s;text-decoration:none;
}
.btn-back-shop:hover{background:var(--rose-dk);transform:translateY(-2px);}
 
/* scrollbar */
::-webkit-scrollbar{width:5px;}
::-webkit-scrollbar-thumb{background:var(--line);border-radius:5px;}



.filter_options .price-input {
  width: 100%;
  display: flex;
  align-items: center;
  margin: 30px 0 35px;
}
.filter_options .price-input .field {
  display: flex;
  width: 100%;
  height: 45px;
  align-items: center;
  flex-direction: column;
}
.filter_options .price-input .field span{font-size: 13px;font-weight: 500;}
.filter_options .field input {
  width: 100%;
  height: 100%;
  outline: none;
  font-size: 16px;
  font-weight: 500;
  margin-left: 12px;
  border-radius: 5px;
  text-align: center;
  border: 1px solid #999;
  -moz-appearance: textfield;
  
}
.filter_options input[type="number"]::-webkit-outer-spin-button,
.filter_options input[type="number"]::-webkit-inner-spin-button {
  -webkit-appearance: none;
}
.filter_options .price-input .separator {
  width: 130px;
  display: flex;
  font-size: 19px;
  align-items: center;
  justify-content: center;
}
.filter_options .slider {
  height: 5px;
  position: relative;
  background: #ddd;
  border-radius: 5px;
}
.filter_options .slider .progress {
  height: 100%;
  left: 25%;
  right: 25%;
  position: absolute;
  border-radius: 5px;
  background: var(--rose);
}
.filter_options .range-input {
  position: relative;
}
.filter_options .range-input input {
  position: absolute;
  width: 100%;
  height: 5px;
  top: -5px;
  background: none;
  pointer-events: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}
.filter_options input[type="range"]::-webkit-slider-thumb {
  height: 17px;
  width: 17px;
  border-radius: 50%;
  background: var(--maroon);
  pointer-events: auto;
  -webkit-appearance: none;
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.05);
}
.filter_options input[type="range"]::-moz-range-thumb {
  height: 17px;
  width: 17px;
  border: none;
  border-radius: 50%;
  background: var(--maroon);
  pointer-events: auto;
  -moz-appearance: none;
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.05);
}

/* Support */
.filter_options .support-box {
  top: 2rem;
  position: relative;
  bottom: 0;
  text-align: center;
  display: block;
}
.filter_options .b-btn {
  color: white;
  text-decoration: none;
  font-weight: bold;
}
.filter_options .b-btn.paypal i {
  color: blue;
}
.filter_options .b-btn:hover {
  text-decoration: none;
  font-weight: bold;
}
.filter_options .b-btn i {
  font-size: 20px;
  color: yellow;
  margin-top: 2rem;
}


/*review section*/
/* ═══════════════════════════════════════
   REVIEWS SECTION
═══════════════════════════════════════ */
.reviews-section { max-width: 1200px; margin: 60px auto 80px; padding: 0 0px; }

/* section header */
.sec-header { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 36px; flex-wrap: wrap; gap: 16px; }
.sec-header.twoadded{justify-content: flex-start;align-items: center;}
.sec-header.twoadded h2{margin-bottom: 0;}
.sec-title { font-family: var(--body-font); font-size: clamp(22px, 3vw, 32px); font-weight: 600; color: var(--rose); }
.sec-title em { font-style: normal; color: var(--pink); }
.btn-write-review { display: flex; align-items: center; gap: 8px; padding: 11px 22px; background: var(--rose); color: #fff; border: none; border-radius: 11px; font-family: 'Outfit', sans-serif; font-size: 13px; font-weight: 600; letter-spacing: .05em; text-transform: uppercase; cursor: pointer; transition: background .25s, transform .2s; box-shadow: 0 4px 18px rgba(122,63,63,.22); }
.btn-write-review:hover { background: var(--rose-dk); transform: translateY(-2px); }

/* overview */
.review-overview { display: grid; grid-template-columns: 220px 1fr; gap: 40px; background: var(--white); border-radius: 20px; border: 1px solid var(--line); padding: 32px; margin-bottom: 32px; box-shadow: 0 4px 24px rgba(122,63,63,.07); }
.overview-score { display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; border-right: 1px solid var(--line); padding-right: 32px; }
.overview-num { font-family: var(--body-font); font-size: 64px; font-weight: 600; color: var(--rose); line-height: 1; }
.overview-stars { display: flex; gap: 5px; margin: 8px 0; }
.overview-stars i { font-size: 18px; color: var(--gold); }
.overview-ct { font-size: 13px; color: var(--muted); }
.overview-bars { display: flex; flex-direction: column; gap: 10px; justify-content: center; }
.bar-row { display: flex; align-items: center; gap: 12px; }
.bar-label { font-size: 12px; font-weight: 600; color: var(--coal); min-width: 40px; display: flex; align-items: center; gap: 4px; }
.bar-label i { font-size: 10px; color: var(--gold); }
.bar-track { flex: 1; height: 8px; background: var(--line); border-radius: 99px; overflow: hidden; }
.bar-fill { height: 100%; border-radius: 99px; background: linear-gradient(90deg, var(--gold), var(--pink)); transition: width 1s var(--ease); width: 0; }
.bar-count { font-size: 12px; color: var(--muted); min-width: 28px; text-align: right; }

/* filter tabs */
.review-filters { display: flex; gap: 8px; margin-bottom: 24px; flex-wrap: wrap; }
.rf-btn { padding: 7px 16px; border-radius: 20px; border: 1.5px solid var(--line); background: var(--white); font-family: 'Outfit', sans-serif; font-size: 12px; font-weight: 500; color: var(--muted); cursor: pointer; transition: all .2s; letter-spacing: .03em; }
.rf-btn:hover, .rf-btn.active { border-color: var(--rose); background: var(--rose-lt); color: var(--rose); font-weight: 600; }

/* review cards */
.review-list { display: flex; flex-direction: column; gap: 18px; }

.review-card { background: var(--white); border-radius: 16px; border: 1px solid var(--line); padding: 24px; box-shadow: 0 2px 16px rgba(122,63,63,.05); transition: box-shadow .3s, transform .3s; animation: reviewIn .4s var(--ease) both; }
.review-card:hover { box-shadow: 0 8px 32px rgba(122,63,63,.10); transform: translateY(-2px); }
@keyframes reviewIn { from{opacity:0;transform:translateY(12px)} to{opacity:1;transform:translateY(0)} }
.review-card:nth-child(1){animation-delay:.04s}
.review-card:nth-child(2){animation-delay:.10s}
.review-card:nth-child(3){animation-delay:.16s}
.review-card:nth-child(4){animation-delay:.22s}

.rv-head { display: flex; align-items: flex-start; justify-content: space-between; margin-bottom: 12px; gap: 12px; flex-wrap: wrap; }
.rv-user { display: flex; align-items: center; gap: 12px; }
.rv-avatar { width: 44px; height: 44px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 16px; font-weight: 700; color: #fff; flex-shrink: 0; font-family: var(--body-font); }
.rv-name { font-size: 14px; font-weight: 600; color: var(--coal); }
.rv-date { font-size: 11px; color: var(--hint); margin-top: 2px; }
.rv-badge { font-size: 10px; font-weight: 700; letter-spacing: .07em; text-transform: uppercase; padding: 3px 9px; border-radius: 5px; margin-top: 3px; display: inline-block; }
.rv-badge-verified { background: var(--suc-lt); color: var(--success); }
.rv-badge-top { background: var(--gold-lt); color: var(--gold); }

.rv-stars { display: flex; gap: 3px; }
.rv-stars i { font-size: 13px; color: var(--gold); }
.rv-stars i.empty { color: var(--line); }

.rv-title { font-family: var(--body-font); font-size: 16px; font-weight: 500; color: var(--rose); margin: 10px 0 6px; }
.rv-body { font-size: 13.5px; color: var(--coal); line-height: 1.7; }

.rv-tags { display: flex; gap: 7px; margin-top: 12px; flex-wrap: wrap; }
.rv-tag { font-size: 11px; background: var(--rose-lt); color: var(--rose); padding: 3px 10px; border-radius: 20px; font-weight: 500; }

.rv-photos { display: flex; gap: 8px; margin-top: 12px; }
.rv-photo { width: 62px; height: 72px; border-radius: 8px; overflow: hidden; border: 1px solid var(--line); cursor: pointer; transition: transform .2s; }
.rv-photo:hover { transform: scale(1.05); }
.rv-photo img { width: 100%; height: 100%; object-fit: cover; }

.rv-foot { display: flex; align-items: center; justify-content: space-between; margin-top: 16px; padding-top: 14px; border-top: 1px solid var(--line); flex-wrap: wrap; gap: 8px; }
.rv-helpful { display: flex; align-items: center; gap: 12px; }
.rv-helpful span { font-size: 12px; color: var(--muted); }
.helpful-btn { height: 30px; padding: 0 13px; border-radius: 7px; border: 1.5px solid var(--line); background: transparent; font-family: 'Outfit', sans-serif; font-size: 11px; font-weight: 600; letter-spacing: .04em; cursor: pointer; display: flex; align-items: center; gap: 5px; transition: all .2s; color: var(--muted); }
.helpful-btn:hover { border-color: var(--rose); color: var(--rose); background: var(--rose-xl); }
.helpful-btn.voted { border-color: var(--success); color: var(--success); background: var(--suc-lt); cursor: default; }
.helpful-btn i { font-size: 11px; }
.rv-report { font-size: 11px; color: var(--hint); background: none; border: none; cursor: pointer; letter-spacing: .03em; transition: color .2s; }
.rv-report:hover { color: var(--pink); }

/* load more */
.load-more-wrap { text-align: center; margin-top: 28px; }
.btn-load-more { display: inline-flex; align-items: center; gap: 9px; padding: 13px 32px; border: 1.5px solid var(--rose); border-radius: 12px; background: transparent; color: var(--rose); font-family: 'Outfit', sans-serif; font-size: 13px; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; cursor: pointer; transition: background .25s, color .25s, transform .2s; }
.btn-load-more:hover { background: var(--rose); color: #fff; transform: translateY(-2px); }

/* ═══════════════════════════════════════
   WRITE REVIEW FORM
═══════════════════════════════════════ */
.review-form-wrap {
  background: var(--white);
  border-radius: 20px;
  border: 1px solid var(--line);
  overflow: hidden;
  margin-top: 40px;
  box-shadow: 0 4px 32px rgba(122,63,63,.09);
}

/* form header */
.rform-header {
  background: var(--black);
  padding: 14px 32px;
  display: flex; align-items: center; justify-content: space-between;
}
.rform-header-left { display: flex; align-items: center; gap: 14px; }
.rform-icon { width: 42px; height: 42px; border-radius: 11px; background: rgba(255,255,255,.15); display: flex; align-items: center; justify-content: center; font-size: 17px; color: #fff; }
.rform-title { font-family: var(--body-font); font-size: 20px; font-weight: 600;color: #fff; }
.rform-sub { font-size: 12px; color: rgba(255,255,255,.7); margin-top: 2px; letter-spacing: .03em; }
.rform-collapse { width: 34px; height: 34px; border-radius: 9px; background: rgba(255,255,255,.15); border: 1px solid rgba(255,255,255,.25); color: #fff; cursor: pointer; display: flex; align-items: center; justify-content: center; font-size: 14px; transition: background .2s, transform .3s var(--ease); }
.rform-collapse:hover { background: rgba(255,255,255,.25); }
.rform-collapse.collapsed { transform: rotate(180deg); }

/* form body */
.rform-body { padding: 32px; display: none; }
.rform-body.open { display: block; }

/* product mini */
.rform-product { display: flex; align-items: center; gap: 14px; padding: 14px 16px; background: var(--rose-lt); border-radius: 12px; margin-bottom: 26px; border: 1px solid rgba(122,63,63,.12); }
.rform-product-img { width: 52px; height: 60px; border-radius: 9px; overflow: hidden; flex-shrink: 0; }
.rform-product-img img { width: 100%; height: 100%; object-fit: cover; }
.rform-product-name { font-family: var(--body-font); font-size: 14px; font-weight: 500; color: var(--rose); }
.rform-product-meta { font-size: 11px; color: var(--muted); margin-top: 2px; }

/* ── STAR RATING PICKER ── */
.star-picker-wrap { margin-bottom: 24px; }
.star-picker-label { font-size: 12px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: var(--rose-md); margin-bottom: 12px; }
.star-picker { display: flex; align-items: center; gap: 6px; }
.star-picker .sp-star { font-size: 32px; color: var(--line_str); cursor: pointer; transition: color .18s, transform .2s var(--ease-back); line-height: 1; }
.star-picker .sp-star:hover,
.star-picker .sp-star.hovered,
.star-picker .sp-star.filled { color: var(--pink); }
.star-picker .sp-star:hover { transform: scale(1.2); }
.star-picker .sp-star.filled { transform: scale(1.1); }
.star-rating-text { font-size: 13px; font-weight: 500; color: var(--muted); margin-left: 10px; transition: color .2s; }

/* ── ASPECT RATINGS ── */
.aspect-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 24px; }
@media(max-width:560px){ .aspect-grid{grid-template-columns:1fr;} }
.aspect-item { background: var(--cream); border-radius: 12px; padding: 14px 16px; border: 1.5px solid var(--line); transition: border-color .2s; }
.aspect-item:focus-within { border-color: var(--rose-md); }
.aspect-name { font-size: 11.5px; font-weight: 600; color: var(--rose); letter-spacing: .05em; text-transform: uppercase; margin-bottom: 9px; }
.aspect-stars { display: flex; gap: 4px; }
.aspect-stars .as-star { font-size: 20px; color: var(--line); cursor: pointer; transition: color .15s, transform .18s var(--ease-back); }
.aspect-stars .as-star:hover,
.aspect-stars .as-star.hovered,
.aspect-stars .as-star.filled { color: var(--gold); }
.aspect-stars .as-star:hover { transform: scale(1.15); }

/* ── FORM FIELDS ── */
.frow { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 14px; }
.frow.single { grid-template-columns: 1fr; }
@media(max-width:560px){ .frow{grid-template-columns:1fr;} }

.fld { display: flex; flex-direction: column; gap: 5px; }
.fld label { font-size: 11.5px; font-weight: 700; letter-spacing: .07em; text-transform: uppercase; color: var(--black); }
.fld label span { color: var(--black); }
.fld input, .fld textarea, .fld select {
  height: 44px; padding: 0 14px;
  border: 1.5px solid var(--line); border-radius: 10px;
  font-family: 'Outfit', sans-serif; font-size: 13.5px; color: var(--coal);
  background: var(--cream); outline: none;
  transition: border-color .25s, background .2s, box-shadow .25s;
}
.fld textarea { height: 110px; padding: 12px 14px; resize: vertical; }
.fld select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 24 24' fill='none' stroke='%239e8e8e' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 12px center; padding-right: 34px; cursor: pointer; }
.fld input:focus, .fld textarea:focus, .fld select:focus { border-color: var(--rose); background: var(--white); box-shadow: 0 0 0 3px rgba(122,63,63,.09); }
.fld input::placeholder, .fld textarea::placeholder { color: var(--hint); }
.fld input.valid { border-color: var(--success); }
.fld input.err { border-color: var(--pink); }
.fld .err-msg { font-size: 11px; color: var(--pink); display: none; align-items: center; gap: 4px; }
.fld input.err ~ .err-msg { display: flex; }

/* review title */
.review-title-input { position: relative; }
.review-title-input input { padding-right: 50px; }
.char-count { position: absolute; right: 12px; top: 50%; transform: translateY(-50%); font-size: 11px; color: var(--hint); pointer-events: none; }

/* photo upload */
.photo-upload-wrap { margin-bottom: 22px; }
.photo-upload-area {
  border: 2px dashed var(--line); border-radius: 13px;
  padding: 24px; text-align: center; cursor: pointer;
  background: var(--cream); transition: border-color .25s, background .25s;
  position: relative;
}
.photo-upload-area:hover, .photo-upload-area.drag-over { border-color: var(--rose); background: var(--rose-xl); }
.photo-upload-area input[type=file] { position: absolute; inset: 0; opacity: 0; cursor: pointer; }
.upload-icon { font-size: 28px; color: var(--rose-md); margin-bottom: 8px; }
.upload-text { font-size: 13px; color: var(--muted); line-height: 1.5; }
.upload-text strong { color: var(--rose); }
.upload-limit { font-size: 11px; color: var(--hint); margin-top: 4px; }
.photo-previews { display: flex; gap: 10px; margin-top: 12px; flex-wrap: wrap; }
.photo-preview { width: 64px; height: 72px; border-radius: 9px; overflow: hidden; position: relative; border: 2px solid var(--line); }
.photo-preview img { width: 100%; height: 100%; object-fit: cover; }
.photo-preview .del-photo { position: absolute; top: -6px; right: -6px; width: 20px; height: 20px; border-radius: 50%; background: var(--pink); color: #fff; border: 2px solid var(--white); font-size: 9px; cursor: pointer; display: flex; align-items: center; justify-content: center; }

/* recommend toggle */
.recommend-row { display: flex; align-items: center; justify-content: space-between; padding: 14px 18px; background: var(--rose-xl); border-radius: 12px; border: 1.5px solid var(--line); margin-bottom: 22px; }
.recommend-row label { font-size: 13px; font-weight: 500; color: var(--coal); display: flex; align-items: center; gap: 9px; cursor: pointer; }
.recommend-row label i { color: var(--pink); }
/* toggle switch */
.toggle-switch { position: relative; width: 46px; height: 26px; flex-shrink: 0; }
.toggle-switch input { opacity: 0; width: 0; height: 0; }
.toggle-slider { position: absolute; inset: 0; background: var(--line); border-radius: 13px; cursor: pointer; transition: background .3s; }
.toggle-slider::before { content: ''; position: absolute; width: 20px; height: 20px; left: 3px; top: 3px; border-radius: 50%; background: #fff; transition: transform .3s var(--ease); }
.toggle-switch input:checked + .toggle-slider { background: var(--success); }
.toggle-switch input:checked + .toggle-slider::before { transform: translateX(20px); }

/* submit row */
.rform-submit { display: flex; align-items: center; justify-content: space-between; gap: 14px; flex-wrap: wrap; }
.btn-submit-review {
  flex: 1; min-width: 180px; height: 50px;
  background: var(--black); color: #fff;
  border: none; border-radius: 13px;
  font-family: var(--body-font);
  font-size: 16px; font-weight: 600;
  letter-spacing: .02em; cursor: pointer;
  display: flex; align-items: center; justify-content: center; gap: 10px;
  transition: background .25s, transform .2s, box-shadow .25s;
  box-shadow: 0 6px 24px rgba(122,63,63,.26);
  position: relative; overflow: hidden;
}
.btn-submit-review::after { content: ''; position: absolute; inset: 0; background: rgba(255,255,255,.13); transform: translateX(-100%); transition: transform .4s var(--ease); }
.btn-submit-review:hover::after { transform: translateX(0); }
.btn-submit-review:hover { background: var(--rose-dk); transform: translateY(-2px); box-shadow: 0 10px 32px rgba(122,63,63,.34); }
.btn-submit-review .spinner { display: none; width: 18px; height: 18px; border: 2px solid rgba(255,255,255,.35); border-top-color: #fff; border-radius: 50%; animation: spin .7s linear infinite; }
@keyframes spin { to{transform:rotate(360deg)} }
.btn-cancel { height: 50px; padding: 0 22px; border: 1.5px solid var(--line); border-radius: 13px; background: transparent; color: var(--muted); font-family: 'Outfit', sans-serif; font-size: 13px; font-weight: 600; letter-spacing: .05em; text-transform: uppercase; cursor: pointer; transition: border-color .2s, color .2s; }
.btn-cancel:hover { border-color: var(--rose-md); color: var(--rose); }

/* success state */
.rform-success {
  display: none;
  flex-direction: column; align-items: center; justify-content: center;
  text-align: center; padding: 48px 32px; gap: 12px;
}
.success-icon-big { width: 74px; height: 74px; border-radius: 50%; background: var(--suc-lt); display: flex; align-items: center; justify-content: center; font-size: 28px; color: var(--success); animation: bounceIn .5s var(--ease-back) both; }
@keyframes bounceIn { from{transform:scale(0)} 70%{transform:scale(1.15)} to{transform:scale(1)} }
.rform-success h3 { font-family: var(--body-font); font-size: 22px; font-weight: 600; color: var(--rose); }
.rform-success p { font-size: 14px; color: var(--muted); max-width: 360px; line-height: 1.6; }

/* ═══════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════ */
@media (max-width: 900px) {
  .product-wrap { grid-template-columns: 1fr; gap: 32px; }
  .gallery { position: static; }
  .review-overview { grid-template-columns: 1fr; }
  .overview-score { border-right: none; border-bottom: 1px solid var(--line); padding-right: 0; padding-bottom: 24px; margin-bottom: 20px; }
}
@media (max-width: 640px) {
  .site-header, .breadcrumb, .product-wrap, .reviews-section { padding-inline: 20px; }
  .rform-body { padding: 22px; }
  .rform-header { padding: 18px 22px; }
}
/*review section end*/




 
/* ── RESPONSIVE ── */
@media(max-width:480px){
  :root{--drawer-w:100vw;}
  .demo-nav{padding:0 20px;}
  .drawer-head,.drawer-items,.drawer-footer{padding-inline:20px;}
  .shipping-bar{margin-inline:20px;}
}



  /* ───── RESPONSIVE ───── */
  @media (max-width: 1100px) {
    /* .header-user-menu a:not(.btn-login):not(.icon-bag-link) span { display: none; } */
  }
  @media (max-width: 900px) {
    .main-nav { display: none; }
    .header-user-menu { display: none; }
    .mobile-menu-btn { display: flex; }
    .mobile-overlay { display: block; pointer-events: none; }
    .mobile-overlay.open { pointer-events: all; }
  }

  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(20px); }
    to   { opacity: 1; transform: translateY(0); }
  }
  .main-nav           { animation-delay: 0.08s; }
  .header-user-menu   { animation-delay: 0.16s; }



@media (max-width:1199px){
    .main-nav{gap: 10px;}
    .chk-layout{max-width: 100%;display: flex;justify-content: space-between;}
    .chk-layout .form-col{width: 70%;}
    .chk-layout .order-col{width: 30%;}

}
@media (max-width:1024px){
    .promo_banners__inner .banner{min-height: 170px;}
    .header-user-menu a{font-size: 0;}
    .header-user-menu a i{font-size: 13px;}
    .header-inner .main-nav,
    .header-inner .header-user-menu{flex: none;}
    .chk-layout .form-col{width: 60%;}
    .chk-layout .order-col{width: 40%;}
}
@media (max-width:900px){
    .chk-layout{display: grid;}
    .chk-layout .order-col{position: static;}
    .chk-layout .order-col,
    .chk-layout .form-col{width: 100%;}
}
@media (max-width:768px){
    .header-inner .main-nav{align-items: flex-start;}
    .promo_banners__inner .banner:nth-of-type(3),
    .promo_banners__inner .banner:nth-of-type(4){margin-top: 0;}
    .promo_banners__inner .banner{min-height: 260px;}
    .instagram-feed{padding:40px 0 0;}
    .testimonials-section,
    .best-selling,
    .shop-category,
    .kutch-banner,
    .recent-products{padding: 40px 0;}
    .trust-grid{justify-content: space-between;}
    .shop-category .col-6{width: 30%;}
    .trust-grid .col-6{width: 47%;}
    .shop-category .category-card{min-height: 315px;}
    .shop-category .category-card h3{font-size: 24px;}
}
@media (max-width:767px){
    .header-inner .logo{margin-left: 0;}
    .banner-slider .slide-content{padding: 0;}
    .promo-banners .slick-dots li button::before,
  .banner-slider .slick-dots li button::before{line-height:16px;}
  .promo-banners .slick-dots li button:before,
  .banner-slider .slick-dots li button:before{height:13px;}
  .banner-subtitle,
  .banner-title{color:var(--white);}
    .recent-products{padding-top: 0;}
    .slide-content{border-top: 0;border-left: 0;}
    .slide-content::after{content: none;}
    .slide-tag{font-size: 18px;}
    .slide-desc{font-size: 14px;}
    .banner-slider .slick-dots{left: auto;right: 6%;}
    .kutch-img-tall,
    .kutch-img-small{width: 50%;}
    .instagram-grid .col-4{width: 25%;}
    .trust-label{font-size: 18px;}
    .header-inner .header-user-menu{display: flex;flex-direction: row;width: auto;order: 1;padding: 0;margin-left: auto;}
    .header-inner .header-user-menu a:nth-of-type(3),
    .header-inner .header-user-menu a:nth-of-type(4){display: none;}
    .header-user-menu a i{font-size: 20px;}
    html body .testimonial-section-col-left{display: none !important;}
    .view-toggle{display: none;}
    .shop-toolbar{flex-direction: row;align-items: center;}
    .shop-toolbar-right{width: auto;}
    .shop-toolbar .product-count{margin-bottom: 0;}
    .top-bar-marquee-wrap{margin-right: 5px;}
    .section-title::after{width: 25%;bottom: -17px;}
    .testimonial-section-col-right.p-5{padding-bottom: 0 !important;}
    .banner-beige .banner-content.topright,
    .banner-red .banner-content.topright{top:5.5em;}
    .product-detail-option-2 .pd2-layout{display: block;}
    .product-detail-option-2 .pd2-float-badges{top:auto;bottom:18px;}
}
@media (max-width:680px){
    table thead {
      display: none;
    }
    table tbody tr {
        border-bottom: 15px solid #F8F8F8;
    }
    table tbody tr td:first-child {
        padding-left: 10px;
    }
    table tbody tr td:before {
        content: attr(data-label);
        float: left;
        font-size: 10px;
        text-transform: uppercase;
        font-weight: bold;
    }
    table tbody tr td {
        display: block;
        text-align: right;
        font-size: 14px;
        padding: 14px 10px !important;
        box-shadow: 0 1px 1px rgba(0, 0, 0, 0.3);
    }
}
@media (max-width:580px){
    .promo_banners__inner .banner{min-height: 150px;}
    .banner-slider .slide-content{
        padding: 20em 7px;
        background-color: transparent;
        max-width: 55%;
        left: 0;
    }
    .banner-slider .slide-desc {
        font-size: 14px;
        color: var(--white);
        margin-bottom: 5px;
        display: none;
    }
    .banner-slider .slide-title{margin-bottom: 0;}
    .banner-slider .slide-title br{display: none;}
    .banner-slider .slide-title span{color: var(--text) !important;}
    .banner-slider .slide-btn{
        padding: 5px;
        max-width: fit-content;
        margin-top: 1em;
    }
    .shop-category .category-card{min-height: 130px;}
    .shop-category .category-card h3{font-size: 18px;}
    .kutch-img-small img{height: 185px;}
    .kutch-img-tall img{height: 195px;}
    .kutch-img-frame{top: 42%;left: 39%;}
    .shop-products .products-grid.view-grid-3{grid-template-columns: repeat(2, 1fr) !important;}
}
@media (max-width:480px){
    .promo_banners__inner .banner{min-height: 200px;}
    .shop-category .category-card h3{padding: 20px 7px;}
    .product-detail-option-2 .pd2-pincode{display: flex;flex-direction: column;}
    .product-detail-option-2 .pd2-pincode button{width: 100%;}
    .banner-slider .slide{min-height:195px;}
    .banner-slider .slide img {object-fit:cover;height:195px;object-position:70% center;}
    .trust-label{font-size:16px;}
    .shop-container{gap:18px;}
    .filter-mobile-toggle{margin-bottom:0;}
    .trust-grid{gap:0;}
}
@media (max-width:425px){
    .promo_banners__inner .banner{min-height: 150px;}
    .banner-slider .slide-content{
        padding: 20em 7px;
        background-color: transparent;
        max-width: 55%;
        left: 0;
    }
    .banner-slider .slide-desc {
        font-size: 14px;
        color: var(--white);
        margin-bottom: 5px;
    }
    .banner-slider .slide-title{margin-bottom: 0;}
    .banner-slider .slide-btn{
        padding: 5px;
        max-width: fit-content;
    }
    .trust-icon .icon-shield{font-size:35px;}
}


/* ═══════════════════════════════════════════════════════════════
   QUICK VIEW MODAL
═══════════════════════════════════════════════════════════════ */

.qv-overlay {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 10000;
    background: rgba(20, 15, 15, 0.55);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}
.qv-overlay.active { display: block; }

.qv-modal {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 10001;
    align-items: center;
    justify-content: center;
    padding: 16px;
    overflow-y: auto;
    pointer-events: none;
}
.qv-modal.active {
    display: flex;
    pointer-events: auto;
    animation: qvFadeIn .3s ease both;
}
@keyframes qvFadeIn {
    from { opacity: 0; transform: translateY(24px) scale(.97); }
    to   { opacity: 1; transform: translateY(0)    scale(1);   }
}

.qv-inner {
    position: relative;
    background: #fff;
    border-radius: 20px;
    display: flex;
    width: 100%;
    max-width: 880px;
    max-height: 90vh;
    overflow: hidden;
    box-shadow: 0 32px 80px rgba(50, 30, 30, .22);
    margin: auto;
}

.qv-close {
    position: absolute;
    top: 14px;
    right: 14px;
    z-index: 10;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: none;
    background: rgba(255,255,255,.92);
    box-shadow: 0 2px 10px rgba(0,0,0,.14);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    color: #1a1a1a;
    transition: background .2s, transform .2s;
}
.qv-close:hover { background: #8B2942; color: #fff; transform: rotate(90deg); }

.qv-gallery {
    width: 44%;
    flex-shrink: 0;
    background: #faf8f4;
}
.qv-img-wrap {
    position: relative;
    height: 100%;
    min-height: 360px;
}
.qv-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.qv-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    background: #8B2942;
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .06em;
    padding: 4px 10px;
    border-radius: 6px;
    text-transform: uppercase;
}

.qv-info {
    flex: 1;
    padding: 32px 28px 28px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.qv-info::-webkit-scrollbar { width: 4px; }
.qv-info::-webkit-scrollbar-thumb { background: #eee; border-radius: 4px; }

.qv-category-tag {
    display: inline-block;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: #8B2942;
    background: rgba(139,41,66,.08);
    padding: 3px 10px;
    border-radius: 20px;
}

.qv-name {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0;
    line-height: 1.3;
}

.qv-rating {
    display: flex;
    align-items: center;
    gap: 3px;
    font-size: 13px;
    color: #f5a623;
}
.qv-rating-count { color: #999; font-size: 12px; margin-left: 4px; }

.qv-price { display: flex; align-items: baseline; gap: 10px; }
.qv-price-old { font-size: 15px; color: #999; text-decoration: line-through; }
.qv-price-current { font-size: 26px; font-weight: 700; color: #8B2942; }

.qv-option-group { display: flex; flex-direction: column; gap: 8px; }
.qv-option-label { font-size: 13px; font-weight: 500; color: #666; margin: 0; }
.qv-option-label strong { color: #1a1a1a; }

.qv-sizes { display: flex; flex-wrap: wrap; gap: 8px; }
.qv-size-btn {
    min-width: 42px;
    height: 36px;
    padding: 0 12px;
    border-radius: 8px;
    border: 1.5px solid #e5e5e5;
    background: transparent;
    font-size: 12px;
    font-weight: 600;
    color: #1a1a1a;
    cursor: pointer;
    text-transform: uppercase;
    transition: border-color .2s, background .2s, color .2s;
}
.qv-size-btn:hover { border-color: #8B2942; color: #8B2942; }
.qv-size-btn.active { background: #8B2942; border-color: #8B2942; color: #fff; }

.qv-qty {
    display: flex;
    align-items: center;
    border: 1.5px solid #e5e5e5;
    border-radius: 10px;
    overflow: hidden;
    width: fit-content;
}
.qv-qty-btn {
    width: 38px;
    height: 38px;
    border: none;
    background: transparent;
    font-size: 18px;
    cursor: pointer;
    color: #1a1a1a;
    transition: background .2s;
    line-height: 1;
}
.qv-qty-btn:hover { background: #fdf0f3; }
.qv-qty-val {
    min-width: 38px;
    text-align: center;
    font-size: 14px;
    font-weight: 600;
    border-left: 1.5px solid #e5e5e5;
    border-right: 1.5px solid #e5e5e5;
    padding: 0 4px;
    line-height: 38px;
}

.qv-actions { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 4px; }
.qv-btn-add {
    flex: 1;
    min-width: 140px;
    padding: 13px 20px;
    background: #8B2942;
    color: #fff;
    border: none;
    border-radius: 12px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: .06em;
    text-transform: uppercase;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: background .25s, transform .2s;
}
.qv-btn-add:hover { background: #6e1f33; transform: translateY(-2px); }
.qv-btn-detail {
    padding: 13px 18px;
    border: 1.5px solid #8B2942;
    color: #8B2942;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .04em;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: background .2s, color .2s;
    white-space: nowrap;
}
.qv-btn-detail:hover { background: #8B2942; color: #fff; }

.qv-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    padding-top: 14px;
    border-top: 1px solid #eee;
}
.qv-meta span {
    font-size: 12px;
    color: #777;
    background: #faf8f4;
    padding: 4px 12px;
    border-radius: 20px;
    border: 1px solid #eee;
}
.qv-meta span strong { color: #1a1a1a; }
body.colorbox-open{overflow:hidden;}
@media (max-width: 640px) {
    .qv-inner { flex-direction: column; max-height: 92vh; border-radius: 16px; }
    .qv-gallery { width: 100%; }
    .qv-img-wrap { min-height: 220px; /*max-height: 250px;*/ }
    .qv-info { padding: 20px 18px; gap: 12px; }
    .qv-name { font-size: 18px; }
    .qv-price-current { font-size: 22px; }
    .qv-actions { flex-direction: column; }
    .qv-btn-detail { justify-content: center; }
}


/* ══════════════════════════════════════════════
   GALLERY LIGHTBOX
══════════════════════════════════════════════ */
.glb-overlay {
    position: fixed;
    inset: 0;
    background: rgba(8,6,6,.94);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity .32s ease, visibility .32s ease;
}
.glb-overlay.active { opacity: 1; visibility: visible; }

.glb-stage {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    padding: 70px 110px;
    box-sizing: border-box;
}
.glb-img-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
}
.glb-img {
    max-width: 100%;
    max-height: 82vh;
    object-fit: contain;
    display: block;
    border-radius: 6px;
    box-shadow: 0 32px 80px rgba(0,0,0,.6);
    opacity: 0;
    transform: scale(.94);
    transition: opacity .3s ease, transform .3s ease;
}
.glb-img.loaded { opacity: 1; transform: scale(1); }

/* ── Close button ── */
.glb-close {
    position: fixed;
    top: 20px;
    right: 24px;
    width: 46px;
    height: 46px;
    background: rgba(255,255,255,.1);
    border: 1px solid rgba(255,255,255,.18);
    border-radius: 50%;
    color: #fff;
    font-size: 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .2s, transform .25s ease;
    z-index: 10001;
    backdrop-filter: blur(4px);
}
.glb-close:hover { background: rgba(255,255,255,.22); transform: rotate(90deg); }

/* ── Prev / Next ── */
.glb-nav {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    width: 54px;
    height: 54px;
    background: rgba(255,255,255,.1);
    border: 1px solid rgba(255,255,255,.18);
    border-radius: 50%;
    color: #fff;
    font-size: 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .2s, transform .2s;
    z-index: 10001;
    backdrop-filter: blur(4px);
}
.glb-nav:hover { background: rgba(255,255,255,.24); }
.glb-prev { left: 24px; }
.glb-prev:hover { transform: translateY(-50%) translateX(-3px); }
.glb-next { right: 24px; }
.glb-next:hover { transform: translateY(-50%) translateX(3px); }

/* ── Counter ── */
.glb-counter {
    position: fixed;
    top: 26px;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255,255,255,.5);
    font-size: 12px;
    font-family: 'DM Sans', sans-serif;
    letter-spacing: .12em;
    text-transform: uppercase;
    z-index: 10001;
    white-space: nowrap;
}

/* ── Caption ── */
.glb-caption {
    position: fixed;
    bottom: 28px;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255,255,255,.7);
    font-size: 14px;
    font-family: 'DM Sans', sans-serif;
    font-weight: 500;
    letter-spacing: .05em;
    z-index: 10001;
    white-space: nowrap;
}

@media (max-width: 768px) {
    .glb-stage { padding: 60px 56px; }
    .glb-prev { left: 10px; }
    .glb-next { right: 10px; }
    .glb-nav { width: 40px; height: 40px; font-size: 14px; }
}
/* ══════════════════════════════════════════════
   MULTI-ADDRESS MANAGER — checkout.html
══════════════════════════════════════════════ */

/* ── Saved address cards ── */
.addr-list {
display: flex;
flex-direction: column;
gap: 12px;
margin-bottom: 16px;
}
.addr-card {
display: flex;
align-items: flex-start;
gap: 14px;
padding: 16px 18px;
border: 1.5px solid rgba(0,0,0,.1);
border-radius: 14px;
cursor: pointer;
transition: border-color .2s, box-shadow .2s, background .2s;
background: #fff;
position: relative;
}
.addr-card:hover {
border-color: var(--maroon);
background: rgba(139,41,66,.02);
}
.addr-card.selected {
border-color: var(--maroon);
background: rgba(139,41,66,.03);
box-shadow: 0 0 0 3px rgba(139,41,66,.08);
}

/* Radio circle */
.addr-card-radio {
margin-top: 2px;
flex-shrink: 0;
font-size: 18px;
color: rgba(0,0,0,.2);
transition: color .2s;
}
.addr-card.selected .addr-card-radio { color: var(--maroon); }

/* Body text */
.addr-card-body { flex: 1; min-width: 0; }
.addr-card-label {
font-size: 13px;
font-weight: 700;
letter-spacing: .04em;
text-transform: uppercase;
color: var(--maroon);
margin-bottom: 4px;
display: flex;
align-items: center;
gap: 5px;
}
.addr-card-line {
font-size: 14px;
color: var(--text-dark);
line-height: 1.5;
}
.addr-card-line.muted { color: var(--text-muted); font-size: 13px; }
.addr-card-note {
margin-top: 5px;
font-size: 12px;
color: var(--text-muted);
display: flex;
align-items: center;
gap: 5px;
}

/* Edit / Delete actions */
.addr-card-actions {
display: flex;
gap: 6px;
flex-shrink: 0;
align-self: center;
}
.addr-action-btn {
width: 34px;
height: 34px;
border-radius: 8px;
border: 1px solid rgba(0,0,0,.1);
background: #fff;
cursor: pointer;
display: flex;
align-items: center;
justify-content: center;
font-size: 13px;
color: var(--text-muted);
transition: all .15s ease;
}
.addr-action-btn:hover {
border-color: var(--maroon);
color: var(--maroon);
background: rgba(139,41,66,.05);
}
.addr-action-btn.danger:hover {
border-color: #e53935;
color: #e53935;
background: rgba(229,57,53,.05);
}

/* ── Add New Address button ── */
.btn-add-addr {
display: flex;
align-items: center;
gap: 8px;
width: 100%;
padding: 13px 18px;
border: 1.5px dashed rgba(139,41,66,.35);
border-radius: 14px;
background: transparent;
color: var(--maroon);
font-size: 14px;
font-weight: 600;
font-family: inherit;
cursor: pointer;
transition: background .2s, border-color .2s;
justify-content: center;
margin-bottom: 4px;
}
.btn-add-addr:hover {
    background: rgba(139,41,66,.04);
    border-color: var(--maroon);
}

/* ── Collapsible address form ── */
.addr-form-wrap {
max-height: 0;
overflow: hidden;
transition: max-height .4s cubic-bezier(.4,0,.2,1);
}
.addr-form-wrap.open { max-height: 1200px; }

.addr-form-inner {
padding: 20px 0 4px;
border-top: 1px solid rgba(0,0,0,.08);
margin-top: 16px;
}
.addr-form-head {
display: flex;
align-items: center;
justify-content: space-between;
margin-bottom: 16px;
}
.addr-form-head span {
font-size: 15px;
font-weight: 700;
color: var(--text-dark);
}
.addr-form-cancel {
width: 30px;
height: 30px;
border-radius: 50%;
border: 1px solid rgba(0,0,0,.1);
ackground: rgba(0,0,0,.03);
cursor: pointer;
display: flex;
align-items: center;
justify-content: center;
font-size: 13px;
color: var(--text-muted);
transition: all .15s;
}
.addr-form-cancel:hover { border-color: #e53935; color: #e53935; }

/* Label pills */
.addr-label-row {
display: flex;
gap: 8px;
margin-bottom: 20px;
flex-wrap: wrap;
}
.addr-label-pill {
display: flex;
align-items: center;
gap: 6px;
padding: 8px 18px;
border-radius: 999px;
border: 1.5px solid rgba(0,0,0,.12);
background: #fff;
font-size: 13px;
font-weight: 600;
font-family: inherit;
color: var(--text-muted);
cursor: pointer;
transition: all .15s;
}
.addr-label-pill:hover {
border-color: var(--maroon);
color: var(--maroon);
}
.addr-label-pill.active {
border-color: var(--maroon);
background: var(--maroon);
color: #fff;
}

/* Save address button */
.btn-save-addr {
display: flex;
align-items: center;
justify-content: center;
gap: 8px;
width: 100%;
padding: 14px;
margin-top: 20px;
border: none;
border-radius: 12px;
background: var(--maroon);
color: #fff;
font-size: 14px;
font-weight: 700;
font-family: inherit;
cursor: pointer;
letter-spacing: .03em;
transition: background .2s, transform .15s;
}
.btn-save-addr:hover {
background: #6e1e31;
transform: translateY(-1px);
}

@media (max-width: 600px) {
.addr-card { flex-wrap: wrap; }
.addr-card-actions { width: 100%; justify-content: flex-end; border-top: 1px solid rgba(0,0,0,.06); padding-top: 10px; margin-top: 6px; }
.addr-label-pill { padding: 7px 14px; font-size: 12px; }
}
.chk-card .form-row{margin-bottom: 24px;}
.chk-card .form-row .fld{position: relative;}
.chk-card .form-row .fld span.error-msg {
    position: absolute;
    bottom: -1.8em;
    left: 0.2em;
}

/* notiflix */
.notiflix-report-icon{
    width: 60px!important;
    height: 60px!important;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
@media (max-width: 1024px){
    .header-search-wrap.search-wrap-open{position: absolute;top: 75%;}
}

@media (max-width: 480px){
    .header-search-wrap.search-wrap-open{position: absolute;top: 100%;left: 0;right: 0;max-width: 100%;width: 100%;}
    .header-search-wrap.search-wrap-open .sm-input-wrap{width: 100%;border-radius: 0;}
}

/* ===== Home Sections Sidebar (Desktop Only) ===== */
.home-nav-deco {
    display: flex;
    align-items: center;
}
.home-sidebar-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 22px;
    cursor: pointer;
    color: var(--text-dark);
    padding: 6px 8px;
    margin-left: 8px;
    border-radius: 4px;
    transition: background 0.18s;
    order: 0;
}
.home-sidebar-toggle:hover {
    background: var(--rose-lt);
    color: var(--rose);
}

.home-sidebar-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.35);
    z-index: 1199;
    opacity: 0;
    transition: opacity 0.28s ease;
    pointer-events: none;
}
.home-sidebar-overlay.active {
    opacity: 1;
    pointer-events: all;
}

.home-sidebar {
    position: fixed;
    top: 0;
    left: 0;
    width: 260px;
    height: 100vh;
    background: #fff;
    z-index: 1200;
    box-shadow: 4px 0 32px rgba(58,53,53,0.13);
    transform: translateX(-100%);
    transition: transform 0.3s cubic-bezier(0.22,0.61,0.36,1);
    display: flex;
    flex-direction: column;
}
.home-sidebar.open {
    transform: translateX(0);
}

.home-sidebar-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 20px 16px;
    border-bottom: 1px solid var(--line_cd);
}
.home-sidebar-title {
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--rose);
}
.home-sidebar-close {
    background: none;
    border: none;
    font-size: 18px;
    cursor: pointer;
    color: var(--coal);
    padding: 4px 6px;
    border-radius: 4px;
    transition: background 0.15s, color 0.15s;
}
.home-sidebar-close:hover {
    background: var(--rose-lt);
    color: var(--rose);
}

.home-sidebar-nav {
    display: flex;
    flex-direction: column;
    padding: 12px 0;
    overflow-y: auto;
}
.home-sidebar-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 13px 22px;
    font-size: 13.5px;
    font-weight: 500;
    color: var(--coal);
    text-decoration: none;
    letter-spacing: 0.3px;
    transition: background 0.15s, color 0.15s, padding-left 0.15s;
    border-left: 3px solid transparent;
}
.home-sidebar-link i {
    width: 18px;
    text-align: center;
    font-size: 14px;
    color: var(--rose);
    opacity: 0.8;
}
.home-sidebar-link:hover {
    background: var(--rose-lt);
    color: var(--rose);
    padding-left: 28px;
    border-left-color: var(--rose);
}
.home-sidebar-link:hover i {
    opacity: 1;
}

@media (min-width: 769px) {
    .home-sidebar-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .home-sidebar-overlay.active {
        display: block;
    }
}

@media (max-width: 768px) {
    .home-sidebar-toggle { display: none !important; }
    .home-sidebar { display: none !important; }
    .home-sidebar-overlay { display: none !important; }
}