﻿* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Montserrat", sans-serif;
  background: #0d0c09;
  color: #fff;
  overflow-x: hidden;
  font-size: 16px;
  line-height: 1.5;
  font-weight: 400;
}

img {
  max-width: 100%;
  display: block;
}
p{
  margin-bottom: 16px;
}
.container {
  width: 100%;
  max-width: 1400px;
  margin: auto;
  padding: 0 20px;
}

/* .header */

.header {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 999;
  transition: 0.4s;
  padding: 25px 0;
}

.header.active .icons ul li a {
  color: #fff;
}

.header.active {
  background: rgba(10,9,5,0.97);
  backdrop-filter: blur(12px);
  box-shadow: 0 4px 24px rgba(0,0,0,0.4);
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  width: 100px;
  transition: 0.3s;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.header .dark-logo {
  display: none;
}

.header .white-logo {
  padding: 10px 0;
}

.header.active .white-logo {
  display: none;
  padding: 0;
}

.header.active .dark-logo {
  display: block;
}
.nav-links {
  display: flex;
  gap: 30px;
  list-style: none;
}

.nav-links li {
  position: relative;
}

.nav-links li a {
  text-decoration: none;
  color: #000;
  font-size: 16px;
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 10px 0;
  text-decoration: none;
  color: #fff;
  font-size: 15px;
  font-weight: 500;
  transition: 0.3s;
}
/* First Dropdown */
.submenu {
  position: absolute;
  top: 63px;
  left: 0;
  background: #fff;
  width: 220px;
  padding: 15px 0;
  list-style: none;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.dropdown:hover .submenu {
  opacity: 1;
  visibility: visible;
}

/* Submenu Links */
.submenu li {
  position: relative;
}

.submenu li a {
  padding: 10px 20px;
  display: flex;
  justify-content: space-between;
  color: #000;
}

/* Second Dropdown */
.submenu-two {
  position: absolute;
  top: 0;
  left: 100%;
  background: #fff;
  width: 220px;
  padding: 15px 0;
  list-style: none;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.dropdown-submenu:hover .submenu-two {
  opacity: 1;
  visibility: visible;
}

/* Hover Effect */
.submenu li:hover > a,
.submenu-two li:hover > a {
  background: #f5f5f5;
  padding-left: 25px;
}

.header.active .nav-links a {
  color: #fff;
}

.nav-links li::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 3px;
  background: #C9973A;
  transition: 0.3s;
}

.nav-links li.dropdown:hover:after {
  bottom: -25px;
  height: 3px;
  width: 220px;
}

.nav-links li:hover::after {
  width: 100%;
}

/* New Arrivals highlight */
.nav-links li a.nav-hot {
  color: #C9A048;
  font-weight: 600;
  position: relative;
}
.nav-links li a.nav-hot::before {
  content: 'NEW';
  position: absolute;
  top: -10px;
  right: -4px;
  font-size: 7px;
  font-weight: 800;
  background: #C9A048;
  color: #fff;
  padding: 1px 5px;
  border-radius: 2px;
  letter-spacing: 0.5px;
  line-height: 1.6;
  pointer-events: none;
}
.header.active .nav-links li a.nav-hot {
  color: #C9A048;
}
.header.active .nav-links li a.nav-hot::before {
  background: #C9A048;
}
.icons {
  display: flex;
  align-items: center;
  gap: 40px;
}

/* Search Box */
.search-box {
  display: flex;
  align-items: center;
  border-bottom: 1px solid #fff;
  padding-bottom: 8px;
  width: 230px;
}

.search-box input {
  border: none;
  outline: none;
  background: transparent;
  width: 100%;
  font-size: 16px;
  color: #fff;
}

.search-box input::placeholder {
  color: #fff;
  letter-spacing: 1px;
}

.search-box button {
  border: none;
  background: transparent;
  cursor: pointer;
  font-size: 18px;
  color: #fff;
}

.active .search-box {
  border-bottom: 1px solid rgba(255,255,255,0.4);
}

.active .search-box input {
  color: #fff;
}

.active .search-box input::placeholder {
  color: rgba(255,255,255,0.6);
}

/* Icons */
.icons ul {
  display: flex;
  align-items: center;
  gap: 25px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.icons ul li a {
  color: #fff;
  font-size: 20px;
  position: relative;
  text-decoration: none;
}

.icons ul li a span {
  position: absolute;
  top: -8px;
  right: -10px;
  font-size: 11px;
}

.active .icons {
  color: #111;
}

.mobile-toggle {
  display: none;
  align-items: center;
  gap: 12px;
  cursor: pointer;
}

.mobile-toggle-logo {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: 2px;
  color: #fff;
  display: none;
}

#menuIcon {
  line-height: 1;
  font-size: 25px;
}

.menu-open {
  background: rgba(10,9,5,0.97);
  box-shadow: 0 10px 30px rgba(0,0,0,0.4);
}
.menu-open .icons,
.menu-open .logo {
  display: none;
}

.menu-open .mobile-toggle-logo {
  display: flex;
  z-index: 1;
  width: 280px;
  justify-content: space-between;
  color: #fff;
}

.menu-open #menuIcon {
  color: #fff;
}

/* HERO */

.hero {
  min-height: 100vh;
  background: #0a0a0a;
  position: relative;
  display: flex;
  align-items: center;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(0, 0, 0, 0.82),
    rgba(0, 0, 0, 0.35)
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
}

.hero-subtitle {
  color: #C9A048;
  letter-spacing: 6px;
  font-size: 14px;
  margin-bottom: 20px;
  font-weight: 600;
  margin-top: 100px;
}

.hero h1 {
  color: #fff;
  font-size: 78px;
  line-height: 1.05;
  margin-bottom: 25px;
  font-weight: 800;
}

.hero p {
  color: #ddd;
  line-height: 1.9;
  font-size: 17px;
  margin-bottom: 40px;
  max-width: 580px;
}

.hero-btns {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 38px;
  text-decoration: none;
  font-size: 14px;
  letter-spacing: 1px;
  font-weight: 600;
  transition: 0.4s;
  border-radius: 50px;
}

.btn-primary {
  background: #C9A048;
  color: #fff;
}

.btn-primary:hover {
  background: #b8903d;
  transform: translateY(-4px);
}

.btn-outline {
  border: 1px solid rgba(255, 255, 255, 0.4);
  color: #fff;
  backdrop-filter: blur(10px);
}

.btn-outline:hover {
  background: #fff;
  color: #111;
}
.hero-slider {
  width: 100%;
  height: 100vh;
}

.hero {
  display: flex;
  align-items: center;
  height: 100vh;
  background-size: cover;
  background-position: center;
  position: relative;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 600px;
  color: #fff;
}

.hero-subtitle {
  font-size: 14px;
  letter-spacing: 3px;
  margin-bottom: 20px;
}

.hero-content h1 {
  font-size: 70px;
  line-height: 1.1;
  margin-bottom: 20px;
}

.hero-content p {
  font-size: 18px;
  line-height: 1.7;
  margin-bottom: 30px;
}

.hero-btns {
  display: flex;
  gap: 20px;
}

.btn {
  padding: 14px 35px;
  text-decoration: none;
  font-size: 14px;
  letter-spacing: 2px;
}

.btn-outline {
  border: 1px solid #fff;
  color: #fff;
}

/* Background Images */
.hero-one {
  background-image: var(--hero1-bg, url("https://images.unsplash.com/photo-1529139574466-a303027c1d8b?w=1600&q=80"));
}

.hero-two {
  background-image: var(--hero2-bg, url("https://images.unsplash.com/photo-1469334031218-e382a71b716b?w=1600&q=80"));
}

.hero-three {
  background-image: var(--hero3-bg, url("https://images.unsplash.com/photo-1496747611176-843222e1e57c?w=1600&q=80"));
}

/* Pagination */
.swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background: #fff;
  opacity: 0.5;
}

/* Active Dot Color */
.swiper-pagination-bullet-active {
  background: #C9A048 !important;
  opacity: 1;
}
/* CATEGORY */

.section {
  padding: 110px 0;
}

.section-title {
  text-align: center;
  margin-bottom: 70px;
}

.section-title span {
  color: #C9A048;
  font-weight: 700;
  letter-spacing: 3px;
  font-size: 13px;
}

.section-title h2 {
  font-size: 52px;
  margin-top: 15px;
  font-weight: 800;
}

.categories-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.category-card {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  cursor: pointer;
}

.category-card img {
  height: 520px;
  object-fit: cover;
  transition: 0.7s;
  width: 100%;
}

.category-card:hover img {
  transform: scale(1.1);
}

.category-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.85), transparent);
  display: flex;
  align-items: flex-end;
  padding: 35px;
}

.category-overlay h3 {
  color: #fff;
  font-size: 30px;
}

/* PRODUCTS */

.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.product-card {
  background: #fff;
  border-radius: 30px;
  overflow: hidden;
  position: relative;
  transition: 0.4s;
  border: 1px solid #eee;
}

.product-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.1);
}

.product-image {
  position: relative;
  overflow: hidden;
}

.product-image img {
  height: 420px;
  object-fit: cover;
  transition: 0.6s;
  width: 100%;
}

.product-card:hover .product-image img {
  transform: scale(1.08);
}

.product-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 0, 0, 0.12);
  opacity: 0;
  transition: 0.4s;
}

.product-card:hover .product-image::after {
  opacity: 1;
}

.product-actions {
  position: absolute;
  top: 20px;
  right: -60px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: 0.4s;
}

.product-card:hover .product-actions {
  right: 20px;
}

.product-actions button {
  width: 48px;
  height: 48px;
  border: none;
  border-radius: 50%;
  background: #fff;
  cursor: pointer;
  font-size: 18px;
  transition: 0.3s;
}

.product-actions button:hover {
  background: #C9A048;
  color: #fff;
}

.product-content {
  padding: 28px;
}

.product-category {
  color: #888;
  font-size: 13px;
  margin-bottom: 8px;
}

.product-content h3 {
  font-size: 22px;
  margin-bottom: 14px;
  transition: 0.3s;
}

.product-card:hover h3 {
  color: #C9A048;
}

.price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.price {
  font-size: 24px;
  font-weight: 700;
}

.cart-btn {
  width: 48px;
  height: 48px;
  border: none;
  border-radius: 50%;
  background: #111;
  color: #fff;
  cursor: pointer;
  transition: 0.3s;
}

.cart-btn:hover {
  background: #C9A048;
}

/* ================= PRODUCTS GRID ================= */

.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-top: 50px;
}

/* ================= PRODUCT CARD ================= */

.product-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  transition: 0.4s ease;
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

/* ================= IMAGE ================= */

.product-image {
  position: relative;
  overflow: hidden;
  height: 280px;
  flex-shrink: 0;
}

.product-image img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  transition: 0.5s ease;
  display: block;
}

.product-card:hover .product-image img {
  transform: scale(1.08);
}

/* swiper slide fills full height */
.categorySwiper .swiper-slide {
  height: auto;
}

.categorySwiper .product-card {
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  border: 1px solid #f0f0f0;
}

/* ================= DISCOUNT BADGE ================= */
.discount-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: #C9A048;
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: 20px;
  letter-spacing: 0.5px;
  z-index: 2;
  pointer-events: none;
}

/* ================= SIDE ACTIONS ================= */

.product-actions {
  position: absolute;
  top: 20px;
  right: -60px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: 0.4s ease;
}

.product-card:hover .product-actions {
  right: 15px;
}

/* Buttons */

.product-actions button {
  width: 42px;
  height: 42px;
  border: none;
  border-radius: 50%;
  background: #fff;
  color: #111;
  cursor: pointer;
  font-size: 16px;
  transition: 0.3s;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.product-actions button:hover {
  background: #111;
  color: #fff;
}

/* ================= CONTENT ================= */

.product-content {
  padding: 16px 18px 18px;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.product-category {
  font-size: 11px;
  color: #C9A048;
  text-transform: uppercase;
  margin-bottom: 6px;
  letter-spacing: 1.2px;
  font-weight: 700;
}

.product-content h3 {
  font-size: 15px;
  color: #111;
  margin-bottom: 12px;
  font-weight: 700;
  line-height: 1.35;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* ================= PRICE ROW ================= */

.price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.price {
  font-size: 17px;
  font-weight: 800;
  color: #111;
  display: flex;
  align-items: baseline;
  gap: 6px;
  flex-wrap: wrap;
}

/* ================= CART BUTTON ================= */

.cart-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: none;
  background: #111;
  color: #fff;
  cursor: pointer;
  transition: 0.3s;
  font-size: 15px;
}

.cart-btn:hover {
  background: #c19a6b;
  transform: rotate(90deg);
}

/* BANNER */

.offer-banner {
  background: #0f0f0f;
  border-radius: 40px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
}

.offer-content {
  padding: 80px;
}

.offer-content span {
  color: #C9A048;
  letter-spacing: 3px;
  font-size: 14px;
  font-weight: 700;
}

.offer-content h2 {
  color: #fff;
  font-size: 60px;
  margin: 20px 0;
  line-height: 1.1;
}

.offer-content p {
  color: #bbb;
  line-height: 1.9;
  margin-bottom: 35px;
}

.offer-image img {
  height: 100%;
  object-fit: cover;
}

/* TESTIMONIAL */

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.testimonial-card {
  background: #fff;
  border: 1px solid #eee;
  padding: 40px;
  border-radius: 30px;
  transition: 0.4s;
}

.testimonial-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}

.stars ul {
  display: flex;
  margin: 0;
  padding: 0;
  list-style: none;
  align-items: center;
  gap: 2px;
  margin-bottom: 20px;
}

.stars ul li {
  color: #C9A048;
  font-size: 10px;
}

.testimonial-card p {
  line-height: 1.9;
  color: #555;
  margin-bottom: 25px;
}

.user {
  display: flex;
  align-items: center;
  gap: 15px;
}

.user img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
}

/* NEWSLETTER */

.newsletter {
  background: #111;
  padding: 90px 40px;
  border-radius: 40px;
  text-align: center;
}

.newsletter h2 {
  color: #fff;
  font-size: 52px;
  margin-bottom: 20px;
}

.newsletter p {
  color: #aaa;
  margin-bottom: 40px;
}

.newsletter-form {
  max-width: 700px;
  margin: auto;
  display: flex;
  gap: 15px;
}

.newsletter-form input {
  flex: 1;
  height: 65px;
  border: none;
  outline: none;
  padding: 20px 25px;
  border-radius: 60px;
  font-size: 15px;
}

/* FOOTER */
.footer {
  background: #0f0f0f;
  padding: 90px 0 0;
  color: #fff;
}

/* GRID */

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 50px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

/* LOGO */

.footer-logo img {
  width: 150px;
}

/* ABOUT */

.footer-about {
  color: #9a9a9a;
  font-size: 15px;
  line-height: 1.9;
  margin: 22px 0;
  max-width: 320px;
}

/* SOCIAL */

.footer-social {
  display: flex;
  gap: 14px;
}

.footer-social a {
  width: 42px;
  height: 42px;
  background: #1a1a1a;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 15px;
  transition: 0.4s;
}

.footer-social a:hover {
  background: #C9A048;
  border-color: #C9A048;
  transform: translateY(-5px);
}

/* COLUMN TITLE */

.footer-col h3 {
  font-size: 20px;
  margin-bottom: 28px;
  position: relative;
  padding-bottom: 12px;
}

.footer-col h3::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 35px;
  height: 2px;
  background: #C9A048;
}

/* LINKS */

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 16px;
}

.footer-links a {
  color: #9a9a9a;
  text-decoration: none;
  transition: 0.3s;
  font-size: 15px;
}

.footer-links a:hover {
  color: #fff;
  padding-left: 6px;
}

/* CONTACT */

.footer-contact {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-contact li {
  color: #9a9a9a;
  margin-bottom: 18px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  line-height: 1.7;
  font-size: 15px;
}

.footer-contact i {
  color: #C9A048;
  margin-top: 4px;
}

/* BOTTOM */

.footer-bottom {
  text-align: center;
  padding: 20px 0 8px;
  color: #777;
  font-size: 14px;
}

.footer-crafted {
  text-align: center;
  padding: 4px 0 24px;
  font-size: 12px;
  color: rgba(255,255,255,0.35);
  letter-spacing: 0.3px;
}
.footer-crafted a {
  color: rgba(255,255,255,0.35);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.2s;
}
.footer-crafted a:hover {
  color: #C9A048;
}

/* SECTION */

.trending-section {
  width: 90%;
  margin: auto;
  padding: 60px 0;
}

/* HEADING */

.section-heading {
  text-align: center;
  margin-bottom: 50px;
}

.section-heading span {
  font-size: 30px;
  font-weight: 700;
  color: #3b1d0f;
  letter-spacing: 1px;
}

/* GRID */

.trending-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

/* CARD */

.trend-card {
  transition: 0.4s;
}

.trend-card:hover {
  transform: translateY(-5px);
}

/* IMAGE */

.trend-image {
  overflow: hidden;
}

.trend-image img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  transition: 0.5s;
}

.trend-card:hover img {
  transform: scale(1.05);
}

/* CONTENT */

.trend-content {
  padding-top: 14px;
}

.trend-content h3 {
  font-size: 16px;
  line-height: 1.7;
  color: #111;
  margin-bottom: 10px;
}

.price-text {
  font-size: 15px;
  color: #8a7d70;
  margin-bottom: 15px;
}

/* COLORS */

.color-group {
  display: flex;
  gap: 10px;
  margin-bottom: 15px;
}

.color {
  width: 16px;
  height: 16px;
  display: block;
  border: 1px solid #ddd;
}

.black {
  background: #111;
}
.green {
  background: #00a651;
}
.blue {
  background: #1e40ff;
}
.white {
  background: #fff;
}
.pista {
  background: #b7c78c;
}

/* SIZES */

.size-group {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.size-group span {
  font-size: 10px;
  color: #111;
  border: 1px solid #020202;
  padding: 4px 6px;
  transition: 0.3s;
  cursor: pointer;
}

.size-group span:hover {
  background: #111;
  color: #fff;
}

/* BUTTON */

.load-btn-wrap {
  text-align: center;
  margin-top: 50px;
}

.load-btn {
  padding: 12px 30px;
  border: 1px solid #5b2b17;
  background: transparent;
  color: #111;
  font-size: 12px;
  cursor: pointer;
  transition: 0.3s;
  letter-spacing: 1px;
}

.load-btn:hover {
  background: #111;
  color: #fff;
}

.categorySwiper {
  width: 100%;
}

.swiper-slide {
  height: auto;
}

.product-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  transition: 0.4s;
}

.product-card:hover {
  transform: translateY(-8px);
}

.product-image img {
  width: 100%;
  display: block;
  transition: 0.5s;
}

.product-card:hover .product-image img {
  transform: scale(1.08);
}

.product-actions {
  position: absolute;
  top: 20px;
  right: -60px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: 0.4s;
}

.product-card:hover .product-actions {
  right: 20px;
}

.product-image {
  position: relative;
}

.product-actions button,
.cart-btn {
  width: 42px;
  height: 42px;
  border: none;
  border-radius: 50%;
  cursor: pointer;
}

.product-actions button {
  background: #fff;
}

.product-content {
  padding: 20px;
}

.product-category {
  font-size: 13px;
  color: #888;
  margin-bottom: 10px;
}

.product-content h3 {
  font-size: 20px;
  margin-bottom: 15px;
}

.price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.price {
  font-size: 20px;
  font-weight: 600;
}

.cart-btn {
  background: #000;
  color: #fff;
}

/* Swiper arrows */

.categorySwiper .swiper-pagination-bullet {
  color: #C9A048 !important;
  background: #fff;
  width: 50px;
  height: 50px;
  padding: 20px;
  border-radius: 50%;
}
.categorySwiper .swiper-button-next,
.categorySwiper .swiper-button-prev {
  color: #000;
  width: 50px;
  height: 50px;
  background: #fff;
  padding: 20px;
  border-radius: 50%;
}
.categorySwiper .swiper-button-next:after,
.categorySwiper .swiper-rtl .swiper-button-prev:after,
.categorySwiper .swiper-button-prev:after,
.categorySwiper .swiper-rtl .swiper-button-next:after {
  font-size: 20px;
}
.trust-section {
  background: #0a0a0a;
  padding: 65px 0;
  border-top: 1px solid #222;
  border-bottom: 1px solid #222;
}

.trust-grid {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 70px;
  flex-wrap: wrap;
}

.trust-card {
  display: flex;
  align-items: center;
  gap: 22px;
  transition: all 0.4s ease;
}

.trust-card:hover {
  transform: translateY(-8px);
}

.icon-wrapper {
  width: 75px;
  height: 75px;
  background: #111;
  border: 2px solid #d4af37; /* Gold Border */
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #d4af37; /* Gold Icon */
  flex-shrink: 0;
  transition: all 0.4s ease;
}

.trust-card:hover .icon-wrapper {
  background: #1a1a1a;
  border-color: #f0d080;
  color: #f0d080;
  transform: scale(1.1);
}

.content h3 {
  font-size: 1.18rem;
  font-weight: 600;
  color: #ffffff;
  margin: 0 0 6px 0;
}

.content p {
  font-size: 0.96rem;
  color: #bbbbbb;
  margin: 0;
}
/* ================= STATS SECTION ================= */

.stats-section {
  padding: 90px 0 80px;
  background: #0d0c09;
  position: relative;
  overflow: hidden;
}

/* Background fashion image watermark */
.stats-bg-img {
  position: absolute;
  inset: 0;
  background-image: url('https://images.unsplash.com/photo-1558769132-cb1aea458c5e?w=1920&q=80');
  background-size: cover;
  background-position: center;
  z-index: 0;
}
.stats-bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(13,12,9,0.97) 0%,
    rgba(13,12,9,0.90) 40%,
    rgba(13,12,9,0.82) 70%,
    rgba(13,12,9,0.88) 100%
  );
  z-index: 1;
}

/* Section header */
.stats-header {
  text-align: center;
  margin-bottom: 60px;
}
.stats-eyebrow {
  display: inline-block;
  font-family: 'Montserrat', sans-serif;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 5px;
  color: #C9A048;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.stats-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(2rem, 3.5vw, 3.2rem);
  font-weight: 600;
  color: #fff;
  line-height: 1.15;
  margin: 0;
}
.stats-title em {
  color: #C9A048;
  font-style: italic;
}

/* Grid — horizontal, no cards */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  position: relative;
  z-index: 2;
}

/* Vertical gold dividers between items */
.stat-card + .stat-card {
  border-left: 1px solid rgba(201,160,72,0.15);
}

.stat-card {
  background: transparent;
  border: none;
  border-radius: 0;
  padding: 0 40px 0;
  text-align: center;
}
.stat-card:hover { transform: none; box-shadow: none; }
.stat-card::after { display: none; }

/* NUMBER */
.stat-num-wrap {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 4px;
  margin-bottom: 14px;
}
.counter {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(52px, 5.5vw, 80px);
  font-weight: 900;
  color: #fff;
  line-height: 1;
  margin: 0;
  letter-spacing: -2px;
}
.stat-of {
  font-family: 'Montserrat', sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: #C9A048;
  letter-spacing: 0;
}

/* LABELS */
.stat-hindi {
  font-family: 'Noto Sans Devanagari', 'Hind', Arial, sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #C9A048;
  margin: 0 0 6px;
}
.stat-en {
  font-family: 'Montserrat', sans-serif;
  font-size: 9px;
  font-weight: 600;
  color: rgba(255,255,255,0.28);
  letter-spacing: 2.5px;
  text-transform: uppercase;
  margin: 0;
}

/* Hover: number glows gold */
.stat-card:hover .counter { color: #C9A048; transition: color 0.3s; }

@media (max-width: 820px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-card { padding: 32px 24px; }
  .stat-card:nth-child(3) { border-left: 1px solid rgba(201,160,72,0.15); border-top: 1px solid rgba(201,160,72,0.15); }
  .stat-card:nth-child(4) { border-top: 1px solid rgba(201,160,72,0.15); }
}
@media (max-width: 480px) {
  .stats-section { padding: 60px 0; }
  .stat-card { padding: 28px 16px; }
  .counter { font-size: 48px; }
}
/* END STATS SECTION */

.gallery-section {
  background: linear-gradient(135deg, #1a1a1a 0%, #0f0f0f 100%);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.gallery-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
    circle at center,
    rgba(212, 175, 55, 0.08) 0%,
    transparent 70%
  );
  pointer-events: none;
}

.section-header {
  text-align: center;
  margin-bottom: 70px;
}

.section-header h2 {
  font-size: 3rem;
  color: white;
  margin-bottom: 12px;
}

.section-header p {
  color: #bbbbbb;
  font-size: 1.15rem;
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1fr 1.35fr 1fr;
  gap: 25px;
  max-width: 1350px;
  margin: 0 auto;
  padding: 0 20px;
}

.gallery-card {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  height: 420px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.7);
  transition: all 0.5s ease;
}

.gallery-card.large {
  height: 540px;
  margin-top: -60px;
}

.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.gallery-card:hover img {
  transform: scale(1.1);
}

.overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(10, 10, 10, 0.95));
  padding: 40px 25px 30px;
  transform: translateY(30px);
  opacity: 0;
  transition: all 0.4s ease;
}

.gallery-card:hover .overlay {
  transform: translateY(0);
  opacity: 1;
}

.overlay h3 {
  color: #d4af37;
  font-size: 1.45rem;
  margin: 0;
}
.active .search-box button i {
  color: #111;
}
.product-section .swiper-pagination {
  display: none;
}

.inner-page {
  background: #0a0a0a;
}
/* Category Banner */
.category-banner {
  background: #c8102e;
  color: white;
  padding: 140px 0 90px 0;
  position: relative;
  overflow: hidden;
}
.category-banner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.6));
}
.banner-content {
  position: relative;
  z-index: 2;
  text-align: center;
}
.breadcrumb {
  margin-bottom: 15px;
  color: #ddd;
}
.breadcrumb a {
  color: #ddd;
}
.category-banner h1 {
  font-size: 70px;
  font-weight: 800;
  margin-bottom: 10px;
}

/* Shop Container */
.shop-container {
  display: flex;
  gap: 30px;
  padding-top: 110px;
  padding-bottom: 110px;
}

/* Sidebar Filters */
.sidebar {
  width: 260px;
  background: #111;
  padding: 25px;
  border-radius: 12px;
  height: fit-content;
  position: sticky;
  top: 20px;
}

.sidebar h2 {
  color: white;
  margin-bottom: 25px;
  font-size: 1.4rem;
}

.filter-group {
  margin-bottom: 32px;
}

.filter-group h3 {
  color: #d4af37;
  margin-bottom: 15px;
  font-size: 1.1rem;
}

select,
input[type="range"] {
  width: 100%;
  background: #1a1a1a;
  border: 1px solid #333;
  color: #ddd;
  padding: 10px;
  border-radius: 8px;
  margin: 8px 0;
}

.color-options {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.color-dot {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  cursor: pointer;
  border: 2px solid #222;
}

/* Main Content */
.main-content {
  flex: 1;
}

.filter-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  border-bottom: 1px solid #222;
  margin-bottom: 35px;
  flex-wrap: wrap;
  gap: 15px;
}

.view-options {
  display: flex;
  background: #111;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid #333;
}

.view-btn {
  padding: 10px 18px;
  background: transparent;
  color: #bbb;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
}

.view-btn.active {
  background: #d4af37;
  color: black;
  font-weight: 600;
}

/* Products */
.products-container {
  display: grid;
  gap: 25px;
  transition: all 0.4s ease;
}

.products-container.grid-view {
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
}

.products-container.list-view {
  grid-template-columns: 1fr;
}

.product-card {
  background: #111;
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.4s ease;
}

.product-card:hover {
  transform: translateY(-10px);
}

.product-img {
  position: relative;
  height: 320px;
}

.product-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.wishlist {
  position: absolute;
  top: 15px;
  right: 15px;
  background: #fff;
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  color: #000;
  cursor: pointer;
}

.product-info {
  padding: 18px;
}

.price {
  font-size: 1.35rem;
  font-weight: 700;
  color: #d4af37;
  margin: 20px 0;
}

.add-to-cart {
  width: 100%;
  padding: 12px;
  background: #d4af37;
  color: black;
  border: none;
  font-weight: 600;
  border-radius: 6px;
  margin-top: 10px;
  cursor: pointer;
}

/* List View */
.products-container.list-view .product-card {
  display: flex;
  gap: 20px;
  padding: 15px;
  width: 100%;
}

.products-container.list-view .product-img {
  width: 200px;
  height: 250px;
}
.sort-wrapper select#sortFilter {
  margin: 0;
}
.filter-left {
  display: flex;
  align-items: end;
  gap: 15px;
}
span.results-count {
  color: #fff;
}
.product-info h3 {
  color: #fff;
}

.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  margin-top: 60px;
}

.pagination button {
  min-width: 48px;
  height: 48px;
  padding: 0 18px;
  border: 1px solid #e5e5e5;
  background: #fff;
  color: #111;
  font-size: 14px;
  font-weight: 600;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: "Montserrat", sans-serif;
}

/* Hover */
.pagination button:hover {
  background: #111;
  color: #fff;
  border-color: #C9A048;
  transform: translateY(-2px);
}

/* Active */
.pagination button.active {
  background: #C9A048;
  color: #fff;
  border-color: #C9A048;
  box-shadow: 0 10px 25px rgba(230, 57, 70, 0.2);
}

/* Prev / Next */
.pagination button:first-child,
.pagination button:last-child {
  padding: 0 22px;
}

/* RESPONSIVE */

@media (max-width: 1200px) {
  .products-grid,
  .categories-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero h1 {
    font-size: 62px;
  }

  .offer-content h2 {
    font-size: 48px;
  }

  .testimonial-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 991px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  /* Fix orphan border-left on 3rd stat in 2-col layout */
  .stat-card + .stat-card { border-left: none; }
  .stat-card:nth-child(even) { border-left: 1px solid rgba(201,160,72,0.15); }
  .stat-card:nth-child(1),
  .stat-card:nth-child(2) { border-bottom: 1px solid rgba(201,160,72,0.15); }

  .trending-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: #111;
    flex-direction: column;
    padding: 120px 40px;
    transition: 0.4s;
  }
  .header {
    padding: 32px 0;
  }
  .nav-links.active {
    right: 0;
  }
  .search-box {
    width: 120px;
  }
  .search-box button,
  .icons ul li a {
    font-size: 15px;
  }
  .icons ul {
    gap: 20px;
  }
  .icons {
    gap: 28px;
  }
  .header.active .search-box button {
    color: #111;
  }
  .nav-links a {
    color: #fff !important;
  }

  .menu-open .mobile-toggle {
    display: flex;
    font-size: 30px;
    color: #fff;
    cursor: pointer;
    z-index: 1;
    width: 280px;
    padding-left: 40px;
  }

  .menu-open .mobile-toggle-logo a img {
    width: 100px;
    padding: 10px 0;
  }
  .mobile-toggle {
    display: flex;
    font-size: 30px;
    color: #fff;
    cursor: pointer;
    z-index: 1;
  }
  .header.active .mobile-toggle {
    color: #111;
  }

  .hero h1 {
    font-size: 54px;
  }

  .offer-banner {
    grid-template-columns: 1fr;
  }

  .offer-image {
    order: -1;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .nav-links {
    gap: 10px;
  }
  .newsletter-form {
    flex-direction: column;
  }

  .newsletter-form .btn {
    width: 100%;
  }

  .menu-open .logo {
    display: none;
  }
  .menu-open .mobile-toggle {
    position: absolute;
    right: 0;
    top: 0;
    background: #0f0f0f;
    z-index: 9;
    padding-right: 20px;
  }
  .menu-open {
    padding: 0;
  }
  /* ===== MOBILE MENU DESIGN ===== */

  .nav-links {
    list-style: none;
    margin: 0;
    background: #0f0f0f;
    width: 280px;
    height: 100vh;
    overflow-y: auto;
    padding: 125px 0;
  }

  .nav-links li {
    position: relative;
  }
  .nav-links li.dropdown:hover:after {
    bottom: -3px;
    height: 3px;
    width: 100%;
  }

  .submenu {
    position: static;
    width: 100%;
  }
  /* Main Links */
  .nav-links li a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 20px;
    color: #fff;
    text-decoration: none;
    font-size: 17px;
    font-weight: 500;
    border-bottom: 1px solid #1f1f1f;
    transition: 0.3s;
  }

  /* Hover */
  .nav-links li a:hover {
    background: #181818;
    color: #ff3c3c;
    padding-left: 25px;
  }

  /* Dropdown Icon */
  .nav-links li a i {
    font-size: 14px;
    transition: 0.3s;
  }

  /* Submenu */
  .submenu,
  .submenu-two {
    max-height: 0;
    overflow: hidden;
    background: #161616;
    transition: max-height 0.4s ease;
  }

  /* Active Show */
  .dropdown.active > .submenu {
    max-height: 1000px;
  }

  .dropdown-submenu.active > .submenu-two {
    max-height: 500px;
  }

  /* Submenu Links */
  .submenu li a,
  .submenu-two li a {
    padding-left: 35px;
    font-size: 15px;
    background: #151515;
    color: #ccc;
  }

  /* 2nd Level */
  .submenu-two li a {
    padding-left: 55px;
    background: #1b1b1b;
    font-size: 14px;
  }

  /* Arrow Rotate */
  .dropdown.active > a i.fa-angle-down {
    transform: rotate(180deg);
  }

  .dropdown-submenu.active > a i.fa-angle-right {
    transform: rotate(90deg);
  }

  /* Scrollbar */
  .nav-links::-webkit-scrollbar {
    width: 5px;
  }

  .nav-links::-webkit-scrollbar-thumb {
    background: #333;
    border-radius: 10px;
  }

  .submenu,
  .submenu-two {
    padding: 0;
  }
  .submenu,
  .submenu-two {
    visibility: visible;
    opacity: 1;
    display: none;
  }
  li.dropdown.active .submenu,
  li.dropdown.active .submenu-two {
    display: block;
    position: static;
    width: 100%;
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }

  .shop-container {
    flex-direction: column;
    padding: 100px 20px;
  }
  .sidebar {
    width: 100%;
    position: static;
  }
  .product-card {
    width: 100% !important;
  }
}

@media (max-width: 767px) {
  .section {
    padding: 80px 0;
  }
  #menuIcon {
    font-size: 18px;
  }
  .hero {
    text-align: center;
  }

  .hero-content {
    margin: auto;
  }
  .category-banner h1,
  .hero h1 {
    font-size: 35px;
  }

  .hero p {
    font-size: 15px;
  }

  .hero-btns {
    justify-content: center;
  }

  .categories-grid,
  .products-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .section-header h2,
  .section-title h2 {
    font-size: 32px;
  }

  .offer-content {
    padding: 50px 25px;
  }

  .offer-content h2 {
    font-size: 38px;
  }

  .newsletter {
    padding: 70px 20px;
  }

  .newsletter h2 {
    font-size: 32px;
  }

  .product-image img,
  .category-card img {
    height: auto;
  }
  footer {
    padding: 60px 0 40px;
  }
  .footer-bottom {
    margin-top: 60px;
  }

  .search-box input {
    font-size: 12px;
  }
  .icons ul {
    gap: 15px;
    position: relative;
    left: 60px;
  }

  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .trust-grid {
    gap: 45px;
  }
  .trust-card {
    flex-direction: column;
    text-align: center;
    gap: 16px;
  }
  .counter {
    font-size: 38px;
  }
  .gallery-grid {
    grid-template-columns: 1fr;
  }
  .gallery-card.large {
    height: 420px;
    margin-top: 0;
  }
  .icons ul {
    gap: 15px;
    position: relative;
    left: 70px;
  }

  .btn {
    padding: 10px 20px;
    text-decoration: none;
    font-size: 10px;
    letter-spacing: 2px;
  }
}

@media (max-width: 576px) {
  .stats-grid {
    grid-template-columns: 1fr;
  }
  .logo {
    width: 75px;
  }
  .header {
    padding: 20px 0;
  }
  .products-grid {
    grid-template-columns: 1fr;
  }

  .product-image img {
    height: 320px;
  }

  .search-box button,
  .icons ul li a {
    font-size: 13px;
  }

  .footer {
    padding-top: 70px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-about {
    max-width: 100%;
  }

  .pagination {
    gap: 8px;
  }

  .pagination button {
    min-width: 30px;
    height: 30px;
    font-size: 12px;
    padding: 0 14px;
  }
  .pagination button:first-child,
  .pagination button:last-child {
    padding: 0 8px;
  }
}
@media (max-width: 320px) {
  .icons ul {
    gap: 5px;
    left: 50px;
  }
  .search-box {
    width: 100px;
  }
}

/* ===== USER DROPDOWN (header) ===== */

.user-dropdown-wrap {
  position: relative;
}

.user-dropdown-trigger {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #fff;
  font-size: 20px;
  text-decoration: none;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
  font-family: inherit;
}

.header.active .user-dropdown-trigger {
  color: #111;
}

.user-name-label {
  font-size: 13px;
  font-weight: 600;
  max-width: 80px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.user-dropdown-menu {
  position: absolute;
  top: calc(100% + 14px);
  right: 0;
  background: #fff;
  min-width: 210px;
  border-radius: 10px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.14);
  padding: 6px 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s, transform 0.25s;
  transform: translateY(-8px);
  z-index: 9999;
}

.user-dropdown-wrap:hover .user-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.user-dropdown-header {
  padding: 12px 16px 10px;
  border-bottom: 1px solid #f0f0f0;
}

.user-dropdown-header strong {
  display: block;
  font-size: 14px;
  color: #111;
  font-weight: 700;
}

.user-dropdown-header span {
  font-size: 12px;
  color: #999;
}

.user-dropdown-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  font-size: 14px;
  color: #333;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
  font-weight: 500;
}

.user-dropdown-item:hover {
  background: #fafafa;
  color: #C9A048;
}

.user-dropdown-item i {
  width: 16px;
  font-size: 13px;
  flex-shrink: 0;
}

.user-dropdown-item.logout-item {
  border-top: 1px solid #f0f0f0;
  margin-top: 4px;
  color: #C9A048;
}

/* ===== LIVE SEARCH DROPDOWN ===== */
.search-wrap {
  position: relative;
}

.search-dropdown {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%);
  width: 360px;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 16px 48px rgba(0,0,0,.16);
  z-index: 9999;
  overflow: hidden;
  display: none;
  border: 1px solid #f0f0f0;
}

.search-dropdown.open {
  display: block;
  animation: sdrop .2s ease;
}

@keyframes sdrop {
  from { opacity: 0; transform: translateX(-50%) translateY(-6px); }
  to   { opacity: 1; transform: translateX(-50%) translateY(0); }
}

.sd-header {
  padding: 10px 16px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  color: #aaa;
  background: #fafafa;
  border-bottom: 1px solid #f0f0f0;
  text-transform: uppercase;
}

.sd-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 16px;
  cursor: pointer;
  transition: background .2s;
  text-decoration: none;
  color: inherit;
  border-bottom: 1px solid #f9f9f9;
}

.sd-item:hover {
  background: #fafafa;
}

.sd-img {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  object-fit: cover;
  background: #f5f5f5;
  flex-shrink: 0;
}

.sd-info h4 {
  font-size: 13px;
  font-weight: 700;
  color: #111;
  margin-bottom: 3px;
  line-height: 1.3;
}

.sd-info .sd-price {
  font-size: 13px;
  font-weight: 800;
  color: #C9A048;
}

.sd-info .sd-cat {
  font-size: 11px;
  color: #aaa;
  margin-left: 6px;
}

.sd-footer {
  padding: 12px 16px;
  text-align: center;
  background: #fafafa;
  border-top: 1px solid #f0f0f0;
}

.sd-footer a {
  font-size: 13px;
  font-weight: 700;
  color: #C9A048;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.sd-empty {
  padding: 28px 16px;
  text-align: center;
  color: #aaa;
  font-size: 14px;
}

.sd-loading {
  padding: 20px;
  text-align: center;
  color: #aaa;
  font-size: 13px;
}

/* search highlight */
.sd-item mark {
  background: #fff3cd;
  color: #111;
  border-radius: 2px;
  padding: 0 2px;
}

/* ============================================================
   NAVBAR V2 — TWO-ROW HEADER (2026 REDESIGN)
   Row 1: Logo | Wide Search Bar | Icons
   Row 2: Nav links — Men Women Kids New-Arrivals Bestsellers About Contact
   Mega menu dropdowns on hover
============================================================ */

/* Always white — no transparent state */
.header {
  padding: 0 !important;
  background: #fff !important;
  box-shadow: 0 1px 0 #eeebe6 !important;
  overflow: visible !important;
}
.header.active {
  padding: 0 !important;
  background: #fff !important;
  box-shadow: 0 2px 20px rgba(0,0,0,.07) !important;
}

/* ── ROW 1: top bar ── */
.hdr-top {
  padding: 13px 0;
  background: #0a0905;
  border-bottom: 1px solid rgba(201,160,72,0.12);
}
.hdr-top-inner {
  display: flex;
  align-items: center;
  gap: 24px;
}
/* Logo left, static (overrides old absolute-center) */
.hdr-top-inner .logo {
  position: static !important;
  transform: none !important;
  left: auto !important;
  width: 90px;
  flex-shrink: 0;
}
/* Always show white logo in dark header */
.hdr-top-inner .logo .white-logo { display: block !important; }
.hdr-top-inner .logo .dark-logo  { display: none !important; }

/* Wide search bar — dark theme */
.header-search {
  flex: 1;
  display: flex;
  align-items: center;
  background: rgba(255,255,255,0.06);
  border: 1.5px solid rgba(255,255,255,0.1) !important;
  border-radius: 8px;
  padding: 9px 16px;
  gap: 10px;
  max-width: 680px;
  transition: border-color .2s;
}
.header-search:focus-within {
  border-color: rgba(201,160,72,0.45) !important;
}
.header-search input {
  border: none !important;
  background: transparent !important;
  outline: none !important;
  font-size: 14px;
  color: #fff;
  width: 100%;
  font-family: inherit;
  padding: 0 !important;
  letter-spacing: 0;
}
.header-search input::placeholder { color: rgba(255,255,255,0.35); letter-spacing: 0; }
.header-search > i { color: rgba(255,255,255,0.4); font-size: 14px; flex-shrink: 0; }
.header-search button { display: none !important; }

/* Header icons (right side) — dark theme */
.hdr-icons {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-shrink: 0;
}
.hdr-icons a {
  position: relative;
  color: rgba(255,255,255,0.8);
  font-size: 19px;
  text-decoration: none;
  transition: color .2s;
}
.hdr-icons a:hover { color: #C9A048; }
.hdr-icons .hdr-badge {
  position: absolute;
  top: -6px;
  right: -8px;
  background: #C9A048;
  color: #fff;
  font-size: 9px;
  font-weight: 700;
  min-width: 16px;
  height: 16px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 3px;
  line-height: 1;
}

/* ── ROW 2: nav links ── */
.hdr-nav {
  position: relative;
  background: #111009;
  border-bottom: 1px solid rgba(201,160,72,0.08);
}
.hdr-nav .container { display: flex; justify-content: center; }

/* Override ALL old nav-links styles */
.hdr-nav .nav-links {
  position: static !important;
  display: flex !important;
  flex-direction: row !important;
  background: transparent !important;
  width: auto !important;
  height: auto !important;
  padding: 0 !important;
  gap: 0 !important;
  overflow: visible !important;
  box-shadow: none !important;
  right: auto !important;
  top: auto !important;
  transition: none !important;
  border: none !important;
}
.hdr-nav .nav-links > li {
  position: static !important;
  list-style: none;
}
.hdr-nav .nav-links > li::after {
  display: none !important;
}
.hdr-nav .nav-links > li > a {
  display: flex !important;
  align-items: center;
  gap: 5px;
  padding: 13px 16px;
  font-size: 13.5px;
  font-weight: 500;
  color: rgba(255,255,255,0.8) !important;
  text-decoration: none !important;
  white-space: nowrap;
  transition: color .2s, border-color .2s;
  border-bottom: 2px solid transparent;
}
.hdr-nav .nav-links > li > a:hover {
  color: #C9A048 !important;
  border-bottom-color: #C9973A;
}
.nav-arr {
  font-size: 9px !important;
  opacity: .55;
  transition: transform .2s;
}
.hdr-nav .nav-links > li.dropdown:hover > a .nav-arr {
  transform: rotate(180deg);
  opacity: 1;
}

/* New Arrivals special */
.hdr-nav .nav-links li a.nav-hot {
  color: #C9A048 !important;
  font-weight: 600;
}
.hdr-nav .nav-links li a.nav-hot::before {
  content: 'NEW';
  position: absolute;
  top: 5px;
  right: 6px;
  font-size: 7px;
  font-weight: 800;
  background: #C9A048;
  color: #fff;
  padding: 1px 4px;
  border-radius: 2px;
  letter-spacing: .5px;
  pointer-events: none;
}

/* ── MEGA MENU — dark theme ── */
.mega-menu {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  width: 100%;
  background: #0d0c09;
  border-top: 2px solid #C9973A;
  border-bottom: 1px solid rgba(201,160,72,0.12);
  box-shadow: 0 16px 48px rgba(0,0,0,.5);
  padding: 28px 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity .2s, visibility .2s;
  z-index: 999;
  pointer-events: none;
}
/* hover only on real pointer devices — touch devices use JS .open class */
@media (hover: hover) and (pointer: fine) {
  .hdr-nav .nav-links > li.dropdown:hover .mega-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
  }
}
/* JS-controlled open class (used by touch/tablet JS handler) */
.hdr-nav .nav-links > li.dropdown.open .mega-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
}
.mega-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  gap: 48px;
}
.mega-inner.cols-2 { grid-template-columns: 200px 200px; }
.mega-inner.cols-3 { grid-template-columns: 200px 200px 200px; }
.mega-col h4 {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #C9973A;
  margin-bottom: 14px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(201,160,72,0.18);
}
.mega-col ul { list-style: none; padding: 0; margin: 0; }
.mega-col ul li a {
  display: block;
  padding: 7px 0;
  font-size: 13px;
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  transition: all .15s;
}
.mega-col ul li a:hover {
  color: #C9A048;
  padding-left: 6px;
}
.mega-col .see-all {
  margin-top: 8px;
  font-size: 11px !important;
  font-weight: 700 !important;
  color: #C9973A !important;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ══════════════════════════════════════════════════════════════════
   UNIFIED MOBILE + TABLET NAVIGATION  (≤ 991px)
   Root-cause fix: never hide .hdr-top-inner — only hide its children
   ══════════════════════════════════════════════════════════════════ */

/* Desktop only: hide hamburger button */
@media (min-width: 992px) {
  .mobile-toggle,
  .hdr-top .mobile-toggle,
  .hdr-top-inner .mobile-toggle { display: none !important; }
  #mob-nav-overlay { display: none !important; }
}

/* Mobile + Tablet (≤ 991px) */
@media (max-width: 991px) {

  /* ── Top bar ── */
  .hdr-top { padding: 0 !important; }

  /* Keep .hdr-top-inner VISIBLE — hide only desktop-specific children */
  .hdr-top-inner {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    padding: 10px 16px !important;
    background: #0d0c09 !important;
    border-bottom: 1px solid rgba(201,160,72,0.12) !important;
  }
  .hdr-top-inner .logo,
  .hdr-top-inner .header-search { display: none !important; }
  /* Show cart + user icons on mobile alongside hamburger */
  .hdr-top-inner .hdr-icons {
    display: flex !important;
    gap: 14px;
    align-items: center;
    order: 2;
    flex-shrink: 0;
  }
  .hdr-top-inner .hdr-icons a {
    color: rgba(255,255,255,0.85) !important;
    font-size: 17px;
    position: relative;
  }
  .hdr-top-inner .mobile-toggle { width: auto !important; order: 3; }

  /* ── Hamburger button ── */
  .mobile-toggle,
  .hdr-top .mobile-toggle,
  .hdr-top-inner .mobile-toggle {
    display: flex !important;
    width: 100% !important;
    align-items: center !important;
    justify-content: space-between !important;
    background: transparent !important;
    border: none !important;
    padding: 0 !important;
    cursor: pointer;
  }
  .mobile-toggle-logo,
  .hdr-top-inner .mobile-toggle-logo { display: flex !important; align-items: center; }
  .mobile-toggle-logo img,
  .hdr-top-inner .mobile-toggle-logo img { height: 34px !important; width: auto !important; filter: brightness(10); }
  #menuIcon {
    font-size: 24px !important;
    color: #fff !important;
    cursor: pointer;
    padding: 8px 10px;
    border-radius: 8px;
    transition: background .2s, color .2s;
    line-height: 1 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    min-width: 44px !important;
    min-height: 44px !important;
  }
  #menuIcon:hover,
  #menuIcon:active { background: rgba(201,160,72,0.15) !important; color: #C9A048 !important; }

  /* ── hdr-nav: no longer a positioned row ── */
  .hdr-nav { position: static !important; overflow: visible !important; background: transparent !important; }
  .hdr-nav > .container { padding: 0 !important; }

  /* ── Nav drawer ── */
  .hdr-nav .nav-links,
  .nav-links {
    position: fixed !important;
    top: 0 !important;
    right: -100% !important;
    bottom: 0 !important;
    width: 82vw !important;
    max-width: 300px !important;
    height: 100vh !important;
    background: #141210 !important;  /* slightly lighter than page bg for clarity */
    flex-direction: column !important;
    padding: 0 !important;
    overflow-y: auto !important;
    overflow-x: hidden !important;
    transition: right .32s cubic-bezier(.4,0,.2,1) !important;
    box-shadow: none !important;
    z-index: 1002 !important;
    gap: 0 !important;
    border-left: 2px solid rgba(201,160,72,0.25) !important;
    list-style: none !important;
  }
  .hdr-nav .nav-links.active,
  .nav-links.active {
    right: 0 !important;
    box-shadow: -16px 0 56px rgba(0,0,0,.85) !important;
  }

  /* Drawer title bar — clear MENU header */
  .hdr-nav .nav-links::before,
  .nav-links::before {
    content: 'MENU';
    display: flex !important;
    align-items: center;
    gap: 12px;
    padding: 20px 22px 18px;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 4px;
    color: #C9A048;
    border-bottom: 1px solid rgba(201,160,72,0.15);
    background: #0e0c0a !important;
    position: sticky;
    top: 0;
    z-index: 2;
  }
  /* Nav items — high contrast, clearly readable */
  .hdr-nav .nav-links > li > a,
  .nav-links > li > a {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    padding: 16px 22px !important;
    font-size: 15px !important;
    font-weight: 600 !important;
    color: rgba(255,255,255,0.92) !important;
    border-bottom: 1px solid rgba(255,255,255,0.06) !important;
    border-right: none !important;
    letter-spacing: 0.2px;
    transition: background .15s, color .15s, padding-left .15s !important;
    text-decoration: none !important;
    background: transparent !important;
  }
  .hdr-nav .nav-links > li > a:hover,
  .nav-links > li > a:hover {
    background: rgba(201,160,72,0.08) !important;
    color: #C9A048 !important;
    padding-left: 28px !important;
  }
  .nav-links > li > a.nav-hot { color: #C9A048 !important; font-weight: 700 !important; }

  /* Mega menus hidden on mobile — top-level links go to category page */
  .mega-menu { display: none !important; }
  .nav-arr { display: none !important; }

  /* ── Overlay (injected by JS) ── */
  /* z-index 990 = below header (z:999) so nav drawer always shows above it.
     No backdrop-filter — blur was leaking into the nav drawer panel. */
  #mob-nav-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.72);
    z-index: 990;
    display: none;
    cursor: pointer;
  }
  #mob-nav-overlay.open { display: block !important; }
}

/* Extra small phones (≤ 375px) */
@media (max-width: 375px) {
  .hdr-nav .nav-links,
  .nav-links { width: 100% !important; border-left: none !important; }
}

/* ── MOBILE DROPDOWN: mega-menu hidden — top links navigate to category page ── */
@media (max-width: 991px) {
  .nav-links > li.dropdown.active .mega-menu,
  .nav-links > li.dropdown:not(.active) .mega-menu {
    display: none !important;
  }
  .nav-links > li.dropdown .mega-inner {
    display: block !important;
    padding: 8px 16px !important;
    gap: 0 !important;
  }
  .nav-links > li.dropdown .mega-col h4 {
    font-size: 9px !important;
    padding: 10px 0 4px !important;
    margin-bottom: 4px !important;
    color: rgba(201,160,72,0.7) !important;
    border-bottom: 1px solid rgba(201,160,72,0.12) !important;
  }
  .nav-links > li.dropdown .mega-col ul {
    list-style: none;
    padding: 0;
    margin: 0 0 8px;
  }
  .nav-links > li.dropdown .mega-col ul li a {
    display: block !important;
    padding: 8px 8px !important;
    font-size: 13px !important;
    color: rgba(255,255,255,0.75) !important;
    border-bottom: none !important;
  }
  .nav-links > li.dropdown .mega-col ul li a:hover {
    color: #C9A048 !important;
    background: none !important;
  }
  /* Rotate arrow when dropdown open */
  .nav-links > li.dropdown.active > a .nav-arr {
    display: inline-block !important;
    transform: rotate(180deg) !important;
    opacity: 1 !important;
    color: #C9A048 !important;
  }
}

/* Offset hero-slider for two-row fixed header */
.hero-slider { padding-top: 0; }

/* ── ANNOUNCEMENT BAR ── */
.announce-bar {
  background: #C9973A;
  height: 34px;
  overflow: hidden;
  display: flex;
  align-items: center;
  border-top: 1px solid rgba(255,255,255,0.18);
}
.announce-track {
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
  animation: marqueeScroll 28s linear infinite;
  will-change: transform;
}
.announce-track:hover { animation-play-state: paused; }
@keyframes marqueeScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.announce-track > span {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 1.8px;
  color: #0F2419;
  text-transform: uppercase;
  padding: 0 32px;
}
.announce-track > .a-sep {
  color: rgba(15,36,25,0.28);
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0;
  padding: 0;
  flex-shrink: 0;
}
/* END ANNOUNCEMENT BAR */

/* END NAVBAR V2 */

/* ════════════════════════════════════════
   HERO V2 — Bright Editorial Edition
   ════════════════════════════════════════ */

/* Base: light background, image right-aligned */
.hero {
  background: #f9f6f1 !important;
  background-position: right center !important;
  background-size: cover !important;
}

/* Replace dark overlay with soft cream gradient (text-side left → transparent right) */
.hero::before {
  background: linear-gradient(
    to right,
    rgba(249,246,241,0.97) 0%,
    rgba(249,246,241,0.90) 28%,
    rgba(249,246,241,0.58) 55%,
    rgba(249,246,241,0.08) 80%,
    transparent 95%
  ) !important;
}

/* Dark text on bright background */
.hero h1       { color: #0F2419 !important; font-size: clamp(2.6rem, 5vw, 4.8rem) !important; }
.hero p        { color: #555 !important; }
.hero-subtitle { color: #C9973A !important; letter-spacing: 4px !important; }
.hero-content  {
  color: #0F2419 !important;
  margin-top: 0 !important;
  padding-top: 0 !important;
  position: relative;
  z-index: 5;
}

/* hero-subtitle top margin to clear fixed header (top-row + nav + announce bar) */
.hero .hero-subtitle { margin-top: 155px !important; }

/* Buttons — dark/gold on bright bg */
.hero .btn-primary {
  background: #0F2419 !important;
  color: #fff !important;
  border: 2px solid #0F2419 !important;
}
.hero .btn-primary:hover {
  background: #C9973A !important;
  border-color: #C9973A !important;
  transform: translateY(-3px);
}
.hero .btn-outline {
  background: transparent !important;
  border: 2px solid rgba(15,36,25,0.75) !important;
  color: #0F2419 !important;
  backdrop-filter: none !important;
}
.hero .btn-outline:hover {
  background: #0F2419 !important;
  color: #fff !important;
}

/* Bright images for 2 slides */
.hero-one {
  background-image: url("https://images.unsplash.com/photo-1445205170230-053b83016050?w=1800&q=90") !important;
}
.hero-two {
  background-image: url("https://images.unsplash.com/photo-1516627145497-ae6968895b24?w=1800&q=90") !important;
}

/* Pagination — gold pill on bright bg */
.myHero .swiper-pagination { bottom: 32px; position: absolute; z-index: 5; }
.myHero .swiper-pagination-bullet {
  background: #0F2419 !important;
  opacity: 0.22;
  width: 8px; height: 8px;
  border-radius: 4px;
  transition: width .3s, opacity .3s;
}
.myHero .swiper-pagination-bullet-active {
  background: #C9973A !important;
  opacity: 1 !important;
  width: 28px;
}

/* Mobile — full overlay so text is always readable */
@media (max-width: 768px) {
  .hero { background-position: center top !important; }
  .hero::before {
    background: rgba(249,246,241,0.82) !important;
  }
  .hero .hero-subtitle { margin-top: 100px !important; }
  .hero h1 { font-size: 2rem !important; }
  .hero p  { font-size: 15px !important; }
}
/* END HERO V2 */

/* ════════════════════════════════════════
   FEATURED COLLECTION — Polaroid Grid
   ════════════════════════════════════════ */
.fc-section { background: #131009; padding: 80px 0 100px; }
.fc-title { color: rgba(255,255,255,0.35) !important; }
.fc-filter { border-color: rgba(255,255,255,0.1) !important; color: rgba(255,255,255,0.28) !important; }
.fc-filter.active { background: #C9A048 !important; border-color: #C9A048 !important; color: #0d0c09 !important; }
.fc-filter:hover:not(.active) { border-color: rgba(201,160,72,0.5) !important; color: #C9A048 !important; }
.fc-view-all { color: #C9A048 !important; }

.fc-head {
  display: flex; align-items: center; gap: 20px;
  margin-bottom: 52px; flex-wrap: wrap;
}
.fc-title {
  font-size: 11px; font-weight: 700; letter-spacing: 5px;
  text-transform: uppercase; color: rgba(0,0,0,0.4);
  white-space: nowrap; flex-shrink: 0;
}
.fc-filters { display: flex; gap: 4px; flex-wrap: wrap; }
.fc-filter {
  padding: 7px 18px; font-size: 9px; font-weight: 700;
  letter-spacing: 3px; text-transform: uppercase;
  background: transparent; border: 1px solid rgba(0,0,0,0.12);
  color: rgba(0,0,0,0.28); cursor: pointer;
  transition: all 0.25s; font-family: 'Montserrat', sans-serif;
}
.fc-filter.active  { background: #C9A048; color: #0d0c09; border-color: #C9A048; }
.fc-filter:hover:not(.active) { border-color: #C9A048; color: #C9A048; }
.fc-view-all {
  margin-left: auto; font-size: 9px; font-weight: 700;
  letter-spacing: 3px; text-transform: uppercase;
  color: #C9973A; text-decoration: none; white-space: nowrap;
  transition: letter-spacing 0.25s;
}
.fc-view-all:hover { letter-spacing: 5px; }

/* 4-column polaroid grid */
.fc-grid {
  display: grid; grid-template-columns: repeat(4,1fr);
  gap: 56px 32px; padding-top: 20px;
}

/* POLAROID CARD */
.fc-card {
  position: relative; cursor: pointer;
  transition: transform 0.4s cubic-bezier(0.4,0,0.2,1);
}
.fc-card:nth-child(4n+1) { transform: rotate(-2deg); }
.fc-card:nth-child(4n+2) { transform: rotate(1.6deg); }
.fc-card:nth-child(4n+3) { transform: rotate(-1.1deg); }
.fc-card:nth-child(4n+4) { transform: rotate(2.2deg); }
.fc-card:hover { transform: rotate(0) scale(1.05) !important; z-index: 10; }

/* Gold pin */
.fc-pin {
  position: absolute; top: -15px; left: 50%; transform: translateX(-50%);
  width: 11px; height: 11px; background: #C9973A; border-radius: 50%;
  box-shadow: 0 2px 8px rgba(201,151,58,0.55), 0 0 0 2px rgba(201,151,58,0.15);
  z-index: 4;
}
.fc-pin::after {
  content: ''; position: absolute; top: 10px; left: 50%;
  transform: translateX(-50%); width: 1px; height: 8px;
  background: rgba(201,151,58,0.4);
}

/* Polaroid frame */
.fc-photo {
  background: #fff; border: 9px solid #fff; border-bottom: 52px solid #fff;
  box-shadow: 0 6px 28px rgba(0,0,0,0.12), 0 1px 4px rgba(0,0,0,0.06);
  position: relative; overflow: hidden;
}
.fc-photo > img {
  width: 100%; aspect-ratio: 3/4; object-fit: cover; display: block;
  transition: transform 0.65s cubic-bezier(0.4,0,0.2,1);
}
.fc-card:hover .fc-photo > img { transform: scale(1.1); }

/* Badge sticker */
.fc-badge {
  position: absolute; top: 7px; right: 7px;
  font-size: 7px; font-weight: 800; letter-spacing: 2px;
  text-transform: uppercase; padding: 4px 10px;
  color: #fff; z-index: 3; transform: rotate(3deg);
}
.fc-badge-sale { background: #C9973A; }
.fc-badge-new  { background: #0F2419; }
.fc-badge-hot  { background: #C9A048; }

/* White label strip at bottom */
.fc-label {
  position: absolute; bottom: 0; left: 0; right: 0; height: 52px;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 12px; pointer-events: none;
}
.fc-lname {
  font-size: 10px; font-style: italic; color: rgba(0,0,0,0.38);
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis; max-width: 66%;
}
.fc-lprice { font-size: 11px; font-weight: 700; color: #C9973A; }

/* Hover info panel — slides up smoothly from bottom */
.fc-hover {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: rgba(15,36,25,0.94); padding: 22px 16px 18px;
  display: flex; flex-direction: column; align-items: center;
  gap: 7px; text-align: center;
  transform: translateY(103%);
  transition: transform 0.38s cubic-bezier(0.4,0,0.2,1); z-index: 2;
}
.fc-card:hover .fc-hover { transform: translateY(0); }
.fc-hcat  { font-size: 7px; letter-spacing: 3.5px; text-transform: uppercase; color: #C9973A; font-weight: 700; }
.fc-hname { font-size: 13px; font-weight: 600; color: #fff; line-height: 1.3; }
.fc-hprice-row { display: flex; align-items: center; gap: 10px; }
.fc-hmrp  { font-size: 11px; color: rgba(255,255,255,0.28); text-decoration: line-through; }
.fc-hprice { font-size: 16px; font-weight: 800; color: #C9973A; }
.fc-hadd {
  background: #C9973A; color: #0F2419; border: none;
  padding: 10px 28px; font-size: 9px; font-weight: 800;
  letter-spacing: 2px; text-transform: uppercase; cursor: pointer;
  margin-top: 6px; font-family: 'Montserrat', sans-serif;
  white-space: nowrap; transition: background 0.2s, color 0.2s;
}
.fc-hadd:hover { background: #fff; }

@media (max-width: 1024px) { .fc-grid { grid-template-columns: repeat(3,1fr); } }
@media (max-width: 768px) {
  .fc-section { padding: 56px 0 72px; }
  .fc-grid { grid-template-columns: repeat(2,1fr); gap: 44px 14px; }
  .fc-title { display: none; }
  .fc-head { gap: 8px; }
}
@media (max-width: 400px) {
  .fc-filter { padding: 6px 10px; font-size: 8px; letter-spacing: 2px; }
}
/* END FEATURED COLLECTION */

/* ══════════════════════════════════════════════
   BRAND STORY — Why Zuby Duby?
   ══════════════════════════════════════════════ */
.brand-story {
  background: #0a0905;
  padding: 88px 0;
  overflow: hidden;
}
.bs-inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 48px;
  display: grid;
  grid-template-columns: 1fr 1fr 0.9fr;
  gap: 40px;
  align-items: center;
  min-height: 520px;
}

/* ── LEFT ── */
.bs-eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 22px;
}
.bs-eyebrow > span:first-child {
  font-family: 'Montserrat', sans-serif;
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 4px;
  color: #C9A048;
  text-transform: uppercase;
  white-space: nowrap;
}
.bs-eye-line {
  width: 48px;
  height: 1px;
  background: #C9A048;
  flex-shrink: 0;
}
.bs-headline {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(2.4rem, 3.5vw, 4rem);
  font-weight: 600;
  color: #fff;
  line-height: 1.12;
  margin-bottom: 22px;
}
.bs-headline-gold {
  color: #C9A048;
  font-style: italic;
}
.bs-desc {
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  color: rgba(255,255,255,0.42);
  line-height: 1.95;
  margin-bottom: 34px;
  max-width: 340px;
}
.bs-cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 12px 28px;
  border: 1px solid rgba(201,160,72,0.4);
  color: #C9A048;
  font-family: 'Montserrat', sans-serif;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 3px;
  text-decoration: none;
  text-transform: uppercase;
  transition: background 0.25s, color 0.25s;
  margin-bottom: 36px;
}
.bs-cta:hover { background: #C9A048; color: #0a0905; }
.bs-tagline {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 22px;
  font-weight: 400;
  font-style: italic;
  color: rgba(201,160,72,0.6);
  letter-spacing: 0.5px;
}

/* ── CENTER ── */
.bs-center {
  height: 540px;
  border-radius: 4px;
  overflow: hidden;
}
.bs-center img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  filter: grayscale(25%) contrast(1.08);
  transition: transform 0.6s ease;
}
.bs-center:hover img { transform: scale(1.04); }

/* ── RIGHT ── */
.bs-right {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0;
  height: 540px;
}
.bs-rc-top, .bs-rc-bot {
  overflow: hidden;
  border-radius: 4px;
  flex-shrink: 0;
}
.bs-rc-top { height: 220px; }
.bs-rc-bot { height: 190px; margin-top: auto; }
.bs-rc-top img, .bs-rc-bot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  filter: grayscale(30%) contrast(1.06);
  transition: transform 0.5s ease;
}
.bs-rc-top:hover img, .bs-rc-bot:hover img { transform: scale(1.05); }

/* Gold ZD badge — absolute, overlapping */
.bs-rc-badge {
  position: absolute;
  right: 0;
  top: 190px;
  width: 86px;
  height: 86px;
  background: #C9A048;
  border-radius: 6px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  box-shadow: 0 10px 32px rgba(0,0,0,0.5);
  z-index: 4;
}
.bs-rc-sym {
  font-family: 'Cormorant Garamond', serif;
  font-size: 26px;
  font-weight: 700;
  font-style: italic;
  color: #0a0905;
  letter-spacing: 1px;
  line-height: 1;
}
.bs-rc-est {
  font-family: 'Montserrat', sans-serif;
  font-size: 6px;
  font-weight: 800;
  letter-spacing: 2.5px;
  color: rgba(10,9,5,0.65);
  text-transform: uppercase;
}
.bs-rc-tag {
  font-family: 'Montserrat', sans-serif;
  font-size: 5.5px;
  font-weight: 600;
  letter-spacing: 1.5px;
  color: rgba(10,9,5,0.45);
  text-transform: uppercase;
  margin-top: 1px;
}

/* Quote */
.bs-quote {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 90px;
  padding: 16px 0 0;
}
.bs-qmark {
  font-family: 'Cormorant Garamond', serif;
  font-size: 48px;
  font-weight: 700;
  color: #C9A048;
  line-height: 0.6;
  display: block;
  margin-bottom: 8px;
}
.bs-quote p {
  font-family: 'Montserrat', sans-serif;
  font-size: 11.5px;
  color: rgba(255,255,255,0.5);
  line-height: 1.7;
}
.bs-qline {
  display: block;
  width: 28px;
  height: 1.5px;
  background: #C9A048;
  margin-top: 12px;
}

/* Responsive */
@media (max-width: 1024px) {
  .bs-inner { grid-template-columns: 1fr 1fr; gap: 28px; }
  .bs-right { display: none; }
}
@media (max-width: 768px) {
  .bs-inner { grid-template-columns: 1fr; min-height: auto; }
  .bs-center { height: 340px; }
}

/* ══════════════════════════════════════════════
   TESTIMONIALS — Dark Luxury Version
   ══════════════════════════════════════════════ */

/* Section wrapper — dark luxury */
.ts-section {
  background: #0a0905;
  padding: 88px 0 0;
  overflow: hidden;
  position: relative;
}
.ts-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('https://images.unsplash.com/photo-1558769132-cb1aea458c5e?w=1920&q=70');
  background-size: cover;
  background-position: center;
  opacity: 0.035;
  pointer-events: none;
}
.ts-section .section-title { margin-bottom: 52px; position: relative; z-index: 1; }
.ts-section .section-title span { color: #C9A048; }
.ts-section .section-title h2 { color: #fff; }

/* 2-column */
.ts-main {
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
  z-index: 1;
}

/* LEFT: featured review */
.ts-hero {
  background: #111009;
  padding: 64px 52px 52px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 440px;
  border-top: 1px solid rgba(201,160,72,0.14);
}
.ts-hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 3px; height: 100%;
  background: linear-gradient(to bottom, #C9A048 0%, rgba(201,160,72,0) 100%);
}

/* Large editorial quote mark */
.ts-quote-bg {
  position: absolute;
  top: -28px; left: 10px;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 280px; font-weight: 700; line-height: 1;
  color: rgba(201,160,72,0.07);
  pointer-events: none; user-select: none; z-index: 0;
}

/* Slide */
.ts-slide {
  opacity: 0; transform: translateY(14px);
  transition: opacity 0.65s ease, transform 0.65s ease;
  display: none; flex-direction: column; gap: 20px;
  position: relative; z-index: 1;
}
.ts-slide.ts-active { opacity: 1; transform: translateY(0); display: flex; }
.ts-slide-stars { color: #C9A048; font-size: 17px; }
.ts-slide-text {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(1.25rem, 1.8vw, 1.7rem);
  font-style: italic; font-weight: 400;
  color: rgba(255,255,255,0.88); line-height: 1.7;
}
.ts-slide-author { display: flex; align-items: center; gap: 14px; }
.ts-slide-avatar {
  width: 48px; height: 48px; border-radius: 4px;
  background: linear-gradient(135deg, #C9A048, #8a6a2a);
  flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Montserrat', sans-serif;
  font-size: 17px; font-weight: 700; color: #0d0c09;
}
.ts-slide-info { display: flex; flex-direction: column; gap: 2px; }
.ts-slide-name { font-family: 'Montserrat', sans-serif; font-size: 13px; font-weight: 600; color: #fff; }
.ts-slide-meta { font-size: 11px; color: rgba(255,255,255,0.35); }
.ts-slide-verified {
  display: inline-flex; align-items: center; gap: 4px;
  font-family: 'Montserrat', sans-serif;
  font-size: 8px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase;
  color: #C9A048; border: 1px solid rgba(201,160,72,0.3);
  padding: 3px 8px; border-radius: 2px; margin-top: 2px; width: fit-content;
}
/* Slide dots */
.ts-dots { display: flex; gap: 8px; margin-top: 32px; position: relative; z-index: 1; }
.ts-dot { height: 2px; width: 22px; background: rgba(201,160,72,0.2); border-radius: 1px; cursor: pointer; transition: background 0.3s, width 0.3s; }
.ts-dot.active { background: #C9A048; width: 40px; }

/* RIGHT: dark review cards */
.ts-right {
  background: #0d0c09;
  padding: 44px 44px;
  border-left: 1px solid rgba(201,160,72,0.1);
  border-top: 1px solid rgba(201,160,72,0.14);
  display: flex; flex-direction: column;
}
.ts-right-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 9px; font-weight: 700; letter-spacing: 4px;
  text-transform: uppercase; color: #C9A048; margin-bottom: 24px;
}
.ts-card {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 15px 12px; border-radius: 6px;
  border: 1px solid rgba(201,160,72,0.08); margin-bottom: 4px;
  background: rgba(255,255,255,0.02);
  transition: transform 0.25s ease, border-color 0.25s, box-shadow 0.25s, background 0.25s;
}
.ts-card:hover {
  transform: translateX(5px);
  border-color: rgba(201,160,72,0.28);
  box-shadow: 0 2px 18px rgba(201,160,72,0.08);
  background: rgba(201,160,72,0.04);
}
.ts-card-avatar {
  width: 38px; height: 38px; border-radius: 4px;
  background: linear-gradient(135deg, #C9A048, #6a4e1a);
  flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Montserrat', sans-serif; font-size: 13px; font-weight: 700; color: #0d0c09;
}
.ts-card-body { flex: 1; min-width: 0; }
.ts-card-stars { color: #C9A048; font-size: 11px; margin-bottom: 4px; }
.ts-card-name { font-family: 'Montserrat', sans-serif; font-size: 12.5px; font-weight: 600; color: rgba(255,255,255,0.85); margin-bottom: 3px; }
.ts-card-text { font-size: 12px; color: rgba(255,255,255,0.35); line-height: 1.55; }

/* STATS BAR — dark with gold dividers */
.ts-stats-bar {
  background: #0d0c09;
  border-top: 1px solid rgba(201,160,72,0.12);
  position: relative;
  z-index: 1;
}
.ts-stats-inner {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; padding: 36px 0;
}
.ts-stat-block {
  flex: 1; min-width: 130px; text-align: center;
  padding: 0 20px; border-right: 1px solid rgba(201,160,72,0.1);
}
.ts-stat-block:last-child { border-right: none; }
.ts-stat-num {
  display: block;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(1.9rem, 2.8vw, 2.8rem);
  font-weight: 600; color: #fff; line-height: 1; margin-bottom: 5px;
}
.ts-stat-lbl {
  font-family: 'Montserrat', sans-serif;
  font-size: 8.5px; font-weight: 700; letter-spacing: 3px;
  text-transform: uppercase; color: rgba(255,255,255,0.28);
}
.ts-stat-stars { color: #C9A048; font-size: 13px; display: block; margin-bottom: 3px; }
.ts-stat-base { font-size: 10px; color: rgba(255,255,255,0.22); display: block; margin-bottom: 4px; }

/* Gold shimmer CTA */
.ts-cta {
  position: relative; overflow: hidden;
  display: inline-flex; align-items: center; justify-content: center;
  padding: 14px 30px;
  background: transparent; color: #C9A048;
  text-decoration: none; white-space: nowrap;
  font-family: 'Montserrat', sans-serif;
  font-size: 9.5px; font-weight: 800; letter-spacing: 2.5px; text-transform: uppercase;
  border: 1px solid rgba(201,160,72,0.5);
  transition: background 0.3s, color 0.3s, transform 0.25s;
}
.ts-cta::after {
  content: ''; position: absolute; top: 0; left: -120%;
  width: 55%; height: 100%;
  background: linear-gradient(105deg, transparent 35%, rgba(201,160,72,0.35) 50%, transparent 65%);
  animation: tsCta 3s cubic-bezier(0.4,0,0.6,1) infinite;
}
@keyframes tsCta { 0% { left: -120%; } 100% { left: 220%; } }
.ts-cta:hover { background: #C9A048; color: #0d0c09; transform: translateY(-2px); }

/* Scroll reveal */
.ts-reveal {
  opacity: 0; transform: translateY(22px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.ts-reveal.ts-in { opacity: 1; transform: translateY(0); }

/* Responsive */
@media (max-width: 900px) {
  .ts-main { grid-template-columns: 1fr; }
  .ts-hero { padding: 48px 28px 44px; min-height: 360px; }
  .ts-right { border-left: none; border-top: 1px solid rgba(201,160,72,0.1); padding: 32px 24px; }
  .ts-stats-inner { justify-content: center; gap: 12px; }
  .ts-stat-block { flex: 0 0 42%; border-right: none; padding: 12px; }
}
@media (max-width: 480px) {
  .ts-hero { padding: 40px 20px 36px; }
  .ts-right { padding: 28px 18px; }
  .ts-stat-block { flex: 0 0 46%; }
}
/* END TESTIMONIALS */

/* ══════════════════════════════════════════
   NEW FOOTER — Bright + Premium
   ══════════════════════════════════════════ */

/* ── PRE-FOOTER: Brand CTA (forest green accent) ── */
.nf-pre {
  background: #0F2419;
  padding: 72px 0;
}
.nf-pre-inner {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 64px;
  align-items: center;
}
.nf-pre-eyebrow {
  display: block;
  font-size: 9px; font-weight: 700; letter-spacing: 4px;
  text-transform: uppercase; color: rgba(253,250,246,0.3);
  margin-bottom: 18px;
}
.nf-pre-h {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(2rem, 3.2vw, 3.2rem);
  font-weight: 300; font-style: italic;
  color: #FDFAF6; line-height: 1.25;
  letter-spacing: -0.3px;
}
.nf-pre-h em { color: #C9973A; font-style: italic; font-weight: 400; }

/* Right side */
.nf-pre-sub {
  font-size: 13px; color: rgba(253,250,246,0.48);
  line-height: 1.7; margin-bottom: 22px;
}
.nf-pre-form {
  display: flex; margin-bottom: 28px;
}
.nf-pre-form input {
  flex: 1; background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12); border-right: none;
  padding: 14px 18px; color: #FDFAF6; font-size: 13px;
  outline: none; font-family: 'Montserrat', sans-serif;
  transition: border-color 0.2s;
}
.nf-pre-form input:focus { border-color: rgba(201,151,58,0.45); }
.nf-pre-form input::placeholder { color: rgba(255,255,255,0.25); }
.nf-pre-form button {
  background: #C9973A; color: #0F2419; border: none;
  padding: 14px 26px; font-size: 11px; font-weight: 800;
  letter-spacing: 1.5px; text-transform: uppercase;
  font-family: 'Montserrat', sans-serif; cursor: pointer;
  white-space: nowrap; transition: background 0.25s;
}
.nf-pre-form button:hover { background: #d9a844; }
.nf-pre-contact {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 10px 24px; margin-bottom: 22px;
}
.nf-pre-contact span {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 11.5px; color: rgba(253,250,246,0.5);
  font-family: 'Montserrat', sans-serif;
}
.nf-pre-contact i { color: #C9973A; font-size: 12px; flex-shrink: 0; }
.nf-pre-social { display: flex; flex-wrap: wrap; gap: 8px; }
.nf-pre-social a {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 8px 16px; border: 1px solid rgba(255,255,255,0.1);
  border-radius: 20px; color: rgba(253,250,246,0.6);
  text-decoration: none; font-size: 11px;
  font-family: 'Montserrat', sans-serif;
  transition: border-color 0.25s, color 0.25s;
}
.nf-pre-social a:hover { border-color: #C9973A; color: #C9973A; }

/* ── MAIN FOOTER LINKS — cream background ── */
.nf-main {
  background: #FDFAF6;
  padding: 60px 0 52px;
}
.nf-main-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
}
/* Brand column */
.nf-logo { margin-bottom: 10px; }
.nf-logo img { height: 34px; width: auto; filter: none; }
.nf-brand-tag {
  display: block; font-size: 8px; font-weight: 700; letter-spacing: 4px;
  text-transform: uppercase; color: #C9973A; margin-bottom: 14px;
}
.nf-brand-desc {
  font-size: 12.5px; color: rgba(0,0,0,0.42);
  line-height: 1.75; max-width: 270px; margin-bottom: 0;
}

/* Link columns */
.nf-col-head {
  font-family: 'Montserrat', sans-serif;
  font-size: 9px; font-weight: 800; letter-spacing: 4px;
  text-transform: uppercase; color: #0F2419;
  margin-bottom: 22px; display: block;
}
.nf-links { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 13px; }
.nf-links li a {
  font-family: 'Montserrat', sans-serif;
  font-size: 13px; color: rgba(0,0,0,0.5);
  text-decoration: none; display: inline-flex;
  align-items: center; gap: 7px;
  transition: color 0.2s, padding-left 0.2s;
}
.nf-links li a:hover { color: #0F2419; padding-left: 4px; }
.nf-lbadge {
  font-size: 7px; font-weight: 800; letter-spacing: 1.5px;
  background: #0F2419; color: #C9973A;
  padding: 2px 7px; border-radius: 2px; flex-shrink: 0;
}
.nf-links .sale-link { color: #C9A048 !important; font-weight: 600; }

/* ── BOTTOM BAR ── */
.nf-bottom {
  background: #EDE8DF;
  border-top: 1px solid rgba(0,0,0,0.07);
}
.nf-bottom-inner {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 12px; padding: 18px 0;
}
.nf-copy {
  font-family: 'Montserrat', sans-serif;
  font-size: 10.5px; color: rgba(0,0,0,0.38);
}
.nf-copy a { color: rgba(0,0,0,0.4); text-decoration: none; }
.nf-copy a:hover { color: #0F2419; }
.nf-pay { display: flex; align-items: center; gap: 7px; flex-wrap: wrap; }
.nf-pay span {
  font-family: 'Montserrat', sans-serif;
  font-size: 8px; font-weight: 800; letter-spacing: 1px;
  color: rgba(0,0,0,0.45); background: #fff;
  border: 1px solid rgba(0,0,0,0.1);
  padding: 5px 10px; border-radius: 3px;
}

/* Responsive */
@media (max-width: 1024px) {
  .nf-main-inner { grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 32px; }
}
@media (max-width: 820px) {
  .nf-pre-inner { grid-template-columns: 1fr; gap: 36px; }
  .nf-pre-h { font-size: 2rem; }
  .nf-main-inner { grid-template-columns: 1fr 1fr; gap: 36px 24px; }
  .nf-col-brand { grid-column: 1 / -1; }
  .nf-brand-desc { max-width: 100%; }
}
@media (max-width: 500px) {
  .nf-pre { padding: 48px 0; }
  .nf-pre-contact { grid-template-columns: 1fr; gap: 10px; }
  .nf-main-inner { grid-template-columns: 1fr 1fr; gap: 28px 16px; }
  .nf-bottom-inner { justify-content: center; text-align: center; }
}
/* END NEW FOOTER */

/* ══════════════════════════════════════════
   TRUST STRIP — below hero
   ══════════════════════════════════════════ */
.tr-strip {
  background: #0d0c09;
  border-top: 1px solid rgba(201,160,72,0.14);
  border-bottom: 1px solid rgba(201,160,72,0.14);
  padding: 0;
}
.tr-grid {
  display: flex;
  align-items: center;
  justify-content: center;
}
.tr-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 22px 0;
  flex: 1;
  justify-content: center;
}
.tr-divider {
  width: 1px;
  height: 36px;
  background: rgba(201,151,58,0.22);
  flex-shrink: 0;
}
.tr-icon {
  width: 38px;
  height: 38px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #C9973A;
}
.tr-icon svg {
  width: 28px;
  height: 28px;
  stroke: #C9973A;
}
.tr-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.tr-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 12.5px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.2px;
  white-space: nowrap;
}
.tr-sub {
  font-family: 'Montserrat', sans-serif;
  font-size: 10.5px;
  font-weight: 400;
  color: rgba(255,255,255,0.38);
  white-space: nowrap;
}
@media (max-width: 700px) {
  .tr-grid { flex-wrap: wrap; gap: 0; }
  .tr-item { flex: 0 0 50%; justify-content: flex-start; padding: 16px 20px; border-bottom: 1px solid rgba(201,151,58,0.12); }
  .tr-divider { display: none; }
  .tr-item:nth-child(odd) { border-right: 1px solid rgba(201,151,58,0.12); }
  .tr-item:nth-last-child(-n+2) { border-bottom: none; }
  .tr-title { font-size: 11.5px; }
  .tr-sub { font-size: 10px; }
}
@media (max-width: 400px) {
  .tr-item { flex: 0 0 100%; border-right: none !important; }
  .tr-item:nth-last-child(-n+2) { border-bottom: 1px solid rgba(201,151,58,0.12); }
  .tr-item:last-child { border-bottom: none; }
}
/* END TRUST STRIP */

/* ══════════════════════════════════════════
   NEWSLETTER SECTION
   ══════════════════════════════════════════ */
.nl-section {
  background: #0e0d0a;
  padding: 60px 40px;
}
.nl-wrap {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 48px;
  align-items: stretch;
  background: #131209;
  border: 1px solid rgba(201,160,72,0.14);
  border-radius: 20px;
  overflow: hidden;
}

/* ── LEFT ── */
.nl-left {
  padding: 56px 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.nl-eyebrow {
  font-family: 'Montserrat', sans-serif;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 4px;
  color: #C9A048;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.nl-title {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(1.9rem, 3vw, 2.8rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.18;
  margin-bottom: 14px;
}
.nl-desc {
  font-size: 13.5px;
  color: rgba(255,255,255,0.48);
  line-height: 1.75;
  margin-bottom: 28px;
  max-width: 400px;
}
.nl-form {
  display: flex;
  margin-bottom: 36px;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 6px;
  overflow: hidden;
  max-width: 460px;
}
.nl-form input {
  flex: 1;
  background: rgba(255,255,255,0.05);
  border: none;
  padding: 14px 18px;
  color: #fff;
  font-size: 13px;
  font-family: 'Montserrat', sans-serif;
  outline: none;
}
.nl-form input::placeholder { color: rgba(255,255,255,0.3); }
.nl-form button {
  background: #C9A048;
  color: #0e0d0a;
  border: none;
  padding: 14px 24px;
  font-family: 'Montserrat', sans-serif;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1.5px;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.25s;
}
.nl-form button:hover { background: #d9b055; }

/* Perks */
.nl-perks {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.nl-perk {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.nl-perk-icon {
  width: 18px;
  height: 18px;
  stroke: #C9A048;
  flex-shrink: 0;
  margin-top: 2px;
}
.nl-perk-title {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-size: 9.5px;
  font-weight: 800;
  letter-spacing: 2px;
  color: #fff;
  text-transform: uppercase;
  margin-bottom: 3px;
}
.nl-perk-sub {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-size: 11.5px;
  color: rgba(255,255,255,0.38);
}

/* ── RIGHT PANELS ── */
.nl-panels {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  height: 100%;
  min-height: 380px;
}
.nl-panel {
  position: relative;
  background-size: cover;
  background-position: center top;
  overflow: hidden;
  cursor: pointer;
  transition: flex 0.4s ease;
}
.nl-panel + .nl-panel { border-left: 1px solid rgba(0,0,0,0.4); }
.nl-panel-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.35) 50%, rgba(0,0,0,0.1) 100%);
  transition: background 0.3s;
}
.nl-panel:hover .nl-panel-overlay {
  background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.5) 60%, rgba(0,0,0,0.2) 100%);
}
.nl-panel-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px 16px;
  text-align: center;
  z-index: 2;
}
.nl-panel-icon {
  width: 46px;
  height: 46px;
  border: 1.5px solid #C9A048;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
  background: rgba(13,12,9,0.5);
}
.nl-panel-icon svg {
  width: 20px;
  height: 20px;
  stroke: #C9A048;
}
.nl-panel-title {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 2.5px;
  color: #fff;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.nl-panel-sub {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  color: rgba(255,255,255,0.55);
  line-height: 1.5;
}

/* ── DARK FOOTER ── */
.dk-footer {
  background: #0a0905;
  border-top: 1px solid rgba(201,160,72,0.1);
}
.dk-footer-main { padding: 64px 0 48px; }
.dk-footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr 1.4fr;
  gap: 40px;
}

/* Brand */
.dk-brand-name {
  font-family: 'Montserrat', sans-serif;
  font-size: 22px;
  font-weight: 900;
  color: #C9A048;
  letter-spacing: 3px;
  margin-bottom: 14px;
}
.dk-brand-desc {
  font-size: 12.5px;
  color: rgba(255,255,255,0.38);
  line-height: 1.8;
  margin-bottom: 22px;
}
.dk-socials {
  display: flex;
  gap: 10px;
}
.dk-socials a {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.55);
  font-size: 13px;
  text-decoration: none;
  transition: border-color 0.25s, color 0.25s, background 0.25s;
}
.dk-socials a:hover { border-color: #C9A048; color: #C9A048; }

/* Columns */
.dk-col-head {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 3.5px;
  color: #C9A048;
  text-transform: uppercase;
  margin-bottom: 22px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(201,160,72,0.18);
}
.dk-col-links {
  list-style: none;
  padding: 0; margin: 0;
  display: flex;
  flex-direction: column;
  gap: 11px;
}
.dk-col-links a {
  font-family: 'Montserrat', sans-serif;
  font-size: 12.5px;
  color: rgba(255,255,255,0.45);
  text-decoration: none;
  transition: color 0.2s, padding-left 0.2s;
}
.dk-col-links a:hover { color: #fff; padding-left: 5px; }

/* Newsletter mini col */
.dk-nl-desc {
  font-size: 12px;
  color: rgba(255,255,255,0.38);
  line-height: 1.7;
  margin-bottom: 16px;
}
.dk-nl-form {
  display: flex;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 6px;
  overflow: hidden;
  margin-bottom: 20px;
}
.dk-nl-form input {
  flex: 1;
  background: rgba(255,255,255,0.05);
  border: none;
  padding: 11px 14px;
  color: #fff;
  font-size: 12px;
  font-family: 'Montserrat', sans-serif;
  outline: none;
  min-width: 0;
}
.dk-nl-form input::placeholder { color: rgba(255,255,255,0.25); }
.dk-nl-form button {
  background: #C9A048;
  color: #0a0905;
  border: none;
  padding: 11px 16px;
  cursor: pointer;
  font-size: 13px;
  transition: background 0.25s;
}
.dk-nl-form button:hover { background: #d9b055; }

/* Payment badges */
.dk-payments {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.dk-payments span {
  font-family: 'Montserrat', sans-serif;
  font-size: 7.5px;
  font-weight: 800;
  letter-spacing: 0.8px;
  color: rgba(255,255,255,0.4);
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 4px 9px;
  border-radius: 3px;
}

/* Bottom bar */
.dk-footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 18px 0;
}
.dk-footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}
.dk-footer-bottom-inner p {
  font-family: 'Montserrat', sans-serif;
  font-size: 10.5px;
  color: rgba(255,255,255,0.28);
}
.dk-bottom-links {
  display: flex;
  align-items: center;
  gap: 10px;
}
.dk-bottom-links a {
  font-family: 'Montserrat', sans-serif;
  font-size: 10.5px;
  color: rgba(255,255,255,0.35);
  text-decoration: none;
  transition: color 0.2s;
}
.dk-bottom-links a:hover { color: #C9A048; }
.dk-bottom-links span { color: rgba(255,255,255,0.15); }

/* Responsive */
@media (max-width: 1024px) {
  .dk-footer-grid { grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 28px; }
  .dk-nl-col { grid-column: 1 / -1; }
  .dk-payments { flex-direction: row; }
}
@media (max-width: 820px) {
  .nl-wrap { grid-template-columns: 1fr; }
  .nl-panels { min-height: 280px; }
  .nl-left { padding: 40px 28px; }
  .dk-footer-grid { grid-template-columns: 1fr 1fr; gap: 28px 20px; }
  .dk-brand { grid-column: 1 / -1; }
}
@media (max-width: 540px) {
  .nl-section { padding: 32px 16px; }
  .nl-left { padding: 32px 20px; }
  .nl-panels { grid-template-columns: 1fr; min-height: auto; }
  .nl-panel { min-height: 180px; }
  .dk-footer-grid { grid-template-columns: 1fr 1fr; }
  .dk-footer-bottom-inner { justify-content: center; text-align: center; }
  .dk-bottom-links { flex-wrap: wrap; justify-content: center; }
}
/* END NEWSLETTER + DARK FOOTER */

/* ══════════════════════════════════════════
   HERO V3 — Luxury Dark Two-Column
   ══════════════════════════════════════════ */
.hero-v3 {
  background-color: #0d0c09;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 100px;
  padding-bottom: 0;
  overflow: hidden;
  position: relative;
}

/* ── SLIDER BACKGROUNDS ── */
.hv3-slides {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hv3-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center top;
  opacity: 0;
  transition: opacity 1.6s ease-in-out;
}
.hv3-slide.active {
  opacity: 1;
}
.hv3-slide-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      to right,
      rgba(9,8,5,0.97) 0%,
      rgba(9,8,5,0.82) 38%,
      rgba(9,8,5,0.32) 68%,
      rgba(9,8,5,0.10) 100%
    ),
    linear-gradient(
      to bottom,
      rgba(9,8,5,0.55) 0%,
      transparent 18%,
      transparent 72%,
      rgba(9,8,5,0.80) 100%
    );
  z-index: 1;
  pointer-events: none;
}
/* Slide dots */
.hv3-dots {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 3;
}
.hv3-dot {
  width: 22px;
  height: 2px;
  background: rgba(255,255,255,0.25);
  border-radius: 2px;
  cursor: pointer;
  transition: background 0.3s, width 0.3s;
}
.hv3-dot.active {
  background: #C9A048;
  width: 38px;
}

.hv3-inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 32px;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto 1fr;
  gap: 0;
  align-items: flex-end;
  min-height: calc(100vh - 100px);
  position: relative;
  z-index: 1;
}

/* ── PER-SLIDE CATEGORY CONTEXT ── */
.hv3-slide-ctx-wrap {
  grid-column: 1 / -1;
  padding: 18px 0 20px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  margin-bottom: 0;
}
.hv3-sctx {
  display: none;
  align-items: center;
  gap: 28px;
}
.hv3-sctx.active { display: flex; }
.hv3-sctx-item {
  display: flex;
  flex-direction: column;
  gap: 3px;
  text-decoration: none;
  transition: opacity 0.2s;
}
.hv3-sctx-item:hover { opacity: 0.7; }
.hv3-sctx-name {
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 4px;
  color: rgba(255,255,255,0.9);
  text-transform: uppercase;
}
.hv3-sctx-highlight .hv3-sctx-name { color: #C9A048; }
.hv3-sctx-sub {
  font-family: 'Montserrat', sans-serif;
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 2px;
  color: rgba(255,255,255,0.3);
  text-transform: uppercase;
}
.hv3-sctx-div {
  width: 1px;
  height: 28px;
  background: rgba(255,255,255,0.12);
  flex-shrink: 0;
}

/* ── "WEAR WHAT" tagline above heading ── */
.hv3-wear-line {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 13px;
  font-weight: 400;
  font-style: italic;
  letter-spacing: 2.5px;
  color: rgba(255,255,255,0.38);
  margin-bottom: 18px;
}

/* ── LEFT ── */
.hv3-left {
  padding: 48px 0 64px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hv3-eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: 'Montserrat', sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 3.5px;
  color: #C9A048;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.hv3-eyeline {
  flex: 0 0 48px;
  height: 1px;
  background: linear-gradient(to right, #C9A048, transparent);
}

.hv3-headline {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin: 0 0 24px;
  line-height: 1;
}
.hv3-upto {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(2.8rem, 5.5vw, 5.2rem);
  font-weight: 800;
  color: #fff;
  letter-spacing: -1px;
  line-height: 1.05;
}
.hv3-pct {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(3.2rem, 6.5vw, 6.2rem);
  font-weight: 900;
  color: #C9A048;
  letter-spacing: -2px;
  line-height: 1;
}
.hv3-script {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(2.4rem, 4.8vw, 4.6rem);
  font-weight: 600;
  font-style: italic;
  color: #D4B068;
  letter-spacing: 0.5px;
  line-height: 1.1;
  margin-top: 4px;
}

.hv3-desc {
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  color: rgba(255,255,255,0.52);
  line-height: 1.85;
  margin-bottom: 36px;
}

.hv3-cta {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 16px 36px;
  background: rgba(201,160,72,0.12);
  border: 1px solid #C9A048;
  color: #C9A048;
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-decoration: none;
  text-transform: uppercase;
  border-radius: 40px;
  transition: background 0.3s, color 0.3s;
  width: fit-content;
  margin-bottom: 52px;
}
.hv3-cta:hover {
  background: #C9A048;
  color: #0d0c09;
}
.hv3-arrow {
  font-size: 16px;
  transition: transform 0.3s;
}
.hv3-cta:hover .hv3-arrow { transform: translateX(4px); }

/* Trust badges */
.hv3-trust {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}
.hv3-ti {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.hv3-ti svg {
  width: 22px;
  height: 22px;
  stroke: rgba(201,160,72,0.75);
}
.hv3-ti span {
  font-family: 'Montserrat', sans-serif;
  font-size: 8.5px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.38);
  text-align: center;
  line-height: 1.5;
}

/* ── RIGHT ── */
.hv3-right {
  position: relative;
  overflow: hidden;
  min-height: calc(100vh - 100px);
}

/* Hidden — slider provides the background now */
.hv3-model-bg { display: none; }
.hv3-model-fade { display: none; }

/* NEW ARRIVALS badge */
.hv3-new-badge {
  position: absolute;
  top: 60px;
  right: 24px;
  width: 82px;
  height: 82px;
  border: 1.5px solid #C9A048;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1px;
  background: rgba(13,12,9,0.7);
  backdrop-filter: blur(8px);
  z-index: 3;
}
.hv3-nbstar {
  font-size: 10px;
  color: #C9A048;
  line-height: 1;
}
.hv3-nbtitle {
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 800;
  color: #fff;
  letter-spacing: 1px;
  line-height: 1.1;
}
.hv3-nbsub {
  font-family: 'Montserrat', sans-serif;
  font-size: 7.5px;
  font-weight: 600;
  color: rgba(255,255,255,0.55);
  letter-spacing: 2px;
  line-height: 1;
}

/* TRENDING NOW card */
.hv3-trending {
  position: absolute;
  bottom: 40px;
  right: 0;
  background: rgba(18,16,11,0.82);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(201,160,72,0.18);
  border-radius: 14px;
  padding: 16px 18px;
  min-width: 260px;
  z-index: 3;
}
.hv3-trend-top {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 6px;
}
.hv3-trend-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 2.5px;
  color: #C9A048;
  text-transform: uppercase;
  white-space: nowrap;
}
.hv3-trend-line {
  flex: 1;
  height: 1px;
  background: rgba(201,160,72,0.25);
}
.hv3-trend-text {
  font-family: 'Montserrat', sans-serif;
  font-size: 11.5px;
  color: rgba(255,255,255,0.6);
  line-height: 1.6;
  margin-bottom: 12px;
}
.hv3-trend-imgs {
  display: flex;
  align-items: center;
  gap: 6px;
}
.hv3-trend-imgs img {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  object-fit: cover;
  border: 1.5px solid rgba(255,255,255,0.12);
}
.hv3-trend-arrow {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(201,160,72,0.4);
  color: #C9A048;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  text-decoration: none;
  margin-left: auto;
  transition: background 0.25s, color 0.25s;
}
.hv3-trend-arrow:hover {
  background: #C9A048;
  color: #0d0c09;
}

/* Responsive */
@media (max-width: 900px) {
  .hero-v3 { padding-top: 100px; }
  .hv3-inner {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto 1fr;
    min-height: auto;
    padding: 0 20px;
  }
  .hv3-sctx-sub { display: none; }
  .hv3-right { min-height: 60vw; }
  .hv3-model-fade {
    background:
      linear-gradient(to bottom, rgba(0,0,0,0.4) 0%, transparent 25%),
      linear-gradient(to top, #0d0c09 0%, rgba(13,12,9,0.4) 20%, transparent 40%);
  }
  .hv3-new-badge { top: 16px; right: 16px; }
  .hv3-trending { bottom: 16px; right: 0; left: 0; min-width: auto; }
  .hv3-left { padding: 40px 0 32px; }
}
@media (max-width: 540px) {
  .hv3-trust { gap: 18px; }
  .hv3-cta { padding: 14px 26px; font-size: 10px; }
  .hv3-trend-imgs img { width: 36px; height: 36px; }
}
/* END HERO V3 */

/* ══════════════════════════════════════════
   HERO — NEW TYPOGRAPHY DESIGN
   ══════════════════════════════════════════ */

/* Update overlay for full image visibility */
.hv3-slide-overlay {
  background:
    linear-gradient(to right,
      rgba(5,5,3,0.82) 0%,
      rgba(5,5,3,0.55) 40%,
      rgba(5,5,3,0.18) 72%,
      rgba(5,5,3,0.06) 100%
    ),
    linear-gradient(to bottom,
      rgba(0,0,0,0.52) 0%,
      transparent 22%,
      transparent 68%,
      rgba(0,0,0,0.62) 100%
    ) !important;
}

/* Main content container */
.hv3-content {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 130px 64px 60px;
  max-width: 860px;
}

/* ── DISPLAY TYPOGRAPHY ── */
.hv3-typo {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 30px;
  line-height: 0.92;
}

/* Line 1: WEAR — outlined serif, ghost */
.hv3-line1 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(3.8rem, 7.5vw, 8.5rem);
  font-weight: 700;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(255,255,255,0.28);
  letter-spacing: 8px;
  text-transform: uppercase;
  line-height: 1;
  display: block;
}

/* Line 2: WHAT SETS — massive solid white */
.hv3-line2 {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(4.2rem, 8.8vw, 10rem);
  font-weight: 900;
  color: #fff;
  letter-spacing: -2px;
  text-transform: uppercase;
  line-height: 0.9;
  display: block;
}

/* Line 3: YOU APART. — gold outlined */
.hv3-line3 {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(3.4rem, 7vw, 8rem);
  font-weight: 800;
  color: transparent;
  -webkit-text-stroke: 1.5px #C9A048;
  letter-spacing: -1px;
  text-transform: uppercase;
  line-height: 1.05;
  display: block;
}

/* ── SUBTITLE ── */
.hv3-subinfo {
  border-left: 2px solid rgba(255,255,255,0.25);
  padding-left: 16px;
  margin-bottom: 34px;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.hv3-sub1 {
  font-family: 'Montserrat', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 3.5px;
  color: rgba(255,255,255,0.65);
  text-transform: uppercase;
}
.hv3-sub2 {
  font-family: 'Montserrat', sans-serif;
  font-size: 9.5px;
  font-weight: 500;
  letter-spacing: 2.5px;
  color: rgba(255,255,255,0.32);
  text-transform: uppercase;
}

/* ── BUTTONS ── */
.hv3-btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.hv3-btn-primary {
  display: inline-flex;
  align-items: center;
  padding: 14px 34px;
  background: #C9A048;
  color: #0d0c09;
  font-family: 'Montserrat', sans-serif;
  font-size: 9.5px;
  font-weight: 800;
  letter-spacing: 2.5px;
  text-decoration: none;
  text-transform: uppercase;
  border: 1.5px solid #C9A048;
  transition: background 0.28s, color 0.28s;
}
.hv3-btn-primary:hover {
  background: transparent;
  color: #C9A048;
}
.hv3-btn-secondary {
  display: inline-flex;
  align-items: center;
  padding: 14px 34px;
  background: transparent;
  color: rgba(255,255,255,0.75);
  font-family: 'Montserrat', sans-serif;
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-decoration: none;
  text-transform: uppercase;
  border: 1.5px solid rgba(255,255,255,0.28);
  transition: border-color 0.28s, color 0.28s;
}
.hv3-btn-secondary:hover {
  border-color: rgba(255,255,255,0.7);
  color: #fff;
}

/* ── STATS — bottom right ── */
.hv3-hero-stats {
  position: absolute;
  bottom: 48px;
  right: 60px;
  display: flex;
  gap: 36px;
  z-index: 3;
}
.hv3-stat {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 3px;
}
.hv3-stat-num {
  font-family: 'Montserrat', sans-serif;
  font-size: 20px;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.5px;
  line-height: 1;
}
.hv3-stat-gold { color: #C9A048 !important; }
.hv3-stat-lbl {
  font-family: 'Montserrat', sans-serif;
  font-size: 7.5px;
  font-weight: 700;
  letter-spacing: 2.5px;
  color: rgba(255,255,255,0.32);
  text-transform: uppercase;
}

/* Responsive */
@media (max-width: 900px) {
  .hv3-content { padding: 110px 32px 80px; max-width: 100%; }
  .hv3-hero-stats { right: 24px; bottom: 32px; gap: 22px; }
  .hv3-stat-num { font-size: 16px; }
}
@media (max-width: 540px) {
  .hv3-content { padding: 100px 24px 100px; }
  .hv3-line1 { -webkit-text-stroke-width: 1px; }
  .hv3-line3 { -webkit-text-stroke-width: 1px; }
  .hv3-btns { flex-direction: column; gap: 10px; }
  .hv3-btn-primary, .hv3-btn-secondary { justify-content: center; }
  .hv3-hero-stats { gap: 16px; bottom: 24px; right: 20px; }
}

/* ══════════════════════════════════════════
   HERO OVERLAY NAVBAR — transparent on hero
   ══════════════════════════════════════════ */

/* Top dark-to-transparent gradient on hero so white nav text is readable */
.hero-v3 {
  position: relative !important;
}
.hero-v3::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 160px;
  background: linear-gradient(to bottom, rgba(0,0,0,0.45) 0%, transparent 100%);
  z-index: 2;
  pointer-events: none;
}

/* Transparent state — only when NOT scrolled (.active) */
.header.hero-overlay:not(.active) {
  background: transparent !important;
  box-shadow: none !important;
  border: none !important;
}
.header.hero-overlay:not(.active) .hdr-top {
  border-bottom: 1px solid rgba(255,255,255,0.1) !important;
}

/* Logo: show white, hide dark */
.header.hero-overlay:not(.active) .hdr-top-inner .logo .white-logo {
  display: block !important;
}
.header.hero-overlay:not(.active) .hdr-top-inner .logo .dark-logo {
  display: none !important;
}

/* Search bar */
.header.hero-overlay:not(.active) .header-search {
  background: rgba(255,255,255,0.1) !important;
  border: 1px solid rgba(255,255,255,0.18) !important;
}
.header.hero-overlay:not(.active) .header-search input {
  color: #fff !important;
}
.header.hero-overlay:not(.active) .header-search input::placeholder {
  color: rgba(255,255,255,0.4) !important;
}
.header.hero-overlay:not(.active) .header-search i {
  color: rgba(255,255,255,0.6) !important;
}

/* Icons: cart, wishlist, user */
.header.hero-overlay:not(.active) .hdr-icons a {
  color: rgba(255,255,255,0.9) !important;
}
.header.hero-overlay:not(.active) .hdr-icons a:hover {
  color: #fff !important;
}
.header.hero-overlay:not(.active) .hdr-badge {
  background: #C9973A !important;
  color: #fff !important;
}

/* Mobile hamburger */
.header.hero-overlay:not(.active) #menuIcon i {
  color: #fff !important;
}

/* Announcement bar — full gold on hero */
.header.hero-overlay:not(.active) .announce-bar {
  background: #C9973A !important;
}

/* Nav row 2 — transparent */
.header.hero-overlay:not(.active) .hdr-nav {
  background: rgba(0,0,0,0.28) !important;
  border: none !important;
}
.header.hero-overlay:not(.active) .hdr-nav .nav-links > li > a {
  color: rgba(255,255,255,0.92) !important;
}
.header.hero-overlay:not(.active) .hdr-nav .nav-links > li > a:hover {
  color: #fff !important;
  background: rgba(255,255,255,0.08) !important;
  border-bottom-color: transparent !important;
}
.header.hero-overlay:not(.active) .hdr-nav .nav-links > li > a .nav-arr {
  color: rgba(255,255,255,0.6) !important;
}
/* New Arrivals hot badge */
.header.hero-overlay:not(.active) .nav-hot::before {
  background: #C9973A !important;
  color: #0F2419 !important;
}

/* ════════════════════════════════════════════════════════════
   FRONTEND STABILIZATION LAYER
   Root-cause fixes for header overlap, sticky positioning,
   z-index conflicts, mobile layout, and image overflow.
   ════════════════════════════════════════════════════════════ */

/* ── CSS Custom Properties ── */
:root {
  --hdr-h:     142px;   /* desktop: hdr-top ~62px + hdr-nav ~45px + announce-bar 34px + 1px */
  --hdr-h-tab:  90px;   /* tablet/mobile ≤991px: hdr-top-mobile ~56px + announce-bar 34px */
}

/* ── FIX: Remove backdrop-filter from header — it was causing GPU layer conflicts
   that made the mobile nav drawer appear blurry. The dark children (hdr-top,
   hdr-nav) already provide full visual opacity; the blur is not needed. ── */
.header,
.header.active {
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
}

/* ── FIX: Mobile nav drawer — polished scrollbar ── */
@media (max-width: 991px) {
  .nav-links::-webkit-scrollbar { width: 3px; }
  .nav-links::-webkit-scrollbar-track { background: transparent; }
  .nav-links::-webkit-scrollbar-thumb {
    background: rgba(201,160,72,0.3);
    border-radius: 3px;
  }
  /* Nav drawer close hint (X icon shows in menuIcon when open) */
  .header.menu-open #menuIcon {
    color: #C9A048 !important;
  }
  /* Ensure mobile header bar is always fully opaque on mobile */
  .hdr-top {
    background: #0a0905 !important;
  }
}

/* ── Global: prevent horizontal scroll glitches ── */
html { overflow-x: hidden !important; }
body { overflow-x: hidden !important; }

/* ── Anchor scroll offset — sections with IDs clear the fixed header ── */
[id]:not(body):not(html) {
  scroll-margin-top: var(--hdr-h);
}
@media (max-width: 991px) {
  [id]:not(body):not(html) { scroll-margin-top: var(--hdr-h-tab); }
}

/* ── FIX 1: Category hero padding — was 110px, header is 142px ─────────
   Applies to bestsellers, category, new-arrivals pages (all use .cat-hero)   */
.cat-hero {
  padding-top: 160px !important;
}
@media (max-width: 991px) {
  .cat-hero { padding-top: 112px !important; }
}
@media (max-width: 600px) {
  .cat-hero {
    padding-top: 105px !important;
    padding-bottom: 36px !important;
  }
}

/* ── FIX 2: Subcategory pill bar sticky position — was top:62px ── */
.subcat-bar {
  top: var(--hdr-h) !important;
}
@media (max-width: 991px) {
  .subcat-bar { top: var(--hdr-h-tab) !important; }
}

/* ── FIX 3: Filter sidebar sticky position — was top:110px ── */
.filter-sidebar {
  top: calc(var(--hdr-h) + 10px) !important;
  max-height: calc(100vh - var(--hdr-h) - 20px) !important;
  overflow-y: auto !important;
}
/* Sidebar scrollbar styling */
.filter-sidebar::-webkit-scrollbar { width: 4px; }
.filter-sidebar::-webkit-scrollbar-track { background: transparent; }
.filter-sidebar::-webkit-scrollbar-thumb {
  background: rgba(201,160,72,0.25);
  border-radius: 4px;
}

/* ── FIX 4: Hero V3 content padding — was 130px, header is 142px ── */
.hv3-content {
  padding-top: 165px !important;
}
@media (max-width: 900px) {
  .hv3-content { padding-top: 110px !important; }
}
@media (max-width: 540px) {
  .hv3-content { padding-top: 105px !important; }
}

/* ── FIX 5: Mobile filter button — raised above floating WhatsApp widget ── */
.mob-filter-btn {
  bottom: 90px !important;
}

/* ── FIX 6: Result card layout stability (flex column) ── */
.rc {
  display: flex !important;
  flex-direction: column !important;
}
.rc-body {
  flex: 1 !important;
  display: flex !important;
  flex-direction: column !important;
}
.rc-add { margin-top: auto !important; }

/* ── FIX 7: Bestsellers grid — small phone (≤480px) ── */
@media (max-width: 480px) {
  .results-grid,
  .results-grid.grid-4 {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 10px !important;
  }
  .rc-body { padding: 10px 10px 12px !important; }
  .rc-name { font-size: 12px !important; margin-bottom: 4px !important; }
  .rc-price { font-size: 14px !important; }
  .rc-mrp  { font-size: 11px !important; }
  .rc-disc { font-size: 10px !important; padding: 1px 6px !important; }
  .rc-add  { height: 36px !important; font-size: 11px !important; margin-top: 6px !important; }
  .rc-sz   { width: 26px !important; height: 26px !important; font-size: 10px !important; }
  .rc-sizes { gap: 4px !important; }
  /* Results topbar compact */
  .results-topbar { flex-direction: column !important; align-items: flex-start !important; gap: 6px !important; }
  .view-toggle { display: none !important; }
}

/* ── FIX 8: Category layout — tablet (769–1024px) tighter sidebar ── */
@media (max-width: 1024px) and (min-width: 769px) {
  .cat-layout {
    grid-template-columns: 220px 1fr !important;
    gap: 22px !important;
  }
}

/* ── FIX 9: Image overflow prevention ── */
img { max-width: 100%; }
.rc-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ── FIX 10: Filter sidebar visual polish ── */
.fs-section:last-child { border-bottom: none !important; }
.clr-pill .dot { flex-shrink: 0 !important; }

/* ── FIX 11: Active filter chips ── */
.af-chip {
  align-items: center !important;
  white-space: nowrap !important;
}

/* ── FIX 12: Brand story — single column on tablet ── */
@media (max-width: 860px) {
  .bs-inner {
    grid-template-columns: 1fr !important;
    padding: 0 20px !important;
    min-height: auto !important;
    gap: 32px !important;
  }
  .bs-center { height: 360px !important; }
  .bs-right  { display: none !important; }
}

/* ── FIX 13: Trust section — vertical on phones ── */
@media (max-width: 600px) {
  .trust-grid {
    flex-direction: column !important;
    gap: 28px !important;
    align-items: flex-start !important;
    padding: 0 4px !important;
  }
}

/* ── FIX 14: Newsletter section overflow prevention ── */
.nl-section { overflow: hidden !important; }

/* ── FIX 15: Dark footer — 2-col on small phones ── */
@media (max-width: 540px) {
  .dk-footer-grid {
    grid-template-columns: 1fr 1fr !important;
    gap: 28px 16px !important;
  }
  .dk-brand,
  .dk-nl-col { grid-column: 1 / -1 !important; }
}

/* ── FIX 16: Announce bar text — more readable on phones ── */
@media (max-width: 600px) {
  .announce-track > span {
    padding: 0 14px !important;
    font-size: 9px !important;
    letter-spacing: 1.2px !important;
  }
}

/* ── FIX 17: Stats counter size on phones ── */
@media (max-width: 480px) {
  .counter { font-size: clamp(38px, 10vw, 56px) !important; }
}

/* ── FIX 18: Hero breadcrumbs above overlay ── */
.au-breadcrumb,
.ct-breadcrumb { z-index: 3 !important; }

/* ── FIX 19: Page hero — global min-height on desktop ── */
@media (min-width: 992px) {
  .au-hero  { min-height: 62vh !important; }
  .ct-hero  { min-height: 50vh !important; }
}

/* ── FIX 20: Section spacing — prevent section collapse ── */
.au-story,
.au-values,
.au-timeline,
.au-team,
.au-promise,
.ct-info,
.ct-main { position: relative; z-index: 1; }

/* END STABILIZATION LAYER */

/* Smooth transition into white on scroll */
.header {
  transition: background 0.35s ease, box-shadow 0.35s ease !important;
}
/* END HERO OVERLAY NAVBAR */

/* ═══════════════════════════════════════════════════════════
   GLOBAL DARK THEME OVERRIDES — ZubyDuby Production
   ═══════════════════════════════════════════════════════════ */

/* --- BUTTONS --- */
.btn-primary { background: #C9A048!important; color: #0d0c09!important; }
.btn-primary:hover { background: #b8903d!important; }
.btn-outline { border: 1px solid rgba(255,255,255,0.4)!important; color: #fff!important; }
.btn-outline:hover { background: rgba(255,255,255,0.1)!important; color: #fff!important; }

/* --- OLD DROPDOWNS (pages using .submenu/.submenu-two) --- */
.submenu, .submenu-two {
  background: #111009!important;
  border: 1px solid rgba(201,160,72,0.12)!important;
  box-shadow: 0 8px 30px rgba(0,0,0,0.5)!important;
}
.submenu li a, .submenu-two li a { color: rgba(255,255,255,0.8)!important; }
.submenu li:hover>a, .submenu-two li:hover>a {
  background: rgba(201,160,72,0.08)!important;
  color: #C9A048!important;
  padding-left: 25px;
}

/* --- PRODUCT CARDS (global .product-card) --- */
.product-card { background: #111009!important; border: 1px solid rgba(255,255,255,0.07)!important; }
.product-card:hover { border-color: rgba(201,160,72,0.3)!important; box-shadow: 0 8px 30px rgba(201,160,72,0.1)!important; }
.product-card .product-image { background: #0a0905!important; }
.product-card h3, .product-card .product-title { color: #fff!important; }
.product-card .product-price, .product-card .price { color: #fff!important; }
.product-card .product-category { color: rgba(255,255,255,0.5)!important; }
.product-card .cart-btn { background: #0a0905!important; color: rgba(255,255,255,0.6)!important; border: none!important; }
.product-card .cart-btn:hover { background: #C9A048!important; color: #0d0c09!important; }

/* --- SECTION TITLES --- */
.section-title span { color: #C9A048!important; }
.section-title h2 { color: #fff!important; }

/* --- NEWSLETTER SECTION (.nl-section) --- */
.nl-section { background: #111009!important; }
.nl-section h2 { color: #fff!important; }
.nl-section p { color: rgba(255,255,255,0.6)!important; }
.nl-input { background: #0d0c09!important; border: 1px solid rgba(255,255,255,0.12)!important; color: #fff!important; }
.nl-input::placeholder { color: rgba(255,255,255,0.35)!important; }
.nl-btn { background: #C9A048!important; color: #0d0c09!important; }

/* --- FOOTER (.dk-footer) --- */
.dk-footer { background: #0a0905!important; color: rgba(255,255,255,0.7)!important; }
.dk-footer h4 { color: #fff!important; }
.dk-footer a { color: rgba(255,255,255,0.6)!important; }
.dk-footer a:hover { color: #C9A048!important; }
.footer-divider { border-color: rgba(255,255,255,0.07)!important; }
.footer-bottom { color: rgba(255,255,255,0.4)!important; }

/* --- TRUST STRIP --- */
.trust-strip { background: #111009!important; border-top: 1px solid rgba(201,160,72,0.1)!important; border-bottom: 1px solid rgba(201,160,72,0.1)!important; }
.trust-item span { color: rgba(255,255,255,0.75)!important; }
.trust-icon { color: #C9A048!important; }

/* --- SWIPER PAGINATION --- */
.swiper-pagination-bullet { background: rgba(255,255,255,0.4)!important; }
.swiper-pagination-bullet-active { background: #C9A048!important; }

/* --- STATS SECTION --- */
.stats-section { background: #111009!important; }
.stats-section .counter, .stat-number { color: #C9A048!important; }
.stats-section .stat-label { color: rgba(255,255,255,0.6)!important; }

/* --- SEARCH DROPDOWN (.search-dropdown) --- */
.search-dropdown { background: #111009!important; border: 1px solid rgba(201,160,72,0.15)!important; box-shadow: 0 8px 40px rgba(0,0,0,0.5)!important; }
.sd-item { color: #fff!important; }
.sd-item:hover { background: rgba(201,160,72,0.06)!important; }
.sd-header, .sd-loading, .sd-empty { color: rgba(255,255,255,0.55)!important; }
.sd-price { color: #C9A048!important; }
.sd-cat { color: rgba(255,255,255,0.4)!important; }
.sd-footer { border-top: 1px solid rgba(255,255,255,0.07)!important; }
.sd-footer a { color: #C9A048!important; }
mark { background: rgba(201,160,72,0.25)!important; color: #C9A048!important; }

/* --- ANNOUNCEMENT BAR --- */
.zd-ann-bar { background: #0a0905!important; border-bottom: 1px solid rgba(201,160,72,0.1)!important; }
.zd-ann-bar a { color: #C9A048!important; }

/* --- USER DROPDOWN --- */
.user-dropdown-menu { background: #111009!important; border: 1px solid rgba(201,160,72,0.15)!important; box-shadow: 0 8px 30px rgba(0,0,0,0.5)!important; }
.user-dropdown-header { border-bottom: 1px solid rgba(255,255,255,0.08)!important; }
.user-dropdown-header strong { color: #fff!important; }
.user-dropdown-header span { color: rgba(255,255,255,0.5)!important; }
.user-dropdown-item { color: rgba(255,255,255,0.75)!important; }
.user-dropdown-item:hover { background: rgba(201,160,72,0.08)!important; color: #C9A048!important; }
.user-name-label { color: rgba(255,255,255,0.9)!important; }
.user-dropdown-trigger { color: #fff!important; }

/* --- CART TOAST --- */
#cartToast { background: #111009!important; border: 1px solid rgba(201,160,72,0.2)!important; color: #fff!important; }

/* --- FLASH SALE SECTION --- */
.fs-section, .flash-sale-section { background: linear-gradient(135deg,#0a0905,#111009)!important; }

/* --- TESTIMONIALS (.testi-section) --- */
.testi-section, .testimonials-section { background: #111009!important; }
.testi-card { background: #0a0905!important; border: 1px solid rgba(255,255,255,0.07)!important; }
.testi-text { color: rgba(255,255,255,0.8)!important; }
.testi-name { color: #fff!important; }
.testi-role { color: rgba(255,255,255,0.5)!important; }

/* --- BRAND/PARTNERS --- */
.brands-section, .partners-section { background: #0a0905!important; }

/* --- FAQ GLOBAL --- */
.faq-section { background: #111009!important; }

/* --- MISC WHITE BACKGROUNDS --- */
.announce-bar { background: #0a0905!important; color: rgba(255,255,255,0.7)!important; }

/* ════════════════════════════════════════════════════════════════
   PRODUCT VARIANT SYSTEM — Color Swatches + Size Buttons
   ════════════════════════════════════════════════════════════════ */

/* ── Color Swatches ── */
.pd-colors {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 10px;
}

.clr-btn {
  position: relative;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--swatch, #888);
  border: 2px solid transparent;
  cursor: pointer;
  padding: 0;
  outline: none;
  transition: transform .15s, box-shadow .15s, border-color .15s;
  flex-shrink: 0;
}

/* White/light color border so swatch is visible on white bg */
.clr-btn[style*="border-color:#bbb"] { border-color: #ccc !important; }

.clr-btn:hover:not(.out-of-stock) {
  transform: scale(1.15);
  box-shadow: 0 3px 10px rgba(0,0,0,.2);
}

.clr-btn.active {
  box-shadow: 0 0 0 3px #fff, 0 0 0 5.5px #c9a048;
  transform: scale(1.08);
}

.clr-btn.out-of-stock {
  opacity: .38;
  cursor: not-allowed;
}

/* X icon inside swatch for out-of-stock colors */
.swatch-x {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  color: rgba(255,255,255,.9);
  pointer-events: none;
  text-shadow: 0 0 3px rgba(0,0,0,.5);
}

/* Tooltip on hover */
.clr-tip {
  position: absolute;
  bottom: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%);
  background: #111;
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .4px;
  white-space: nowrap;
  padding: 4px 8px;
  border-radius: 6px;
  pointer-events: none;
  opacity: 0;
  transition: opacity .15s;
  z-index: 10;
}
.clr-btn:hover .clr-tip { opacity: 1; }

/* ── Size Buttons ── */
.pd-sizes {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 10px;
}

.sz-btn {
  position: relative;
  min-width: 52px;
  height: 44px;
  padding: 0 12px;
  border: 1.5px solid #ddd;
  background: #fff;
  border-radius: 8px;
  font-family: "Montserrat", sans-serif;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  color: #333;
  transition: border-color .15s, background .15s, color .15s, transform .1s;
}

.sz-btn:hover:not(:disabled):not(.oos) {
  border-color: #111;
  color: #111;
}

.sz-btn.active {
  background: #111;
  color: #fff;
  border-color: #111;
}

.sz-btn.oos,
.sz-btn:disabled {
  opacity: .35;
  cursor: not-allowed;
  text-decoration: line-through;
  pointer-events: none;
}

.sz-btn.low { border-color: #C9A048; color: #C9A048; }
.sz-btn.low.active { background: #C9A048; border-color: #C9A048; color: #fff; }

/* Low-stock dot indicator */
.sz-low-dot {
  position: absolute;
  top: -3px;
  right: -3px;
  width: 8px;
  height: 8px;
  background: #C9A048;
  border-radius: 50%;
  border: 1.5px solid #fff;
}

/* ── Stock Badge ── */
.pd-stock-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11.5px;
  font-weight: 700;
  padding: 5px 13px;
  border-radius: 30px;
  margin-top: 12px;
  letter-spacing: .2px;
  transition: background .2s, color .2s;
}
.pd-stock-badge.in      { background: #ecfdf5; color: #16a34a; border: 1px solid #bbf7d0; }
.pd-stock-badge.good    { background: #ecfdf5; color: #16a34a; border: 1px solid #bbf7d0; }
.pd-stock-badge.low     { background: #fffbeb; color: #b45309; border: 1px solid #fde68a; }
.pd-stock-badge.oos     { background: #fef2f2; color: #dc2626; border: 1px solid #fecaca; }
.pd-stock-badge.pending { background: #f9fafb; color: #6b7280; border: 1px solid #e5e7eb; }

/* ── Admin Variant Table ── */
.variant-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 12px;
  margin-top: 16px;
}

.variant-cell {
  border: 1.5px solid #eee;
  border-radius: 10px;
  padding: 12px;
  background: #fafafa;
  font-size: 12px;
}

.variant-cell-hdr {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
  font-weight: 800;
  font-size: 12.5px;
  color: #111;
}

.vc-swatch {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 1.5px solid rgba(0,0,0,.12);
  flex-shrink: 0;
}

.vc-input {
  width: 100%;
  padding: 6px 9px;
  border: 1.5px solid #e5e5e5;
  border-radius: 7px;
  font-family: "Montserrat", sans-serif;
  font-size: 12px;
  outline: none;
  transition: border-color .15s;
  margin-bottom: 4px;
}

.vc-input:focus { border-color: #c9a048; }

/* ── Responsive tweaks ── */
@media (max-width: 480px) {
  .clr-btn { width: 32px; height: 32px; }
  .sz-btn  { min-width: 46px; height: 40px; font-size: 11px; }
  .pd-stock-badge { font-size: 10.5px; padding: 4px 11px; }
}
