

*,
*:before,
*:after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
:root {
  --cream: #f5f0e8;
  --cream-dark: #ede6d8;
  --gold: #c4a84b;
  --copper: #7b1f1f;
  --copper-light: #9a2727;
  --copper-dark: #5a1515;
  --brown-dark: #2d1010;
  --brown-mid: #4a1e1e;
  --muted: #9b8e85;
  --muted-light: #c8bfb8;
  --white: #ffffff;
  --off-white: #faf7f4;
  --shadow-sm: 0 2px 8px rgba(45, 24, 16, 0.08);
  --shadow-md: 0 8px 32px rgba(45, 24, 16, 0.12);
  --shadow-lg: 0 20px 60px rgba(45, 24, 16, 0.16);
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --font-serif: "Cormorant Garamond", Georgia, serif;
  --font-sans: "Inter", system-ui, sans-serif;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.otp-container {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    align-items: center;
    justify-content: center;
    gap: 8px !important;
    width: 100%;
}

.otp-container .otp-field {
    width: 50px !important;
    height: 50px !important;
    flex: 0 0 50px !important;
    text-align: center;
    font-size: 20px;
    padding: 0 !important;
}
@media (max-width: 576px) {
    .otp-container {
        gap: 5px !important;
    }

    .otp-container .otp-field {
        width: 42px !important;
        height: 45px !important;
        flex: 0 0 42px !important;
    }
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: var(--font-sans);
  background-color: var(--cream);
  color: var(--brown-dark);
  line-height: 1.6;
  overflow-x: hidden;
}
img {
  display: block;
  max-width: 100%;
}
ul {
  list-style: none;
}
a {
  text-decoration: none;
  color: inherit;
}
button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}
.announcement-bar {
  background-color: var(--copper);
  color: var(--white);
  text-align: center;
  padding: 10px 16px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.02em;
  position: sticky;
  top: 0;
  z-index: 200;
}
.announcement-inner {
  max-width: 1280px;
  margin: 0 auto;
}
.navbar {
  background-color: var(--white);
  border-bottom: 1px solid rgba(181, 98, 42, 0.12);
  position: sticky;
  top: 38px;
  z-index: 100;
  box-shadow: var(--shadow-sm);
}
.nav-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0px 16px;
    height: 120px;
    display: flex;
    align-items: center;
    gap: 32px;
}

.footer-contact-item{
    color: #fff !important;
}
/* Mobile Header */
@media (max-width: 767px) {
    .nav-inner {
        max-width: 100%;
        margin: 0 auto;
        padding: 8px 12px;
        height: auto;
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        gap: 8px;
    }

    /* Hide desktop nav links on mobile */
    .nav-links {
        display: none !important;
    }

    /* Hide desktop search on mobile */
    .nav-search {
        display: none !important;
    }

    /* Hamburger - visible on mobile */
    .hamburger-btn {
        display: flex;
        order: 1;
        flex-shrink: 0;
    }

    /* Logo - centered/visible on mobile */
    .logo {
        order: 2;
        flex: 1;
        justify-content: center;
        display: flex;
    }

    .logo-img {
        max-height: 32px;
        width: auto;
    }

    .logo-icon svg {
        width: 28px;
        height: 28px;
    }

    /* Nav actions - icons on the right */
    .nav-actions {
        order: 3;
        display: flex;
        align-items: center;
        gap: 2px;
        margin-left: 0;
        flex-shrink: 0;
    }

    /* Icon buttons - smaller on mobile */
    .icon-btn {
        width: 34px;
        height: 34px;
        font-size: 15px;
    }

    .signin-btn {
        padding: 6px 12px;
        font-size: 12px;
        gap: 4px;
    }

    /* Cart badge */
    .cart-badge {
        top: 2px;
        right: 2px;
        font-size: 8px;
        width: 14px;
        height: 14px;
    }

    /* Account avatar */
    .nav-avatar {
        width: 28px;
        height: 28px;
    }

    /* Mobile search bar - second row */
    .nav-search-mobile {
        display: flex !important;
        order: 4;
        width: 100%;
        flex: 1 1 100%;
        align-items: center;
        background: var(--cream);
        border: 1.5px solid rgba(45, 24, 16, 0.12);
        border-radius: 999px;
        overflow: hidden;
        padding: 0 4px;
    }



    .nav-search-mobile-input {
        flex: 1;
        border: none;
        background: transparent;
        padding: 10px 12px;
        font-size: 13px;
        color: var(--brown-dark);
        outline: none;
        font-family: inherit;
    }

    .nav-search-mobile-input::placeholder {
        color: var(--muted);
    }

    .nav-search-mobile-btn {
        width: 36px;
        height: 36px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: transparent;
        border: none;
        color: var(--brown-mid);
        font-size: 14px;
        cursor: pointer;
        transition: color var(--transition), background var(--transition);
        flex-shrink: 0;
    }

    .nav-search-mobile-btn:hover {
        color: var(--copper);
        background: rgba(181, 98, 42, 0.06);
    }

    /* Announcement bar - adjust for mobile */
    .announcement-bar {
        font-size: 11px;
        padding: 8px 12px;
    }

    /* Navbar top offset for announcement */
    .navbar {
        top: 32px;
    }

    /* Mobile menu adjustments */
    .mobile-menu {
        padding: 12px 16px 16px;
    }

    .mobile-menu li a {
        padding: 10px 0;
        font-size: 14px;
    }

    .mobile-search-form {
        margin-bottom: 12px;
    }

    .mobile-search-form .form-input {
        font-size: 13px;
        padding: 10px 14px;
    }
}

/* Very small mobile */
@media (max-width: 375px) {
    .nav-inner {
        padding: 6px 8px;
        gap: 6px;
    }

    .icon-btn {
        width: 30px;
        height: 30px;
        font-size: 14px;
    }

    .signin-btn {
        padding: 5px 10px;
        font-size: 11px;
    }

    .logo-img {
        max-height: 26px;
    }

    .logo-icon svg {
        width: 24px;
        height: 24px;
    }

    .nav-search-mobile-input {
        padding: 8px 10px;
        font-size: 12px;
    }

    .nav-search-mobile-btn {
        width: 32px;
        height: 32px;
        font-size: 13px;
    }
}

/* Tablet */
@media (min-width: 768px) and (max-width: 991px) {
    .nav-inner {
        height: 100px;
        gap: 20px;
    }

    .nav-links {
        gap: 20px;
    }

    .nav-link {
        font-size: 13px;
    }

    .nav-search {
        width: 200px;
    }

    .logo-img {
        max-height: 40px;
    }
}

/* Hide mobile search on desktop */
@media (min-width: 768px) {
    .nav-search-mobile {
        display: none !important;
    }
}
.logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.logo-icon {
  transition: transform var(--transition);
}
.logo:hover .logo-icon {
  transform: scale(1.05);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 27px;
  flex: 1;
}
.nav-link {
  font-size: 14.5px;
  font-weight: 500;
  color: var(--brown-mid);
  letter-spacing: 0.01em;
  position: relative;
  padding-bottom: 2px;
  transition: color var(--transition);
}
.nav-link:after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--copper);
  transition: width var(--transition);
}
.nav-link:hover {
  color: var(--copper);
}
.nav-link:hover:after {
  width: 100%;
}
.nav-actions {
  display: flex;
  align-items: center;
  gap: 0px;
  margin-left: auto;
}

/* Search Bar */
.nav-search {
  display: flex;
  align-items: center;
  background: var(--cream);
  border: 1.5px solid rgba(45, 24, 16, 0.12);
  border-radius: 999px;
  overflow: hidden;
  width: 260px;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.nav-search:focus-within {
  border-color: var(--copper);
  box-shadow: 0 0 0 3px rgba(181, 98, 42, 0.1);
}
.nav-search-input {
  flex: 1;
  border: none;
  background: transparent;
  padding: 10px 16px;
  font-size: 13.5px;
  color: var(--brown-dark);
  outline: none;
  font-family: inherit;
}
.nav-search-input::placeholder {
  color: var(--muted);
}
.nav-search-btn {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: none;
  color: var(--brown-mid);
  font-size: 15px;
  cursor: pointer;
  transition: color var(--transition), background var(--transition);
}
.nav-search-btn:hover {
  color: var(--copper);
  background: rgba(181, 98, 42, 0.06);
}

/* Dropdowns */
.has-dropdown {
  position: relative;
}
.dropdown-trigger {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  background: none;
  border: none;
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  padding: 0;
}
.dropdown-caret {
  font-size: 10px;
  transition: transform var(--transition);
}
.has-dropdown.open .dropdown-caret {
  transform: rotate(180deg);
}
.dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%) translateY(4px);
  background: var(--white);
  border: 1px solid rgba(45, 24, 16, 0.1);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  min-width: 220px;
  padding: 8px 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition), transform var(--transition);
  z-index: 200;
}
.has-dropdown.open .dropdown-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.dropdown-menu-end {
  left: auto;
  right: 0;
  transform: translateY(4px);
}
.has-dropdown.open .dropdown-menu-end {
  transform: translateY(0);
}
.dropdown-item {
  display: block;
  padding: 10px 20px;
  font-size: 14px;
  color: var(--brown-mid);
  text-decoration: none;
  transition: background var(--transition), color var(--transition);
  white-space: nowrap;
}
.dropdown-item:hover {
  background: var(--cream);
  color: var(--copper);
}
.dropdown-divider {
  height: 1px;
  background: rgba(45, 24, 16, 0.08);
  margin: 6px 12px;
}

/* Account Dropdown */
.account-dropdown .dropdown-menu {
  min-width: 180px;
}
.account-btn {
  width: 38px;
  height: 38px;
}
.nav-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  object-fit: cover;
}

/* Mobile Search */
.mobile-search-form {
  display: flex;
  gap: 8px;
}
.mobile-search-form .form-input {
  flex: 1;
}

/* Mobile Categories */
.mobile-cat-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 12px 0;
  font-size: 15px;
  font-weight: 500;
  color: var(--brown-mid);
  border-bottom: 1px solid var(--cream-dark);
  background: none;
  border-top: none;
  border-left: none;
  border-right: none;
  cursor: pointer;
}
.mobile-cat-toggle i {
  font-size: 12px;
  transition: transform var(--transition);
}
.mobile-cat-menu {
  display: none;
  flex-direction: column;
  padding: 8px 0;
}
.mobile-cat-menu.open {
  display: flex;
}
.mobile-cat-menu a {
  display: block;
  padding: 10px 0;
  font-size: 14px;
  color: var(--brown-mid);
  border-bottom: 1px solid var(--cream-dark);
  text-decoration: none;
}
.mobile-cat-menu a:last-child {
  border-bottom: none;
}
.mobile-cat-menu a:hover {
  color: var(--copper);
}

.icon-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: var(--brown-mid);
  transition: background var(--transition), color var(--transition);
  position: relative;
}
.icon-btn:hover {
  background: var(--cream);
  color: var(--copper);
}
.wishlist-btn.active {
  color: #e53e3e;
}
.wishlist-btn.active i {
  font-weight: 900;
}
.cart-badge {
  position: absolute;
  top: 4px;
  right: 4px;
  background: var(--copper);
  color: #fff;
  font-size: 9px;
  font-weight: 700;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.signin-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--brown-mid);
  border: 1.5px solid var(--muted-light);
  transition: all var(--transition);
}
.signin-btn:hover {
  border-color: var(--copper);
  color: var(--copper);
  background: #b5622a0a;
}
.hamburger-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
}
.hamburger-btn span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--brown-mid);
  border-radius: 2px;
  transition: all var(--transition);
}
.mobile-menu {
  display: none;
  background: var(--white);
  border-top: 1px solid var(--cream-dark);
  padding: 16px 24px 20px;
}
.mobile-menu ul {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.mobile-menu li a {
  display: block;
  padding: 12px 0;
  font-size: 15px;
  font-weight: 500;
  color: var(--brown-mid);
  border-bottom: 1px solid var(--cream-dark);
  transition: color var(--transition);
}
.mobile-menu li:last-child a {
  border-bottom: none;
}
.mobile-menu li a:hover {
  color: var(--copper);
}
.mobile-menu.open {
  display: block;
}
.hero {
  min-height: calc(100vh - 109px);
  display: flex;
  align-items: center;
  background-color: var(--cream);
  padding: 60px 24px 48px;
}
.hero-inner {
  max-width: 1280px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.hero-left {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.collection-label {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.14em;
  color: var(--copper);
}
.label-line {
  flex: 1;
  max-width: 40px;
  height: 1.5px;
  background: var(--copper);
}
.heading-block {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}
.heading-accent-bar {
  width: 4px;
  min-height: 80px;
  background: var(--copper);
  border-radius: 4px;
  flex-shrink: 0;
  margin-top: 6px;
  transition: height var(--transition);
}
.heading-slider {
  display: flex;
  flex-direction: column;
  gap: 4px;
  overflow: hidden;
}
.heading-item {
  font-family: var(--font-serif);
  font-size: clamp(42px, 5.5vw, 68px);
  font-weight: 700;
  line-height: 1.08;
  color: var(--muted-light);
  transition: color 0.5s ease, opacity 0.5s ease, transform 0.5s ease;
  /*opacity: 0.45;*/
  transform: translateY(0);
  color: var(--brown-dark);
}
.heading-item.active {
  color: var(--brown-dark);
  opacity: 1;
}
.hero-sub {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.tagline {
  font-size: 15px;
  font-weight: 400;
  color: var(--brown-mid);
}
.tagline-deva {
  font-size: 14px;
  color: var(--muted);
}
.tagline-deva em {
  font-style: italic;
  color: var(--brown-mid);
  font-weight: 500;
}
.hero-ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  background: var(--copper);
  color: var(--white);
  border-radius: 999px;
  font-size: 14.5px;
  font-weight: 600;
  letter-spacing: 0.01em;
  border: 2px solid var(--copper);
  transition: all var(--transition);
  box-shadow: 0 4px 16px #b5622a4d;
}
.btn-primary:hover {
  background: var(--copper-dark);
  border-color: var(--copper-dark);
  box-shadow: 0 6px 24px #b5622a66;
  transform: translateY(-1px);
}
.btn-primary:active {
  transform: translateY(0);
}
.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  background: transparent;
  color: var(--brown-dark);
  border-radius: 999px;
  font-size: 14.5px;
  font-weight: 500;
  border: 2px solid rgba(45, 24, 16, 0.25);
  transition: all var(--transition);
}
.btn-secondary:hover {
  border-color: var(--copper);
  color: var(--copper);
  background: #b5622a0a;
}
.stats-row {
  display: flex;
  align-items: center;
  gap: 24px;
  padding-top: 8px;
  border-top: 1px solid rgba(45, 24, 16, 0.1);
}
.stat-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.stat-value {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 700;
  color: var(--brown-dark);
  line-height: 1;
}
.star-icon {
  color: var(--copper);
}
.stat-label {
  font-size: 12px;
  color: var(--muted);
  font-weight: 400;
}
.stat-sep {
  width: 1px;
  height: 36px;
  background: #2d18101f;
}
.hero-right {
  display: flex;
  justify-content: center;
  align-items: center;
}
.product-card {
  position: relative;
  width: 100%;
  max-width: 480px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4 / 5;
}
.badge-new {
  position: absolute;
  top: 18px;
  left: 18px;
  z-index: 10;
  background: var(--brown-dark);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 5px 12px;
  border-radius: 999px;
}
.badge-cod {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 10;
  background: var(--copper);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  text-align: center;
  line-height: 1.3;
  padding: 8px 12px;
  border-radius: 50%;
  width: 56px;
  height: 56px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.product-image-wrap {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
}
.product-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform 0.6s ease;
}
.product-card:hover .product-image {
  transform: scale(1.03);
}
.card-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px 18px 18px;
  background: linear-gradient(to top, #fffffff7 70%, #fff0);
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
}
.overlay-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 12px;
}
.overlay-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.coll-name {
  font-size: 13px;
  font-style: italic;
  color: var(--copper);
  font-weight: 500;
}
.coll-price {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 700;
  color: var(--brown-dark);
}
.coll-meta {
  font-size: 11.5px;
  color: var(--muted);
}
.overlay-stars {
  color: var(--copper);
  font-size: 14px;
  letter-spacing: 1px;
  margin-bottom: 2px;
}
/* ── Hero banner slider (Main Banner from admin) ── */
.hero-banner-slider {
  position: relative;
  width: 100%;
  max-width: 520px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg, 0 20px 50px rgba(45, 24, 16, 0.18));
  aspect-ratio: 4 / 5;
  background: var(--cream-dark);
}
.hero-banner-track {
  position: relative;
  width: 100%;
  height: 100%;
}
.hero-banner-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: scale(1.03);
  transition: opacity 0.7s ease, transform 0.7s ease;
  pointer-events: none;
  display: block;
}
.hero-banner-slide.is-active {
  opacity: 1;
  transform: scale(1);
  pointer-events: auto;
}
.hero-banner-slide img {
  width: 100%;
  height: 100%;
  display: block;
}
.hero-banner-overlay {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 40px 22px 22px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  background: linear-gradient(to top, rgba(45, 24, 16, 0.72), rgba(45, 24, 16, 0));
  color: #fff;
}
.hero-banner-title {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 600;
  line-height: 1.2;
}
.hero-banner-sub {
  font-size: 13px;
  opacity: 0.9;
}
.hero-banner-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 6;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  border: none;
  color: var(--copper);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  cursor: pointer;
  box-shadow: var(--shadow-md);
  transition: all var(--transition);
}
.hero-banner-arrow:hover {
  background: var(--copper);
  color: #fff;
}
.hero-banner-arrow--prev {
  left: 12px;
}
.hero-banner-arrow--next {
  right: 12px;
}
.hero-banner-dots {
  position: absolute;
  bottom: 14px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 6;
  display: flex;
  gap: 7px;
}
.hero-banner-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.55);
  cursor: pointer;
  padding: 0;
  transition: all var(--transition);
}
.hero-banner-dot.is-active {
  background: #fff;
  width: 22px;
  border-radius: 999px;
}
.shipping-pill {
  position: absolute;
  bottom: 88px;
  left: 14px;
  z-index: 10;
  background: var(--white);
  border-radius: 999px;
  padding: 8px 14px;
  display: flex;
  flex-direction: column;
  font-size: 11px;
  line-height: 1.4;
  color: var(--brown-mid);
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(181, 98, 42, 0.15);
}
.shipping-pill strong {
  color: var(--brown-dark);
  font-size: 12px;
}
.features-strip {
  background: var(--white);
  border-top: 1px solid rgba(181, 98, 42, 0.1);
  border-bottom: 1px solid rgba(181, 98, 42, 0.1);
  padding: 28px 24px;
}
.features-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.feature-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 4px 0;
}
.feature-item i {
    margin-top: 13px;
  font-size: 22px;
  color: var(--copper);
  flex-shrink: 0;
}
.features-inner:not(.features-6) .feature-item div {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.features-inner:not(.features-6) .feature-item strong {
  font-size: 14px;
  color: var(--brown-dark);
}
.features-inner:not(.features-6) .feature-item span {
  font-size: 12px;
  color: var(--muted);
}
.features-6 .feature-item > * {
  display: block;
}
section {
  padding: 72px 24px;
}
.section-header {
  max-width: 1280px;
  margin: 0 auto 48px;
  text-align: center;
}
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  color: var(--copper);
  margin-bottom: 12px;
}
.section-label .label-line {
  width: 28px;
  height: 1.5px;
  background: var(--copper);
}
.section-title {
  font-family: var(--font-serif);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 700;
  color: var(--brown-dark);
  line-height: 1.1;
  margin-bottom: 10px;
}
.section-sub {
  font-size: 15px;
  color: var(--muted);
  max-width: 480px;
  margin: 0 auto;
}
.products-section {
  background: var(--cream);
}
.products-grid {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.product-thumb {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  cursor: pointer;
}
.product-thumb:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.product-thumb-img {
  width: 100%;
  aspect-ratio: 3 / 4;
  background: var(--cream-dark);
  transition: transform 0.5s ease;
}
.product-thumb:hover .product-thumb-img {
  transform: scale(1.04);
}
.product-thumb-body {
  padding: 14px 14px 16px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.product-thumb-tag {
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--copper);
  text-transform: uppercase;
}
.product-thumb-name {
  font-family: var(--font-serif);
  font-size: 17px;
  font-weight: 600;
  color: var(--brown-dark);
  line-height: 1.2;
}
.product-thumb-price-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 2px;
}
.product-thumb-price {
  font-size: 15px;
  font-weight: 700;
  color: var(--brown-dark);
}
.product-thumb-mrp {
  font-size: 12.5px;
  color: var(--muted);
  text-decoration: line-through;
}
.product-thumb-badge {
  font-size: 10px;
  font-weight: 700;
  color: var(--white);
  background: #22c55e;
  padding: 2px 3px;
  border-radius: 999px;
}
.product-thumb-stars {
  font-size: 11px;
  color: var(--copper);
}
.product-thumb-actions {
  display: flex;
  gap: 8px;
  margin-top: 6px;
}
.product-thumb-btn {
  flex: 1;
  padding: 9px 0;
  border-radius: 999px;
  font-size: 12.5px;
  font-weight: 600;
  text-align: center;
  transition: all var(--transition);
  border: 1.5px solid var(--copper);
}
.product-thumb-btn.add-cart {
  background: var(--copper);
  color: var(--white);
}
.product-thumb-btn.add-cart:hover {
  background: var(--copper-dark);
}
.product-thumb-btn.wishlist {
  background: transparent;
  color: var(--copper);
}
.product-thumb-btn.wishlist:hover {
  background: #b5622a0f;
}

/* ── Mobile Product Card ── */
@media (max-width: 767px) {
  .catalog-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .product-thumb {
    border-radius: var(--radius-sm);
  }

  .product-thumb-body {
    padding: 10px;
    gap: 4px;
  }

  .product-thumb-name {
    font-size: 13px;
    line-height: 1.25;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  .product-thumb-price {
    font-size: 13px;
  }

  .product-thumb-mrp {
    font-size: 11px;
  }

  .product-thumb-badge {
    font-size: 9px;
    padding: 1px 6px;
  }

  .product-thumb-stars {
    font-size: 10px;
  }

  .product-thumb-actions {
    gap: 6px;
    margin-top: 4px;
  }

  .product-thumb-btn {
    padding: 7px 0;
    font-size: 11px;
    border-radius: 999px;
  }

  .pt-badge {
    top: 8px;
    left: 8px;
    padding: 3px 8px;
    font-size: 9px;
  }

  .pt-hover-actions {
    display: none !important;
  }

  /* Disable hover image swap on mobile - show primary image only */
  .product-image-link:hover .primary-img {
    opacity: 1;
    transform: none;
  }

  .product-image-link:hover .hover-img {
    opacity: 0;
    transform: none;
  }

  .hover-img {
    display: none;
  }

  .product-thumb:hover {
    transform: none;
    box-shadow: var(--shadow-sm);
  }

  .product-thumb:hover .product-thumb-img {
    transform: none;
  }

  .product-image-link:hover .product-thumb-img {
    transform: none;
  }
}

/* Very small mobile */
@media (max-width: 375px) {
  .catalog-grid {
    gap: 8px !important;
  }

  .product-thumb-body {
    padding: 8px;
  }

  .product-thumb-name {
    font-size: 12px;
  }

  .product-thumb-btn {
    font-size: 10px;
    padding: 6px 0;
  }
}

/* ── Mobile Catalog Toolbar ── */
@media (max-width: 767px) {
  .catalog-toolbar {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
  }

  .catalog-count {
    font-size: 12px;
  }

  .cf-toolbar-right {
    width: 100%;
    justify-content: space-between;
  }

  .sort-select {
    flex: 1;
    font-size: 12px;
    padding: 8px 10px;
  }

  .cf-mobile-toggle {
    font-size: 12px;
    padding: 8px 12px;
  }

  .catalog-section {
    padding: 24px 12px 40px;
  }

  .catalog-inner {
    max-width: 100%;
  }
}

/* Prevent horizontal overflow globally */
*,
*:before,
*:after {
  box-sizing: border-box;
}

img,
video,
svg {
  max-width: 100%;
  height: auto;
}

/* Ensure no element overflows viewport */
body {
  overflow-x: hidden;
}

/* ── Mobile Page Hero ── */
@media (max-width: 767px) {
  .page-hero {
    padding: 40px 16px 32px;
  }

  .page-hero::before {
    background: radial-gradient(ellipse 100% 100% at 50% 50%, rgba(181,98,42,0.05) 0%, transparent 70%);
  }

  .page-hero--arrivals::after {
    display: none;
  }

  .page-hero-inner {
    max-width: 100%;
  }

  .page-hero-title {
    font-size: clamp(32px, 8vw, 48px);
    margin: 8px 0 10px;
  }

  .page-hero-sub {
    font-size: 14px;
    max-width: 100%;
  }

  .collection-label {
    font-size: 10px;
  }

  .label-line {
    max-width: 24px;
  }
}

/* Fix for filter sidebar on mobile */
@media (max-width: 900px) {
  .catalog-sidebar {
    width: 300px;
    max-width: 86vw;
  }
}

@media (max-width: 480px) {
  .catalog-sidebar {
    width: 280px;
    max-width: 88vw;
  }
}

/* ── Product slider (New Arrivals / Best Sellers) ── */
.product-slider {
  position: relative;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 8px;
}
.products-track {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  padding: 6px 4px 14px;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.products-track::-webkit-scrollbar {
  display: none;
}
.products-track > .product-thumb {
  flex: 0 0 calc((100% - 60px) / 4);
  scroll-snap-align: start;
}
.slider-arrow {
  position: absolute;
  top: 38%;
  transform: translateY(-50%);
  z-index: 6;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--white);
  border: 1px solid #eadfd5;
  color: var(--copper);
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  cursor: pointer;
  transition: all var(--transition);
}
.slider-arrow:hover {
  background: var(--copper);
  color: var(--white);
  border-color: var(--copper);
}
.slider-arrow--prev {
  left: -14px;
}
.slider-arrow--next {
  right: -14px;
}
.slider-arrow.is-disabled {
  opacity: 0;
  pointer-events: none;
}

/* ── Image badges (top of image) ── */
.pt-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 4;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 5px 11px;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--white);
  border-radius: 999px;
  box-shadow: 0 4px 10px rgba(45, 24, 16, 0.18);
}
.pt-badge--new {
  background: #16a34a;
}
.pt-badge--best {
  background: linear-gradient(135deg, #b5622a, #8a4418);
}
.pt-badge--offer {
  top: 12px;
  left: auto;
  right: 12px;
  background: #e11d48;
}
.section-cta {
  text-align: center;
  margin-top: 40px;
}
.categories-section {
  background: var(--off-white);
}
.categories-grid {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.category-card {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 3 / 4;
  cursor: pointer;
  background: var(--cream-dark);
}
.cat-kurta {
  background: linear-gradient(145deg, #deb887, #c4955a, #8b6340);
}
.cat-set {
  background: linear-gradient(145deg, #e8c5a0, #c17e52, #7a4f2a);
}
.cat-saree {
  background: linear-gradient(145deg, #d4a0a0, #b05c5c, #7a3030);
}
.cat-festive {
  background: linear-gradient(145deg, #e8d280, #c4a020, #7a6510);
}
.cat-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, #000000a6, #0000 60%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  padding: 20px;
  color: var(--white);
  transition: background var(--transition);
}
.category-card:hover .cat-overlay {
  background: linear-gradient(to top, #000000bf, #0000001a 60%);
}
.cat-overlay h3 {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 700;
  line-height: 1.1;
}
.cat-overlay span {
  font-size: 13px;
  opacity: 0.85;
  margin-top: 3px;
}
.testimonials-section {
  background: var(--cream);
}
.testimonials-grid {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: all var(--transition);
}
.testimonial-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.t-stars {
  color: var(--copper);
  font-size: 16px;
  letter-spacing: 2px;
}
.testimonial-card p {
  font-size: 14.5px;
  color: var(--brown-mid);
  line-height: 1.65;
  flex: 1;
  font-style: italic;
}
.t-author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 8px;
  border-top: 1px solid var(--cream-dark);
}
.t-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--copper);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 700;
  flex-shrink: 0;
}
.t-author div {
  display: flex;
  flex-direction: column;
  gap: 1px;
}
.t-author strong {
  font-size: 14px;
  color: var(--brown-dark);
}
.t-author span {
  font-size: 12px;
  color: var(--muted);
}
.newsletter-section {
  background: var(--brown-dark);
  padding: 72px 24px;
}
.newsletter-inner {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.newsletter-text h2 {
  font-family: var(--font-serif);
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
}
.newsletter-text p {
  font-size: 15px;
  color: var(--muted-light);
}
.newsletter-form {
  display: flex;
  gap: 10px;
  width: 100%;
  max-width: 480px;
}
.newsletter-input {
  flex: 1;
  padding: 13px 18px;
  border-radius: 999px;
  border: 1.5px solid rgba(255, 255, 255, 0.15);
  background: #ffffff14;
  color: var(--white);
  font-family: inherit;
  font-size: 14px;
  outline: none;
  transition: border-color var(--transition);
}
.newsletter-input::placeholder {
  color: #fff6;
}
.newsletter-input:focus {
  border-color: var(--copper-light);
}
.newsletter-note {
  font-size: 12px;
  color: var(--muted);
}
.footer {
  background: #1a0e08;
  padding: 56px 24px 0;
}
.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 700;
  color: var(--white);
}
.footer-brand p {
  font-size: 13.5px;
  color: #ffffff73;
  line-height: 1.65;
}
.footer-contact-info { display: flex; flex-direction: column; gap: 10px; }
.footer-contact-item { display: flex; align-items: flex-start; gap: 10px; font-size: 13.5px; color: #ffffff8c; }
.footer-contact-item i { color: var(--copper); font-size: 14px; margin-top: 2px; flex-shrink: 0; }
.footer-contact-item a { color: #ffffff8c; text-decoration: none; transition: color var(--transition); }
.footer-contact-item a:hover { color: var(--copper-light); }
.social-links {
  display: flex;
  gap: 12px;
}
.social-links a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff80;
  font-size: 15px;
  transition: all var(--transition);
}
.social-links a:hover {
  border-color: var(--copper);
  color: var(--copper);
  background: #b5622a1f;
}
.footer-links-group h4 {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: #ffffff59;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.footer-links-group ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-links-group a {
  font-size: 13.5px;
  color: #ffffff8c;
  transition: color var(--transition);
}
.footer-links-group a:hover {
  color: var(--copper-light);
}
.footer-bottom {
  max-width: 1280px;
  margin: 0 auto;
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-bottom p {
  font-size: 12.5px;
  color: #ffffff47;
}
.payment-icons {
  display: flex;
  gap: 8px;
}
.payment-icons span {
  padding: 4px 10px;
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 11px;
  font-weight: 600;
  color: #ffffff59;
  letter-spacing: 0.04em;
}
.toast {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background: var(--brown-dark);
  color: var(--white);
  padding: 14px 20px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  box-shadow: var(--shadow-lg);
  z-index: 9999;
  display: flex;
  align-items: center;
  gap: 10px;
  animation: slideUp 0.3s ease forwards;
  max-width: 320px;
}
.toast i {
  color: var(--copper-light);
}
@keyframes slideUp {
  0% {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
/* Slider cards must not stay hidden if the reveal observer doesn't fire
   for horizontally off-screen items */
.products-track .reveal {
  opacity: 1;
  transform: none;
}
@media (max-width: 1024px) {
  .features-inner,
  .products-grid,
  .categories-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
  .products-track > .product-thumb {
    flex: 0 0 calc((100% - 40px) / 3);
  }
}
@media (max-width: 768px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .hero {
    padding: 40px 20px;
    min-height: auto;
  }
  .hero-right {
    justify-content: center;
  }
  .product-card {
    max-width: 360px;
  }
  .nav-links,
  .signin-btn {
    display: none;
  }
  .hamburger-btn {
    display: flex;
  }
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
  .newsletter-form {
    flex-direction: column;
  }
  .footer-inner {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
  .stats-row {
    gap: 16px;
    flex-wrap: wrap;
  }
  .products-track > .product-thumb {
    flex: 0 0 calc((100% - 20px) / 2);
  }
  .slider-arrow {
    display: none;
  }
  .products-track {
    padding-left: 20px;
    padding-right: 20px;
  }
}
@media (max-width: 480px) {
  .products-grid,
  .categories-grid {
    grid-template-columns: 1fr 1fr;
  }
  .products-track > .product-thumb {
    flex: 0 0 78%;
  }
  .features-inner {
    grid-template-columns: 1fr;
  }
  .hero-ctas {
    flex-direction: column;
  }
  .btn-primary,
  .btn-secondary {
    width: 100%;
    justify-content: center;
  }
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.logo-text {
  font-family: var(--font-serif);
  font-size: 26px;
  font-weight: 600;
  font-style: italic;
  color: var(--brown-dark);
  letter-spacing: 0.01em;
  line-height: 1;
}
.features-6 {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0;
  padding: 0;
}
.features-6 .feature-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 32px 16px;
  border-right: 1px solid rgba(45, 24, 16, 0.08);
  gap: 10px;
}
.features-6 .feature-item:last-child {
  border-right: none;
}
.feature-icon-wrap {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: #b5622a1a;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--copper);
  flex-shrink: 0;
  transition: background var(--transition), transform var(--transition);
}
.feature-item:hover .feature-icon-wrap {
  background: #b5622a2e;
  transform: scale(1.08);
}
.feature-title {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--brown-dark);
  line-height: 1.3;
}
.feature-sub {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.5;
}
.section-header--row {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 16px;
  text-align: left;
}
.view-all-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 600;
  color: var(--copper);
  text-decoration: none;
  white-space: nowrap;
  flex-shrink: 0;
  transition: gap var(--transition), color var(--transition);
}
.view-all-link:hover {
  color: var(--copper-dark);
  gap: 10px;
}
.section-label--center {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}
.section-label--center .label-line {
  flex-shrink: 0;
}
.shop-style-section {
  padding: 80px 24px;
  background: var(--cream);
}
.shop-style-section .section-header {
  margin-bottom: 48px;
}
.style-masonry {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 16px;
}
.style-col-left {
  grid-column: 1;
  grid-row: 1;
}
.style-col-right {
  grid-column: 2;
  grid-row: 1;
}
.style-col-wide {
  grid-column: 1 / -1;
  grid-row: 2;
}
.style-grid-4 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 16px;
  height: 100%;
}
.style-card {
    display: block;
    position: relative;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: var(--radius-md);
    overflow: hidden;
    text-decoration: none;
    min-height: 200px;
}
.style-card:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(45, 24, 16, 0.75) 0%,
    rgba(45, 24, 16, 0.1) 60%,
    transparent 100%
  );
  transition: opacity var(--transition);
}
.style-card:hover:after {
  opacity: 0.85;
}
.style-card:hover img,
.style-card:hover {
  transform: scale(1.02);
}
.style-card {
  transition: transform 0.4s ease;
}
.style-card--tall {
  min-height: 460px;
}
.style-card--wide {
  min-height: 200px;
}
.style-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.style-hindi {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: #ffffffb3;
  font-family: var(--font-serif);
}
.style-name {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 700;
  color: var(--white);
  margin: 0;
}
.style-meta {
  font-size: 12px;
  color: #ffffffb3;
}
.style-arrow {
  font-size: 20px;
  color: var(--white);
  opacity: 0;
  transform: translate(-8px);
  transition: all var(--transition);
  margin-top: 4px;
}
.style-card:hover .style-arrow {
  opacity: 1;
  transform: translate(0);
}
.style-overlay--wide {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 28px 32px;
}
.style-overlay--wide .style-name {
  font-size: 28px;
}
.style-cta {
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 600;
  color: var(--white);
  background: #ffffff26;
  padding: 10px 22px;
  border-radius: 999px;
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  white-space: nowrap;
  transition: background var(--transition);
}
.style-card:hover .style-cta {
  background: #b5622acc;
}
.best-sellers-section {
  padding: 80px 24px;
  background: var(--off-white);
}
.best-sellers-section .section-header {
  margin-bottom: 48px;
}
.save-more-banner {
  margin-top: 60px;
  background: linear-gradient(
    135deg,
    var(--brown-dark) 0%,
    var(--brown-mid) 100%
  );
  border-radius: var(--radius-xl);
  overflow: hidden;
}
.save-more-inner {
  padding: 48px 56px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 20px;
}
.save-more-title {
  font-family: var(--font-serif);
  font-size: 32px;
  font-weight: 700;
  color: var(--white);
}
.save-more-sub {
  font-size: 16px;
  color: #ffffffb3;
}
.save-tiers {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
  margin: 8px 0;
}
.save-tier {
  background: #ffffff1a;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-md);
  padding: 20px 32px;
  text-align: center;
  min-width: 160px;
  transition: background var(--transition);
}
.save-tier:hover {
  background: #ffffff2e;
}
.save-tier-label {
  font-size: 13px;
  color: #ffffffa6;
  margin-bottom: 6px;
}
.save-tier-value {
  font-family: var(--font-serif);
  font-size: 26px;
  font-weight: 700;
  color: var(--white);
}
.save-more-banner .btn-secondary {
  background: transparent;
  color: var(--white);
  border-color: #fff6;
}
.save-more-banner .btn-secondary:hover {
  background: #ffffff1f;
  border-color: var(--white);
}
.rating-summary-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 12px;
}
.rating-stars-big {
  font-size: 24px;
  color: #e8a820;
  letter-spacing: 2px;
}
.rating-num-big {
  font-family: var(--font-serif);
  font-size: 28px;
  font-weight: 700;
  color: var(--brown-dark);
}
.rating-from {
  font-size: 14px;
  color: var(--muted);
}
.community-stats-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-top: 48px;
  background: var(--white);
  border-radius: var(--radius-xl);
  border: 1px solid rgba(45, 24, 16, 0.08);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}
.comm-stat-item {
  flex: 1;
  text-align: center;
  padding: 28px 24px;
}
.comm-stat-divider {
  width: 1px;
  height: 60px;
  background: #2d18101a;
  flex-shrink: 0;
}
.comm-stat-num {
  font-family: var(--font-serif);
  font-size: 30px;
  font-weight: 700;
  color: var(--brown-dark);
  line-height: 1;
}
.star-yellow {
  color: #e8a820;
}
.comm-stat-label {
  font-size: 12px;
  color: var(--muted);
  margin-top: 6px;
}
.comm-join-text {
  text-align: center;
  font-size: 14px;
  color: var(--muted);
  margin-top: 16px;
}
.community-section {
  padding: 80px 24px;
  background: var(--cream);
}
.community-section .section-header {
  margin-bottom: 48px;
}
.insta-link {
  color: var(--copper);
  font-weight: 500;
}
.community-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
}
.comm-img-wrap {
  position: relative;
  aspect-ratio: 1;
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
}
.comm-img-wrap img {
  width: 100%;
  height: 100%;
  transition: transform 0.4s ease;
}
.comm-img-wrap:hover img {
  transform: scale(1.08);
}
.comm-insta-overlay {
  position: absolute;
  inset: 0;
  background: #b5622a8c;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: var(--white);
  opacity: 0;
  transition: opacity var(--transition);
  -webkit-backdrop-filter: blur(2px);
  backdrop-filter: blur(2px);
}
.comm-img-wrap:hover .comm-insta-overlay {
  opacity: 1;
}
.newsletter-card {
  background: #ffffff1f;
  border-radius: var(--radius-xl);
  padding: 56px;
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.newsletter-hindi {
  font-family: var(--font-serif);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: #fff9;
  text-transform: uppercase;
}
@media (max-width: 1024px) {
  .features-6 {
    grid-template-columns: repeat(3, 1fr);
  }
  .features-6 .feature-item:nth-child(3) {
    border-right: none;
  }
  .community-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 768px) {
  .features-6 {
    grid-template-columns: repeat(2, 1fr);
  }
  .features-6 .feature-item:nth-child(2n) {
    border-right: none;
  }
  .style-masonry {
    grid-template-columns: 1fr;
  }
  .style-col-left,
  .style-col-right,
  .style-col-wide {
    grid-column: 1;
    grid-row: auto;
  }
  .style-card--tall {
    min-height: 280px;
  }
  .style-grid-4 {
    grid-template-columns: 1fr 1fr;
  }
  .save-more-inner {
    padding: 36px 24px;
  }
  .community-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .community-stats-bar {
    flex-direction: column;
    max-width: 280px;
  }
  .comm-stat-divider {
    width: 60px;
    height: 1px;
  }
  .section-header--row {
    flex-direction: column;
    align-items: flex-start;
  }
  .style-overlay--wide {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
  .rating-summary-bar {
    flex-wrap: wrap;
    gap: 8px;
  }
}
@media (max-width: 480px) {
  .features-6 {
    grid-template-columns: 1fr 1fr;
  }
  .community-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .save-tiers {
    flex-direction: column;
    align-items: center;
  }
  .logo-text {
    font-size: 22px;
  }
  .newsletter-card {
    padding: 36px 20px;
  }
}
.logo-img {
  height: 120px;
  width: auto;
  display: block;
  object-fit: contain;
  mix-blend-mode: multiply;
}
.logo {
  align-items: center;
}
@media (max-width: 768px) {
  .logo-img {
    height: 56px;
  }
}
.auth-logo-img {
  height: 48px;
  width: auto;
  display: block;
  margin: 0 auto;
}
.label-line,
.section-label .label-line,
.eyebrow-line {
  background-color: var(--gold);
}
.hero-divider {
  background: var(--gold);
}
.feature-icon-wrap {
  background: #c4a84b1f;
  color: var(--gold);
}
.feature-item:hover .feature-icon-wrap {
  background: #c4a84b38;
}
.product-thumb-badge {
  background: var(--gold);
  color: var(--brown-dark);
}
.save-tier-value {
  color: var(--gold);
}
.comm-stat-num {
  color: var(--copper);
}
.rating-stars-big,
.star-yellow {
  color: var(--gold);
}
.rating-num-big {
  color: var(--copper);
}
body.sidebar-open {
  overflow: hidden;
}
.cart-overlay {
  position: fixed;
  inset: 0;
  background: #2d18108c;
  z-index: 900;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  -webkit-backdrop-filter: blur(2px);
  backdrop-filter: blur(2px);
}
.cart-overlay.open {
  opacity: 1;
  pointer-events: auto;
}
.cart-sidebar {
  position: fixed;
  top: 0;
  right: 0;
  width: 420px;
  max-width: 100vw;
  height: 100dvh;
  background: var(--white);
  z-index: 901;
  display: flex;
  flex-direction: column;
  transform: translate(100%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: -8px 0 40px #2d18102e;
}
.cart-sidebar.open {
  transform: translate(0);
}
.cs-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 22px 16px;
  border-bottom: 1px solid rgba(181, 98, 42, 0.1);
  flex-shrink: 0;
}
.cs-header-left {
  display: flex;
  align-items: baseline;
  gap: 10px;
}
.cs-header h2 {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 700;
  color: var(--brown-dark);
}
.cs-item-count {
  font-size: 12px;
  color: var(--muted);
  background: var(--cream);
  padding: 3px 9px;
  border-radius: 999px;
}
.cs-close {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1.5px solid rgba(45, 24, 16, 0.15);
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: var(--brown-mid);
  cursor: pointer;
  transition: all var(--transition);
}
.cs-close:hover {
  background: var(--cream-dark);
  color: var(--brown-dark);
}
.cs-progress {
  padding: 12px 22px;
  background: #b5622a0d;
  border-bottom: 1px solid rgba(181, 98, 42, 0.08);
  flex-shrink: 0;
}
.csp-track {
  height: 6px;
  background: var(--cream-dark);
  border-radius: 999px;
  overflow: hidden;
  margin-bottom: 7px;
}
.csp-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--copper-light), var(--copper));
  border-radius: 999px;
  transition: width 0.6s ease;
}
.csp-msg {
  font-size: 12px;
  color: var(--brown-mid);
  line-height: 1.4;
}
.cs-body {
  flex: 1;
  overflow-y: auto;
  padding: 6px 0;
  scrollbar-width: thin;
  scrollbar-color: var(--cream-dark) transparent;
}
.cs-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  padding: 56px 24px;
  text-align: center;
}
.cse-icon {
  width: 64px;
  height: 64px;
  background: var(--cream);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  color: var(--copper);
}
.cs-empty p {
  font-size: 15px;
  color: var(--muted);
}
.cs-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 22px;
  border-bottom: 1px solid rgba(45, 24, 16, 0.06);
  position: relative;
}
.cs-item:last-child {
  border-bottom: none;
}
.csi-img {
  width: 72px;
  height: 88px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: var(--cream);
  flex-shrink: 0;
}
.csi-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.csi-info {
  flex: 1;
  min-width: 0;
}
.csi-name {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--brown-dark);
  line-height: 1.35;
  margin-bottom: 4px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.csi-meta {
  font-size: 11.5px;
  color: var(--muted);
  margin-bottom: 10px;
}
.csi-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.csi-qty .qty-control {
  transform: scale(0.88);
  transform-origin: left;
}
.csi-price {
  font-size: 14px;
  font-weight: 600;
  color: var(--copper);
}
.csi-remove {
  position: absolute;
  top: 12px;
  right: 16px;
  background: none;
  border: none;
  font-size: 13px;
  color: var(--muted);
  cursor: pointer;
  padding: 4px;
  border-radius: 4px;
  transition: color var(--transition);
}
.csi-remove:hover {
  color: #e53e3e;
}
.cs-footer {
  border-top: 1px solid rgba(181, 98, 42, 0.12);
  padding: 18px 22px 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex-shrink: 0;
  background: var(--white);
}
.cs-totals {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 4px;
}
.cs-subtotal-row,
.cs-shipping-row {
  display: flex;
  justify-content: space-between;
  font-size: 13.5px;
  color: var(--brown-mid);
}
.cs-subtotal-row span:last-child,
.cs-shipping-row span:last-child {
  font-weight: 600;
  color: var(--brown-dark);
}
.os-green {
  color: #2d8a4b !important;
}
.cs-view-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  text-align: center;
}
.cs-checkout-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  text-align: center;
}
.cs-secure {
  text-align: center;
  font-size: 12px;
  color: var(--muted);
}
.cs-secure i {
  color: var(--copper);
  margin-right: 4px;
}
.qty-control {
  display: inline-flex;
  align-items: center;
  gap: 0;
  border: 1.5px solid rgba(45, 24, 16, 0.15);
  border-radius: 999px;
  overflow: hidden;
}
.qty-btn {
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  background: transparent;
  font-size: 16px;
  color: var(--brown-dark);
  cursor: pointer;
  transition: background var(--transition);
}
.qty-btn:hover {
  background: var(--cream);
}
.qty-val {
  min-width: 28px;
  text-align: center;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--brown-dark);
}
.breadcrumb-bar {
  background: var(--off-white);
  border-bottom: 1px solid rgba(45, 24, 16, 0.08);
  padding: 10px 24px;
}
.breadcrumb-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--muted);
}
.breadcrumb-inner a {
  color: var(--brown-mid);
  transition: color var(--transition);
}
.breadcrumb-inner a:hover {
  color: var(--copper);
}
.breadcrumb-inner i {
  font-size: 9px;
}
.breadcrumb-inner span {
  color: var(--brown-dark);
  font-weight: 500;
}
.cart-page {
  background: var(--cream);
  padding: 40px 24px 72px;
  min-height: 60vh;
}
.cart-page-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 32px;
  align-items: start;
}
.cart-items-col {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.cart-col-header {
  display: flex;
  align-items: baseline;
  gap: 14px;
  margin-bottom: 20px;
}
.cart-title {
  font-family: var(--font-serif);
  font-size: 32px;
  font-weight: 700;
  color: var(--brown-dark);
}
.cart-item-count {
  font-size: 14px;
  color: var(--muted);
  background: var(--white);
  border: 1px solid rgba(45, 24, 16, 0.12);
  padding: 3px 12px;
  border-radius: 999px;
}
.cart-shipping-progress {
  background: #b5622a0f;
  border: 1px solid rgba(181, 98, 42, 0.12);
  border-radius: var(--radius-sm);
  padding: 14px 18px;
  margin-bottom: 20px;
}
.cart-shipping-progress .csp-track {
  height: 8px;
  background: var(--cream-dark);
  border-radius: 999px;
  overflow: hidden;
  margin-bottom: 8px;
}
.cart-shipping-progress .csp-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--copper-light), var(--copper));
  border-radius: 999px;
  transition: width 0.8s ease;
}
.csp-msg {
  font-size: 13px;
  color: var(--brown-mid);
}
.cart-items-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.cart-item {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 18px 20px;
  display: grid;
  grid-template-columns: 88px 1fr auto;
  gap: 16px;
  align-items: start;
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition);
}
.cart-item:hover {
  box-shadow: var(--shadow-md);
}
.ci-img {
  width: 88px;
  height: 108px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: var(--cream);
}
.ci-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ci-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.ci-tag {
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--copper);
}
.ci-name {
  font-size: 15px;
  font-weight: 600;
  color: var(--brown-dark);
  line-height: 1.3;
}
.ci-meta {
  font-size: 12.5px;
  color: var(--muted);
  margin-bottom: 8px;
}
.ci-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}
.ci-remove,
.ci-wishlist {
  background: none;
  border: none;
  font-size: 12.5px;
  color: var(--muted);
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 4px 0;
  transition: color var(--transition);
}
.ci-remove:hover {
  color: #e53e3e;
}
.ci-wishlist:hover {
  color: var(--copper);
}
.ci-price {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 4px;
}
.ci-total {
  font-size: 17px;
  font-weight: 700;
  color: var(--brown-dark);
}
.ci-unit {
  font-size: 12px;
  color: var(--muted);
}
.cart-empty {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 64px 32px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.ce-icon {
  width: 80px;
  height: 80px;
  background: var(--cream);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  color: var(--copper);
}
.cart-empty h3 {
  font-family: var(--font-serif);
  font-size: 26px;
  color: var(--brown-dark);
}
.cart-empty p {
  font-size: 15px;
  color: var(--muted);
  max-width: 320px;
}
.coupon-row {
  margin-top: 20px;
}
.coupon-form {
  display: flex;
  gap: 10px;
}
.coupon-input {
  flex: 1;
  padding: 11px 16px;
  border: 1.5px solid rgba(45, 24, 16, 0.18);
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 13.5px;
  color: var(--brown-dark);
  background: var(--white);
  outline: none;
  transition: border-color var(--transition);
}
.coupon-input:focus {
  border-color: var(--copper);
}
.coupon-btn {
  white-space: nowrap;
}
.coupon-success {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13.5px;
  color: #2d8a4b;
  background: #2d8a4b14;
  border: 1px solid rgba(45, 138, 75, 0.2);
  padding: 10px 14px;
  border-radius: var(--radius-sm);
}
.coupon-success i {
  font-size: 16px;
}
.coupon-remove-btn {
  margin-left: auto;
  background: none;
  border: none;
  font-size: 14px;
  color: var(--muted);
  cursor: pointer;
  padding: 2px 6px;
  transition: color var(--transition);
}
.coupon-remove-btn:hover {
  color: #e53e3e;
}
.input-error {
  border-color: #e53e3e !important;
  animation: shake 0.35s ease;
}
@keyframes shake {
  0%,
  to {
    transform: translate(0);
  }
  25%,
  75% {
    transform: translate(-4px);
  }
  50% {
    transform: translate(4px);
  }
}
.order-summary-col {
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: sticky;
  top: 90px;
}
.order-summary {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 24px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 0;
}
.order-summary h3 {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 700;
  color: var(--brown-dark);
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(45, 24, 16, 0.08);
  margin-bottom: 14px;
}
.os-rows {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 16px;
}
.os-row {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  color: var(--brown-mid);
}
.os-row span:last-child {
  font-weight: 500;
  color: var(--brown-dark);
}
.os-total {
  padding-top: 12px;
  border-top: 1px solid rgba(45, 24, 16, 0.1);
  font-size: 16px;
  font-weight: 700;
}
.os-total span {
  color: var(--brown-dark) !important;
}
.os-savings {
  font-size: 13px;
  color: #2d8a4b;
  background: #2d8a4b14;
  border-radius: var(--radius-sm);
  padding: 9px 12px;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 7px;
}
.os-checkout-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  margin-top: 4px;
}
.os-secure {
  text-align: center;
  font-size: 12px;
  color: var(--muted);
  margin-top: 8px;
}
.os-secure i {
  color: var(--copper);
  margin-right: 3px;
}
.os-payments {
  display: flex;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 10px;
}
.os-payments span {
  font-size: 11px;
  font-weight: 600;
  color: var(--muted);
  background: var(--cream);
  border: 1px solid rgba(45, 24, 16, 0.1);
  padding: 4px 10px;
  border-radius: 6px;
}
.trust-badges {
  background: var(--white);
  border-radius: var(--radius-sm);
  padding: 16px 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  box-shadow: var(--shadow-sm);
}
.tb-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--brown-mid);
}
.tb-item i {
  color: var(--copper);
  width: 16px;
}
.upsell-section {
  background: var(--off-white);
  padding: 56px 24px;
}
.upsell-grid {
  max-width: 1280px;
  margin: 0 auto;
  grid-template-columns: repeat(4, 1fr);
}
.checkout-steps-bar {
  background: var(--white);
  border-bottom: 1px solid rgba(45, 24, 16, 0.08);
  padding: 16px 24px;
}
.checkout-steps-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
}
.cs-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  min-width: 80px;
}
.cs-num {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 2px solid rgba(45, 24, 16, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
  background: var(--white);
}
.cs-lbl {
  font-size: 11.5px;
  color: var(--muted);
  font-weight: 500;
}
.cs-step.active .cs-num {
  border-color: var(--copper);
  background: var(--copper);
  color: var(--white);
}
.cs-step.active .cs-lbl {
  color: var(--copper);
  font-weight: 600;
}
.cs-step.done .cs-num {
  border-color: #2d8a4b;
  background: #2d8a4b;
  color: var(--white);
}
.cs-line {
  flex: 1;
  height: 2px;
  background: #2d18101f;
  min-width: 60px;
  max-width: 100px;
}
.active-line {
  background: var(--copper);
}
.checkout-page {
  background: var(--cream);
  padding: 40px 24px 72px;
}
.checkout-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 32px;
  align-items: start;
}
.checkout-form-col {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.checkout-section {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 24px;
  box-shadow: var(--shadow-sm);
}
.checkout-section-title {
  font-family: var(--font-serif);
  font-size: 19px;
  font-weight: 700;
  color: var(--brown-dark);
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}
.cs-num-badge {
  width: 28px;
  height: 28px;
  background: var(--copper);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 600;
  flex-shrink: 0;
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.form-group.full {
  grid-column: 1 / -1;
}
.form-group label {
  font-size: 13px;
  font-weight: 500;
  color: var(--brown-dark);
}
.req {
  color: var(--copper);
}
.form-input {
  padding: 11px 14px;
  border: 1.5px solid rgba(45, 24, 16, 0.18);
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 14px;
  color: var(--brown-dark);
  background: var(--white);
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
  width: 100%;
  box-sizing: border-box;
}
.form-input:focus {
  border-color: var(--copper);
  box-shadow: 0 0 0 3px #b5622a1f;
}
.form-input.input-error {
  border-color: #e53e3e;
}
.form-select {
  cursor: pointer;
}
.form-textarea {
  resize: vertical;
  min-height: 120px;
}
.phone-input-wrap {
  display: flex;
  align-items: stretch;
}
.phone-prefix {
  background: var(--cream);
  border: 1.5px solid rgba(45, 24, 16, 0.18);
  border-right: none;
  border-radius: var(--radius-sm) 0 0 var(--radius-sm);
  padding: 11px 12px;
  font-size: 14px;
  color: var(--brown-mid);
  font-weight: 500;
  white-space: nowrap;
}
.phone-field {
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0 !important;
}
.save-address-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13.5px;
  color: var(--brown-mid);
  margin-top: 12px;
  cursor: pointer;
}
.save-address-label input {
  accent-color: var(--copper);
}
.payment-options {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.payment-option {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  border: 1.5px solid rgba(45, 24, 16, 0.15);
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all var(--transition);
}
.payment-option input[type="radio"] {
  display: none;
}
.payment-option.selected {
  border-color: var(--copper);
  background: #b5622a0a;
}
.po-icon {
  width: 38px;
  height: 38px;
  background: var(--cream);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  color: var(--copper);
  flex-shrink: 0;
}
.po-info {
  flex: 1;
}
.po-info strong {
  display: block;
  font-size: 14px;
  color: var(--brown-dark);
}
.po-info span {
  font-size: 12px;
  color: var(--muted);
}
.po-check {
  font-size: 18px;
  color: #2d181033;
}
.payment-option.selected .po-check {
  color: var(--copper);
}
.upi-input-wrap,
.card-fields-wrap {
  background: var(--cream);
  border-radius: 0 0 var(--radius-sm) var(--radius-sm);
  padding: 14px 16px;
  border: 1.5px solid rgba(181, 98, 42, 0.2);
  border-top: none;
  margin-top: -8px;
}
.place-order-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 16px;
  font-size: 16px;
  letter-spacing: 0.03em;
}
.checkout-note {
  font-size: 12px;
  color: var(--muted);
  text-align: center;
  line-height: 1.6;
  margin-top: -8px;
}
.checkout-note a {
  color: var(--copper);
}
.checkout-summary-col {
  position: sticky;
  top: 90px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.checkout-summary {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 22px;
  box-shadow: var(--shadow-sm);
}
.checkout-summary h3 {
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 700;
  color: var(--brown-dark);
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(45, 24, 16, 0.08);
  margin-bottom: 14px;
}
.co-items {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 14px;
}
.co-item {
  display: flex;
  align-items: center;
  gap: 10px;
}
.co-item img {
  width: 44px;
  height: 54px;
  border-radius: 6px;
  object-fit: cover;
  background: var(--cream);
}
.co-item-info {
  flex: 1;
  min-width: 0;
}
.co-item-info span {
  display: block;
  font-size: 12.5px;
  color: var(--brown-mid);
}
.co-item-info span:first-child {
  font-weight: 500;
  color: var(--brown-dark);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.co-item-price {
  font-size: 13px;
  font-weight: 600;
  color: var(--brown-dark);
  white-space: nowrap;
}
.co-divider {
  height: 1px;
  background: #2d181014;
  margin-bottom: 12px;
}
.co-rows {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.co-row {
  display: flex;
  justify-content: space-between;
  font-size: 13.5px;
  color: var(--brown-mid);
}
.co-row span:last-child {
  font-weight: 500;
  color: var(--brown-dark);
}
.co-total {
  padding-top: 10px;
  border-top: 1px solid rgba(45, 24, 16, 0.1);
  font-size: 16px;
  font-weight: 700;
  margin-top: 4px;
}
.co-total span {
  color: var(--brown-dark) !important;
}
.co-secure {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 12px;
  color: var(--muted);
  margin-top: 14px;
  padding-top: 12px;
  border-top: 1px solid rgba(45, 24, 16, 0.07);
}
.co-secure i {
  color: var(--copper);
}
.delivery-estimate {
  background: var(--white);
  border-radius: var(--radius-sm);
  padding: 16px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  color: var(--brown-mid);
  box-shadow: var(--shadow-sm);
}
.delivery-estimate i {
  font-size: 22px;
  color: var(--copper);
  flex-shrink: 0;
}
.delivery-estimate strong {
  display: block;
  font-size: 13.5px;
  color: var(--brown-dark);
  margin-bottom: 2px;
}
.order-success-overlay {
  position: fixed;
  inset: 0;
  background: #2d181099;
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
}
.order-success-modal {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 48px 40px;
  max-width: 480px;
  width: 100%;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  animation: popIn 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}
@keyframes popIn {
  0% {
    transform: scale(0.85);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}
.osm-icon {
  font-size: 56px;
  color: #2d8a4b;
}
.order-success-modal h2 {
  font-family: var(--font-serif);
  font-size: 32px;
  font-weight: 700;
  color: var(--brown-dark);
}
.order-success-modal p {
  font-size: 15px;
  color: var(--brown-mid);
  line-height: 1.6;
}
.osm-order-id {
  font-size: 18px;
  color: var(--brown-dark);
  font-weight: 600;
}
.osm-sub {
  font-size: 13px;
  color: var(--muted);
}
.osm-btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 8px;
}
.page-hero--contact {
  background: linear-gradient(135deg, #f5f0e8, #ede3d5);
}
.contact-section {
  background: var(--cream);
  padding: 64px 24px 80px;
}
.contact-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 40px;
  align-items: start;
}
.contact-info-col {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.contact-info-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 22px 20px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.cic-icon {
  width: 40px;
  height: 40px;
  background: #b5622a1a;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  color: var(--copper);
  margin-bottom: 2px;
}
.contact-info-card h4 {
  font-family: var(--font-serif);
  font-size: 17px;
  font-weight: 700;
  color: var(--brown-dark);
}
.contact-info-card p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.55;
}
.cic-link {
  display: inline-block;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--copper);
  transition: opacity var(--transition);
}
.cic-link:hover {
  opacity: 0.75;
}
.whatsapp-link {
  color: #25d366;
}
.response-time-card {
  background: #b5622a0f;
  border: 1px solid rgba(181, 98, 42, 0.12);
  border-radius: var(--radius-sm);
  padding: 16px 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.rt-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  color: var(--brown-mid);
  line-height: 1.45;
}
.rt-row i {
  color: var(--copper);
  margin-top: 1px;
  flex-shrink: 0;
}
.contact-social {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.contact-social p {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}
.contact-social-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.csocial-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  background: var(--white);
  border: 1px solid rgba(45, 24, 16, 0.1);
  border-radius: var(--radius-sm);
  font-size: 13.5px;
  color: var(--brown-dark);
  font-weight: 500;
  transition: all var(--transition);
  box-shadow: var(--shadow-sm);
}
.csocial-btn i {
  font-size: 18px;
  color: var(--copper);
  width: 22px;
}
.csocial-btn:hover {
  border-color: var(--copper);
  color: var(--copper);
  transform: translate(3px);
}
.contact-form-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 30px;
  box-shadow: var(--shadow-sm);
}
.contact-form-title {
  font-family: var(--font-serif);
  font-size: 26px;
  font-weight: 700;
  color: var(--brown-dark);
  margin-bottom: 6px;
}
.contact-form-sub {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 24px;
}
.contact-submit-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 14px;
  font-size: 15px;
  margin-top: 4px;
}
.contact-privacy-note {
  font-size: 12px;
  color: var(--muted);
  text-align: center;
  margin-top: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}
.contact-privacy-note i {
  color: var(--copper);
}
.contact-success {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  padding: 40px 0;
  text-align: center;
}
.contact-success-icon {
  font-size: 52px;
  color: #2d8a4b;
}
.contact-success h3 {
  font-family: var(--font-serif);
  font-size: 26px;
  color: var(--brown-dark);
}
.contact-success p {
  font-size: 14.5px;
  color: var(--brown-mid);
  line-height: 1.6;
  max-width: 380px;
}
.faq-section {
  background: var(--off-white);
  padding: 72px 24px;
}
.faq-inner {
  max-width: 820px;
  margin: 0 auto;
}
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.faq-item {
  border-bottom: 1px solid rgba(45, 24, 16, 0.1);
}
.faq-item:first-child {
  border-top: 1px solid rgba(45, 24, 16, 0.1);
}
.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 0;
  text-align: left;
  background: none;
  border: none;
  font-family: var(--font-sans);
  font-size: 15.5px;
  font-weight: 600;
  color: var(--brown-dark);
  cursor: pointer;
  transition: color var(--transition);
}
.faq-q i {
  flex-shrink: 0;
  color: var(--copper);
  font-size: 13px;
  transition: transform 0.3s ease;
}
.faq-item.open .faq-q {
  color: var(--copper);
}
.faq-item.open .faq-q i {
  transform: rotate(180deg);
}
.faq-a {
  max-height: 0;
  overflow: hidden;
  font-size: 14.5px;
  color: var(--muted);
  line-height: 1.7;
  transition: max-height 0.35s ease, padding 0.35s ease;
  padding: 0;
}
.faq-item.open .faq-a {
  max-height: 300px;
  padding-bottom: 20px;
}
@media (max-width: 1024px) {
  .cart-page-inner {
    grid-template-columns: 1fr;
  }
  .order-summary-col {
    position: static;
  }
  .checkout-inner {
    grid-template-columns: 1fr;
  }
  .checkout-summary-col {
    position: static;
  }
  .contact-inner {
    grid-template-columns: 1fr;
  }
  .contact-info-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
  .response-time-card,
  .contact-social {
    grid-column: 1 / -1;
  }
}
@media (max-width: 768px) {
  .cart-sidebar {
    width: 100vw;
  }
  .cart-item {
    grid-template-columns: 72px 1fr auto;
  }
  .form-grid {
    grid-template-columns: 1fr;
  }
  .form-group.full {
    grid-column: 1;
  }
  .upsell-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }
  .contact-info-col {
    grid-template-columns: 1fr;
  }
  .contact-form-card {
    padding: 24px 18px;
  }
  .checkout-steps-inner {
    gap: 0;
  }
  .cs-line {
    min-width: 30px;
  }
  .cs-step {
    min-width: 56px;
  }
  .cs-lbl {
    font-size: 10px;
  }
}
@media (max-width: 480px) {
  .cart-col-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }
  .cart-item {
    grid-template-columns: 64px 1fr;
  }
  .ci-price {
    display: none;
  }
  .order-success-modal {
    padding: 36px 24px;
  }
  .osm-btns {
    flex-direction: column;
    width: 100%;
  }
}
.pt-img-wrap {
  position: relative;
  overflow: hidden;
}
.pt-hover-actions {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 12px;
  background: linear-gradient(to top, #2d1810b8, #2d181000);
  display: flex;
  justify-content: center;
  transform: translateY(100%);
  transition: transform 0.28s cubic-bezier(0.4, 0, 0.2, 1);
}
.pt-img-wrap:hover .pt-hover-actions {
  transform: translateY(0);
}
.pt-img-wrap:hover .product-thumb-img {
  transform: scale(1.04);
  transition: transform 0.4s ease;
}
.product-thumb-img {
  transition: transform 0.4s ease;
}
.pt-quick-view-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 9px 20px;
  background: #fffffff2;
  color: var(--brown-dark);
  border: none;
  border-radius: 999px;
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: background var(--transition), color var(--transition);
  white-space: nowrap;
  box-shadow: 0 4px 16px #0003;
}
.pt-quick-view-btn:hover {
  background: var(--copper);
  color: var(--white);
}
.qv-overlay {
  position: fixed;
  inset: 0;
  background: #2d181099;
  z-index: 910;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  -webkit-backdrop-filter: blur(3px);
  backdrop-filter: blur(3px);
}
.qv-overlay.open {
  opacity: 1;
  pointer-events: auto;
}
.qv-modal {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.94);
  width: min(960px, 96vw);
  max-height: 90dvh;
  background: var(--white);
  border-radius: var(--radius-xl);
  z-index: 911;
  opacity: 0;
  pointer-events: none;
  transition: all 0.32s cubic-bezier(0.34, 1.2, 0.64, 1);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.qv-modal.open {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, -50%) scale(1);
}
.qv-close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1.5px solid rgba(45, 24, 16, 0.15);
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: var(--brown-mid);
  cursor: pointer;
  transition: all var(--transition);
  box-shadow: 0 2px 8px #2d18101a;
}
.qv-close:hover {
  background: var(--cream-dark);
  color: var(--brown-dark);
}
.qv-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow-y: auto;
  max-height: 90dvh;
}
.qv-img-col {
  background: var(--cream);
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 24px;
  position: sticky;
  top: 0;
  height: fit-content;
}
.qv-main-img-wrap {
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 3/4;
  background: var(--cream-dark);
}
.qv-main-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.qv-thumbs {
  display: flex;
  gap: 8px;
}
.qv-thumb {
  width: 64px;
  height: 80px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 2px solid transparent;
  cursor: pointer;
  transition: border-color var(--transition);
  flex-shrink: 0;
}
.qv-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.qv-thumb.active {
  border-color: var(--copper);
}
.qv-thumb:hover {
  border-color: var(--copper-light);
}
.qv-info-col {
  padding: 32px 28px 28px;
  display: flex;
  flex-direction: column;
  gap: 0;
  overflow-y: auto;
}
.qv-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--copper);
  margin-bottom: 8px;
}
.qv-name {
  font-family: var(--font-serif);
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 700;
  color: var(--brown-dark);
  line-height: 1.15;
  margin-bottom: 10px;
}
.qv-stars-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
}
.qv-stars {
  color: var(--copper);
  font-size: 15px;
  letter-spacing: 2px;
}
.qv-review-ct {
  font-size: 13px;
  color: var(--muted);
}
.qv-price-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  flex-wrap: wrap;
}
.qv-price {
  font-family: var(--font-serif);
  font-size: 28px;
  font-weight: 700;
  color: var(--brown-dark);
}
.qv-mrp {
  font-size: 16px;
  color: var(--muted);
  text-decoration: line-through;
}
.qv-disc-badge {
  font-size: 12px;
  font-weight: 700;
  background: #b5622a1f;
  color: var(--copper);
  padding: 4px 10px;
  border-radius: 999px;
}
.qv-desc {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: 22px;
  padding-bottom: 22px;
  border-bottom: 1px solid rgba(45, 24, 16, 0.08);
}
.qv-section {
  margin-bottom: 20px;
}
.qv-section-label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 13px;
  font-weight: 600;
  color: var(--brown-dark);
  margin-bottom: 10px;
}
.qv-size-guide {
  font-size: 12px;
  font-weight: 400;
  color: var(--copper);
}
.qv-size-opts {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.qv-size-btn {
  min-width: 42px;
  height: 38px;
  padding: 0 12px;
  border-radius: 999px;
  border: 1.5px solid rgba(45, 24, 16, 0.18);
  background: transparent;
  font-size: 13px;
  font-weight: 600;
  color: var(--brown-mid);
  cursor: pointer;
  transition: all var(--transition);
}
.qv-size-btn:hover {
  border-color: var(--copper);
  color: var(--copper);
}
.qv-size-btn.active {
  border-color: var(--copper);
  background: var(--copper);
  color: var(--white);
}
.qv-color-opts {
  display: flex;
  gap: 10px;
}
.qv-color-dot {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 2.5px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  outline: none;
}
.qv-color-dot:hover {
  transform: scale(1.15);
}
.qv-color-dot.active {
  border-color: var(--brown-dark);
  box-shadow: 0 0 0 2px var(--white), 0 0 0 4px var(--brown-dark);
}
.qv-actions {
  display: flex;
  gap: 10px;
  margin-top: 8px;
  margin-bottom: 18px;
}
.qv-add-cart-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 14px;
  font-size: 15px;
  transition: all var(--transition);
}
.qv-wishlist-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1.5px solid rgba(45, 24, 16, 0.2);
  background: transparent;
  font-size: 18px;
  color: var(--brown-mid);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition);
  flex-shrink: 0;
}
.qv-wishlist-btn:hover,
.qv-wishlist-btn.qv-wishlist-active {
  color: #e53e3e;
  border-color: #e53e3e;
}
.qv-wishlist-btn.qv-wishlist-active i {
  color: #e53e3e;
}
.qv-qty {
  width: fit-content;
  margin-top: 4px;
  display: inline-flex;
  align-items: center;
  border: 1.5px solid rgba(45, 24, 16, 0.15);
  border-radius: 8px;
  overflow: hidden;
}
.qv-qty .qty-btn {
  width: 38px;
  height: 38px;
  border: none;
  background: transparent;
  font-size: 18px;
  color: var(--brown-mid);
  cursor: pointer;
  transition: background 0.2s ease;
}
.qv-qty .qty-btn:hover {
  background: rgba(45, 24, 16, 0.06);
}
.qv-qty .qty-val {
  min-width: 40px;
  text-align: center;
  font-weight: 600;
  font-size: 15px;
}
.qv-view-details {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--brown-dark, #5a3016);
  text-decoration: underline;
  text-underline-offset: 3px;
  margin-bottom: 18px;
  transition: gap 0.25s ease;
}
.qv-view-details:hover {
  gap: 11px;
}
.qv-meta {
  display: flex;
  flex-direction: column;
  gap: 7px;
  padding-top: 18px;
  border-top: 1px solid rgba(45, 24, 16, 0.08);
}
.qv-meta span {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12.5px;
  color: var(--muted);
}
.qv-meta i {
  color: var(--copper);
  width: 14px;
}
.auth-overlay {
  position: fixed;
  inset: 0;
  background: #2d181094;
  z-index: 920;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  -webkit-backdrop-filter: blur(3px);
  backdrop-filter: blur(3px);
}
.auth-overlay.open {
  opacity: 1;
  pointer-events: auto;
}
.auth-modal {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.94);
  width: min(440px, 96vw);
  max-height: 92dvh;
  background: var(--white);
  border-radius: var(--radius-xl);
  z-index: 921;
  opacity: 0;
  pointer-events: none;
  transition: all 0.32s cubic-bezier(0.34, 1.2, 0.64, 1);
  overflow-y: auto;
  padding: 32px 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 0;
  scrollbar-width: thin;
}
.auth-modal.open {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, -50%) scale(1);
}
.auth-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1.5px solid rgba(45, 24, 16, 0.14);
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  color: var(--brown-mid);
  cursor: pointer;
  transition: all var(--transition);
}
.auth-close:hover {
  background: var(--cream-dark);
  color: var(--brown-dark);
}
.auth-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  margin-bottom: 22px;
}
.auth-logo {
  display: flex;
  align-items: center;
  gap: 9px;
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 700;
  color: var(--brown-dark);
}
.auth-tagline {
  font-size: 13px;
  color: var(--muted);
}
.auth-tabs {
  display: flex;
  border: 1.5px solid rgba(45, 24, 16, 0.14);
  border-radius: 999px;
  padding: 3px;
  margin-bottom: 22px;
  background: var(--cream);
}
.auth-tab {
  flex: 1;
  padding: 9px 16px;
  border-radius: 999px;
  border: none;
  background: transparent;
  font-family: var(--font-sans);
  font-size: 13.5px;
  font-weight: 500;
  color: var(--muted);
  cursor: pointer;
  transition: all var(--transition);
}
.auth-tab.active {
  background: var(--white);
  color: var(--brown-dark);
  font-weight: 600;
  box-shadow: 0 2px 8px #2d18101a;
}
.auth-form-wrap {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.auth-google-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 20px;
  border: 1.5px solid rgba(45, 24, 16, 0.18);
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 500;
  color: var(--brown-dark);
  background: var(--white);
  cursor: pointer;
  transition: all var(--transition);
}
.auth-google-btn:hover {
  background: var(--cream);
  border-color: #2d181047;
}
.auth-or {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 12px;
  color: var(--muted);
}
.auth-or:before,
.auth-or:after {
  content: "";
  flex: 1;
  height: 1px;
  background: #2d18101a;
}
.auth-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.auth-field label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 13px;
  font-weight: 500;
  color: var(--brown-dark);
}
.auth-forgot {
  font-size: 12px;
  font-weight: 400;
  color: var(--copper);
}
.auth-forgot:hover {
  opacity: 0.75;
}
.auth-pw-wrap {
  position: relative;
}
.auth-pw-wrap .form-input {
  padding-right: 44px;
}
.auth-pw-toggle {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  font-size: 14px;
  color: var(--muted);
  cursor: pointer;
  padding: 4px;
  transition: color var(--transition);
}
.auth-pw-toggle:hover {
  color: var(--brown-dark);
}
.auth-agree {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  font-size: 13px;
  color: var(--brown-mid);
  line-height: 1.5;
  cursor: pointer;
}
.auth-agree input {
  margin-top: 2px;
  accent-color: var(--copper);
  flex-shrink: 0;
}
.auth-agree a {
  color: var(--copper);
}
.auth-submit-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 14px;
  font-size: 15px;
}
.auth-switch {
  text-align: center;
  font-size: 13px;
  color: var(--muted);
  margin-top: -2px;
}
.auth-switch-link {
  color: var(--copper);
  font-weight: 600;
}
.auth-success-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  padding: 16px 0 8px;
  text-align: center;
}
.auth-success-icon {
  font-size: 52px;
  color: #2d8a4b;
}
.auth-success-wrap h3 {
  font-family: var(--font-serif);
  font-size: 24px;
  color: var(--brown-dark);
}
.auth-success-wrap p {
  font-size: 14px;
  color: var(--muted);
  max-width: 300px;
}
.auth-success-wrap .btn-primary {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 8px;
}
.signin-btn.signed-in {
  background: var(--copper) !important;
  color: var(--white) !important;
  border-color: var(--copper) !important;
}
@media (max-width: 768px) {
  .qv-content {
    grid-template-columns: 1fr;
  }
  .qv-img-col {
    position: static;
    padding: 16px;
  }
  .qv-main-img-wrap {
    aspect-ratio: 4/3;
  }
  .qv-info-col {
    padding: 16px 20px 24px;
  }
  .auth-modal {
    padding: 28px 20px 24px;
  }
  .pt-hover-actions {
    transform: translateY(0);
  }
}
@media (max-width: 480px) {
  .qv-modal {
    width: 100vw;
    height: 100dvh;
    max-height: 100dvh;
    border-radius: 0;
    top: 0;
    left: 0;
    transform: none !important;
  }
  .qv-modal.open {
    transform: none !important;
  }
}


.product-image-link {
    position: relative;
    display: block;
    overflow: hidden;
    aspect-ratio: 3 / 4;
}

.product-thumb-img {
    width: 100%;
    height: 100%;
    transition: opacity .35s ease, transform .35s ease;
}

.primary-img {
    position: relative;
    z-index: 1;
}

.hover-img {
    position: absolute;
    inset: 0;
    opacity: 0;
    z-index: 2;
}

.product-image-link:hover .primary-img {
    opacity: 0;
    transform: scale(1.05);
}

.product-image-link:hover .hover-img {
    opacity: 1;
    transform: scale(1.05);
}

/* ── Home Slider Section ── */
.home-slider-section {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.home-slider-container {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.home-slider-track {
    display: flex;
    transition: transform 0.5s ease;
}

.home-slider-slide {
    position: relative;
    min-width: 100%;
    display: block;
}

.home-slider-slide.is-active {
    z-index: 1;
}

.home-slider-img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: block;
}

.home-slider-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(45, 16, 16, 0.7) 0%, rgba(45, 16, 16, 0.2) 50%, transparent 100%);
    display: flex;
    align-items: flex-end;
    padding: 48px;
}

.home-slider-content {
    max-width: 600px;
    color: var(--white);
}

.home-slider-title {
    font-family: var(--font-serif);
    font-size: 42px;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 12px;
}

.home-slider-desc {
    font-size: 16px;
    line-height: 1.6;
    opacity: 0.9;
}

.home-slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--brown-dark);
    font-size: 18px;
    transition: var(--transition);
    z-index: 10;
}

.home-slider-arrow:hover {
    background: var(--white);
    box-shadow: var(--shadow-md);
}

.home-slider-arrow--prev {
    left: 24px;
}

.home-slider-arrow--next {
    right: 24px;
}

.home-slider-dots {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.home-slider-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    border: none;
    cursor: pointer;
    transition: var(--transition);
    padding: 0;
}

.home-slider-dot.is-active {
    background: var(--white);
    transform: scale(1.2);
}

/* ── Blog Section (Home) ── */
.blog-section {
    padding: 80px 35px;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.blog-card {
    background: var(--white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.blog-card-image-link {
    display: block;
    overflow: hidden;
}

.blog-card-image-wrap {
    aspect-ratio: 8 / 10;
    overflow: hidden;
}

.blog-card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.blog-card-body {
    padding: 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.blog-card-title {
    font-family: var(--font-serif);
    font-size: 20px;
    font-weight: 600;
    color: var(--brown-dark);
    line-height: 1.4;
    margin-bottom: 12px;
}

.blog-card-title a {
    color: inherit;
    text-decoration: none;
    transition: color var(--transition);
}

.blog-card-title a:hover {
    color: var(--copper);
}

.blog-card-excerpt {
    font-size: 14px;
    color: var(--muted);
    line-height: 1.7;
    margin-bottom: 20px;
    flex: 1;
}

.blog-card-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    color: var(--copper);
    text-decoration: none;
    transition: gap var(--transition);
}

.blog-card-link:hover {
    gap: 12px;
}

.blog-card-link i {
    font-size: 12px;
}

/* ── Responsive ── */
@media (max-width: 992px) {
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .home-slider-img {
        height: 400px;
    }

    .home-slider-overlay {
        padding: 32px;
    }

    .home-slider-title {
        font-size: 32px;
    }
}

@media (max-width: 768px) {
    .home-slider-img {
        height: 350px;
    }

    .home-slider-overlay {
        padding: 24px;
    }

    .home-slider-title {
        font-size: 28px;
    }

    .home-slider-desc {
        font-size: 14px;
    }

    .home-slider-arrow {
        width: 40px;
        height: 40px;
        font-size: 14px;
    }

    .home-slider-arrow--prev {
        left: 12px;
    }

    .home-slider-arrow--next {
        right: 12px;
    }
}

@media (max-width: 576px) {
    .blog-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .blog-section {
        padding: 48px 0;
    }

    .home-slider-img {
        height: 280px;
    }

    .home-slider-overlay {
        padding: 20px;
    }

    .home-slider-title {
        font-size: 24px;
    }

    .home-slider-desc {
        font-size: 13px;
    }

    .home-slider-arrow {
        width: 36px;
        height: 36px;
        font-size: 12px;
    }

    .home-slider-dots {
        bottom: 16px;
    }
}

/* ── Blog Empty State ── */
.blog-empty-icon {
    width: 80px;
    height: 80px;
    background: var(--cream);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

/* ── Blog Detail Page ── */
.blog-detail-title {
    font-family: var(--font-serif);
}

.blog-detail-description p {
    margin-bottom: 16px;
}

.blog-detail-description p:last-child {
    margin-bottom: 0;
}

@media (max-width: 576px) {
    .blog-detail-title {
        font-size: 28px;
    }

    .blog-detail-section {
        padding: 40px 0;
    }
}
