@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700&family=Inter:wght@300;400;500;600;700&family=Great+Vibes&family=Cormorant+Garamond:wght@400;500;600&display=swap');

:root {
  --gold: #C9A84C;
  --gold-light: #e2cc7e;
  --gold-dark: #a8872e;
  --bg-dark: #ffffff;
  --bg-card: #f9f9f9;
  --bg-card-hover: #f0f0f0;
  --bg-section: #f5f5f5;
  --text-primary: #1a1a1a;
  --text-secondary: #4a4a4a;
  --text-muted: #777777;
  --white: #fff;
  --border: #efefef;
  --danger: #e74c3c;
  --success: #2ecc71;
  --overlay: rgba(0, 0, 0, 0.6);
  --shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.05);
  --radius: 8px;
  --radius-lg: 16px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --font-heading: 'Playfair Display', serif;
  --font-body: 'Inter', sans-serif;
  --max-width: 1280px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* Remove blue focus highlight everywhere */
*:focus,
*:focus-visible {
  outline: none !important;
  box-shadow: none !important;
}
a, button, input, select, textarea, [tabindex] {
  -webkit-tap-highlight-color: transparent !important;
  tap-highlight-color: transparent !important;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background: var(--bg-dark);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--transition);
}

a:hover {
  color: var(--gold);
}

/* Mobile: only apply gold hover on real pointer devices, not touch */
@media (hover: none) {
  a:hover, a:active {
    color: inherit;
  }
}

/* Remove text selection highlight */
::selection { background: transparent; color: inherit; }
::-webkit-selection { background: transparent; color: inherit; }
  max-width: 100%;
  height: auto;
  display: block;
}

ul {
  list-style: none;
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

h1,
h2,
h3,
h4,
h5 {
  font-family: var(--font-heading);
  font-weight: 500;
  line-height: 1.3;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  font-family: var(--font-body);
}

.btn-primary {
  background: var(--gold);
  color: #111111;
}

.btn-primary:hover {
  background: var(--gold-light);
  color: #111111;
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(201, 168, 76, 0.3);
}

.btn-outline {
  background: transparent;
  color: var(--gold) !important;
  border: 1.5px solid var(--gold);
}

.btn-outline:hover {
  background: var(--gold);
  color: #111111 !important;
}

.btn-outline-dark {
  background: transparent;
  color: var(--text-primary);
  border: 1.5px solid var(--text-primary);
}

.btn-outline-dark:hover {
  background: transparent;
  color: var(--text-primary);
}

.btn-dark {
  background: var(--text-primary);
  color: var(--text-primary);
}

.btn-dark:hover {
  background: var(--text-secondary);
}

.section-title {
  text-align: center;
  margin-bottom: 32px;
}

.section-title h2 {
  font-size: clamp(28px, 4vw, 42px);
  margin-bottom: 12px;
}

.section-title .accent {
  color: var(--gold);
}

.section-title p {
  color: var(--text-secondary);
  font-size: 15px;
  max-width: 520px;
  margin: 0 auto;
}

/* ====== HEADER ====== */
.top-bar {
  display: none;
  text-align: center;
  padding: 8px 0;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.5px;
}

.top-bar span {
  font-weight: 700;
}

header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--bg-dark);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 24px;
  max-width: var(--max-width);
  margin: 0 auto;
  width: 100%;
  box-sizing: border-box;
}
@media (max-width: 768px) {
  .header-inner {
    padding: 16px 14px;
    flex-wrap: nowrap;
    justify-content: space-between;
    gap: 0;
  }

  /* Hamburger + Logo grouped together on left */
  .mobile-toggle {
    margin-right: 8px;
    flex-shrink: 0;
  }

  .header-inner .logo {
    flex: 1;
    margin-left: 10px;
  }
}

.header-inner .logo {
  display: flex;
  align-items: center;
  height: 100%;
}

.logo img {
  height: auto;
  width: 180px;
  max-width: 100%;
  object-fit: contain;
  transition: transform var(--transition);
}

/* Palmonas-style text logo */
.logo-text-link {
  font-family: 'Cormorant Garamond', 'Georgia', serif !important;
  font-size: 22px !important;
  font-weight: 500 !important;
  letter-spacing: 0.08em !important;
  color: #1a1a1a;
  text-decoration: none;
  text-transform: none !important;
  white-space: nowrap;
  transition: opacity 0.2s;
}
.logo-text-link:hover {
  opacity: 0.7;
}

@media (max-width: 768px) {
  .logo-text-link {
    font-size: 19px;
    letter-spacing: 0.06em;
  }
}


@media (max-width: 768px) {
  .logo img {
    width: 150px;
  }
}

@media (max-width: 480px) {
  .logo img {
    width: 110px;
  }
}

.logo:hover img {
  transform: scale(1.05);
}

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

.nav-links a {
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  padding: 4px 0;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--text-primary);
  transition: width var(--transition);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.header-actions {
  display: flex;
  gap: 20px;
  align-items: center;
  margin-left: 32px;
}

@media (max-width: 768px) {
  .header-actions {
    gap: 16px;
    margin-left: 0;
    flex-shrink: 0;
  }
}

.header-actions button {
  background: none;
  border: none;
  color: var(--text-primary);
  cursor: pointer;
  font-size: 20px;
  position: relative;
  transition: color var(--transition);
}

.header-actions button:hover,
.header-actions button:focus,
.header-actions button:active {
  color: var(--text-primary);
}

.cart-count,
.wishlist-count {
  position: absolute;
  top: -8px;
  right: -8px;
  font-size: 10px;
  font-weight: 700;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
}

.cart-count {
  background: #111111;
}

.wishlist-count {
  background: #e53935;
}

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  flex-direction: column;
  gap: 5px;
  align-items: center;
  justify-content: center;
}

.mobile-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1),
              opacity 0.25s ease;
  transform-origin: center;
  pointer-events: none;
}

.mobile-toggle.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.mobile-toggle.active span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.mobile-toggle.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ====== HERO ====== */
.hero {
  position: relative;
  height: 90vh;
  min-height: 600px;
  overflow: hidden;
}

.hero-slides {
  position: relative;
  height: 100%;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.4s ease;
  display: flex;
  align-items: center;
}

.hero-slide.active {
  opacity: 1;
}

.hero-slide-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

.hero-slide-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.55) 0%, rgba(0, 0, 0, 0.25) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 80px;
  max-width: 700px;
}

.hero-content .subtitle {
  color: var(--gold);
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 4px;
  margin-bottom: 16px;
  font-weight: 500;
}

.hero-content h1 {
  font-size: clamp(36px, 5vw, 64px);
  margin-bottom: 20px;
  line-height: 1.1;
  color: #ffffff;
}

.hero-content p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 16px;
  margin-bottom: 32px;
  max-width: 480px;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-summer-sale {
  padding: 0 48px;
  padding-top: 72%;
}

.summer-hello {
  font-family: 'Playfair Display', Georgia, serif;
  font-style: italic;
  font-size: clamp(28px, 3.5vw, 46px);
  font-weight: 400;
  color: #ffffff;
  margin-bottom: 4px;
  letter-spacing: 1px;
  display: block;
}

.summer-title {
  font-size: clamp(52px, 8vw, 100px) !important;
  font-weight: 900 !important;
  line-height: 0.95 !important;
  color: #ffffff !important;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin: 0 0 20px !important;
}

.summer-b1g1 {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 28px;
}

.btn-summer-dark {
  display: inline-flex;
  align-items: center;
  background: transparent;
  color: #ffffff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  padding: 0;
  border: none;
  text-decoration: none;
  transition: opacity 0.2s;
}
.btn-summer-dark:hover {
  opacity: 0.75;
  color: #ffffff;
  text-decoration: none;
}

.summer-b1g1-text {
  font-size: clamp(18px, 2.5vw, 26px);
  font-weight: 800;
  color: #ffffff;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.summer-code {
  font-size: clamp(11px, 1.2vw, 14px);
  color: rgba(255,255,255,0.75);
  letter-spacing: 3px;
  text-transform: uppercase;
}

.hero-dots {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  z-index: 10;
  opacity: 0;
  transition: opacity 0.5s ease 0.8s;
}

.loader-gone .hero-dots {
  opacity: 1;
}

.hero-dots button {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: 2px solid #000000;
  background: transparent;
  cursor: pointer;
  transition: all var(--transition);
}

.hero-dots button.active {
  background: #000000;
  border-color: #000000;
  transform: scale(1.3);
}

/* ====== FEATURES BAR ====== */
.features-bar {
  background: var(--bg-card);
  border-bottom: 1px solid var(--border);
  padding: 28px 0;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 14px;
  justify-content: center;
}

.feature-item .icon {
  font-size: 28px;
  color: var(--gold);
}

.feature-item h4 {
  font-size: 14px;
  font-weight: 600;
  font-family: var(--font-body);
}

.feature-item p {
  font-size: 12px;
  color: var(--text-muted);
}

/* ====== CATEGORIES ====== */
.categories {
  padding: 48px 0;
}

.categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.category-card {
  position: relative;
  height: 240px;
  border-radius: 6px;
  overflow: hidden;
  cursor: pointer;
}

.category-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease, opacity 0.4s ease;
  background: linear-gradient(90deg, #e8e0d8 25%, #f0ebe4 50%, #e8e0d8 75%);
  background-size: 200% 100%;
  animation: catImgShimmer 1.4s ease infinite;
}
.category-card img.loaded {
  animation: none;
  background: transparent;
}
@keyframes catImgShimmer {
  0%   { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

.category-card:hover img {
  transform: scale(1.08);
}

.category-card .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, transparent 60%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
  transition: background var(--transition);
}

.category-card:hover .overlay {
  background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.2) 60%);
}

.category-card h3 {
  font-size: 22px;
  margin-bottom: 4px;
  color: #ffffff;
}

.category-card span {
  color: var(--gold);
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* ====== PRODUCTS GRID ====== */
.products-section {
  padding: 80px 0;
  background: #ffffff;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 16px 20px;
  align-items: start;
}

.product-card {
  background: #ffffff;
  border-radius: 0;
  border: none;
  overflow: hidden;
  transition: box-shadow var(--transition);
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.product-card:hover {
  transform: none;
  box-shadow: none;
}

.product-card .image-wrap {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: transparent;
  -webkit-tap-highlight-color: transparent;
}

.product-card .image-wrap a {
  display: block;
  width: 100%;
  height: 100%;
  -webkit-tap-highlight-color: transparent;
  outline: none;
}

.product-card .image-wrap a:focus {
  outline: none;
}

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

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

.product-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 4px 12px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  border-radius: 4px;
  letter-spacing: 0.5px;
}

@keyframes ns-shine {
  0%   { left: -75%; }
  100% { left: 125%; }
}

.ns-b1g1-badge {
  position: absolute;
  top: 0;
  left: 0;
  background: #f5f0e8;
  color: #1a1a1a;
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  padding: 3px 7px;
  border-radius: 0 0 4px 0;
  z-index: 3;
  pointer-events: none;
  overflow: hidden;
}

.ns-b1g1-badge::after {
  content: '';
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    120deg,
    transparent 0%,
    rgba(255,255,255,0.75) 50%,
    transparent 100%
  );
  animation: ns-shine 2s ease-in-out infinite;
  animation-delay: 1s;
}

.badge-sale {
  background: var(--success);
  color: var(--white);
}

.badge-new {
  background: var(--gold);
  color: #111111;
}

.product-actions {
  display: none !important;
}

.product-info {
  padding: 10px 0 12px 0;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.product-info .product-category {
  font-size: 11px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 3px;
  font-weight: 400;
}

.product-info h3 {
  font-size: 14px;
  font-weight: 500;
  font-family: var(--font-body);
  margin-bottom: 4px;
  min-height: 40px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.product-info h3 a {
  color: var(--text-primary);
  text-decoration: none;
  -webkit-tap-highlight-color: transparent;
}

.product-info h3 a:hover,
.product-info h3 a:active,
.product-info h3 a:focus,
.product-info h3 a:visited {
  color: var(--text-primary);
  outline: none;
}

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

.product-price .current {
  font-size: 18px;
  font-weight: 400;
  color: var(--text-primary);
}

.product-price .original {
  font-size: 14px;
  color: #1a1a1a;
  text-decoration: line-through;
}

.product-rating {
  display: flex;
  gap: 2px;
  margin-top: 4px;
  margin-bottom: 8px;
  color: var(--gold);
  font-size: 13px;
  min-height: 22px;
  height: 22px;
  align-items: center;
  overflow: hidden;
}

.add-to-cart-btn {
  width: calc(100% - 0px);
  padding: 9px 12px;
  background: transparent;
  border: 1.5px solid #1a1a1a;
  color: var(--text-primary);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  cursor: pointer;
  transition: all var(--transition);
  margin-top: auto;
  font-family: var(--font-body);
  border-radius: 6px;
  display: block;
}

.add-to-cart-btn:hover {
  background: transparent;
  color: var(--text-primary);
  border-color: #1a1a1a;
}

/* ====== FLASH SALE ====== */
/* ====== BANNER ====== */
.promo-banner {
  padding: 100px 0;
  text-align: center;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  position: relative;
}

.promo-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
}

.promo-banner .container {
  position: relative;
  z-index: 2;
}

.promo-banner h2 {
  font-size: clamp(28px, 5vw, 52px);
  margin-bottom: 16px;
}

.promo-banner p {
  color: var(--text-secondary);
  font-size: 16px;
  margin-bottom: 32px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

/* ====== TESTIMONIALS ====== */
.testimonials {
  padding: 80px 0;
}

.testimonials-section {
  padding: 40px 0 36px;
  background: #fff;
}

.testimonials-slider {
  position: relative;
  overflow: hidden;
}

/* Prev / Next arrow buttons */
.testimonial-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #fff;
  border: 1.5px solid #222;
  color: #222;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
  z-index: 2;
  transition: background var(--transition), color var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}
.testimonial-arrow:hover {
  background: #222;
  color: #fff;
}
.testimonial-prev { left: 4px; }
.testimonial-next { right: 4px; }

/* "View All Reviews" outline button */
.btn-outline-gold {
  border: 1.5px solid var(--gold);
  color: var(--gold);
  background: transparent;
  padding: 12px 28px;
  border-radius: var(--radius);
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  display: inline-block;
  transition: background var(--transition), color var(--transition);
}
.btn-outline-gold:hover {
  background: var(--gold);
  color: #fff;
}

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

.testimonial-card {
  min-width: 100%;
  padding: 0 52px;
  text-align: center;
}

.testimonial-card .stars {
  color: var(--gold);
  font-size: 16px;
  margin-bottom: 10px;
}

.testimonial-card blockquote {
  font-size: 14px;
  font-style: normal;
  color: #222;
  max-width: 600px;
  margin: 0 auto 8px;
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: none;
}
.testimonial-card blockquote.expanded {
  display: block;
  overflow: visible;
  -webkit-line-clamp: unset;
}
.testimonial-read-more {
  background: none;
  border: none;
  color: #888;
  font-size: 12px;
  cursor: pointer;
  padding: 0;
  margin: 0 auto 12px;
  display: block;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.testimonial-card .author {
  font-weight: 600;
  font-size: 13px;
  color: #111;
}

.testimonial-card .role {
  font-size: 12px;
  color: #888;
}

.testimonial-nav {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 16px;
}

.testimonial-nav button {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: 1.5px solid #999;
  background: transparent;
  cursor: pointer;
  transition: all var(--transition);
}

.testimonial-nav button.active {
  background: #222;
  border-color: #222;
}


/* ====== LUXURY BRANDING CAROUSEL ====== */
.branding-carousel {
  padding: 80px 0;
  background: var(--bg-dark);
  overflow: hidden;
  position: relative;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

/* ====== LOOKBOOK CAROUSEL (3D COVERFLOW) ====== */
.lookbook-section {
  padding: 40px 0 10px;
  background: var(--bg-dark); /* Dark theme background */
  overflow: hidden;
  position: relative;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.lookbook-container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  perspective: 2000px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 600px;
  position: relative;
}

.lookbook-track {
  display: flex;
  align-items: center;
  justify-content: center;
  transform-style: preserve-3d;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  width: 100%;
  height: 100%;
}

.lookbook-item {
  position: absolute;
  width: 400px;
  height: 550px;
  transition: all 0.7s cubic-bezier(0.4, 0, 0.2, 1);
  transform-style: preserve-3d;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  -webkit-tap-highlight-color: transparent;
  tap-highlight-color: transparent;
  user-select: none;
  -webkit-user-select: none;
}

.lookbook-media {
  width: 100%;
  flex: 1;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  background: #f0f0f0;
  border: 1px solid var(--border);
  -webkit-tap-highlight-color: transparent;
  user-select: none;
  -webkit-user-select: none;
}

.lookbook-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
  opacity: 0.8;
  transition: opacity 0.5s ease;
  user-select: none;
  -webkit-user-select: none;
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
}

.lookbook-item.active .lookbook-media img {
  opacity: 1;
}

.lookbook-footer {
  padding: 25px 0 5px;
  text-align: center;
  opacity: 0.3;
  transition: opacity 0.5s ease;
}

.lookbook-label-wrap {
  display: inline-block;
  position: relative;
}

.lookbook-label {
  display: block;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--text-primary); /* Themed text color */
  margin-bottom: 5px;
}

.lookbook-label-underline {
  height: 2px;
  background: var(--gold); /* Gold underline */
  width: 100%;
  transform: scaleX(0);
  transition: transform 0.5s ease-out;
}

.lookbook-item.active .lookbook-label-underline {
  transform: scaleX(1);
}

.lookbook-item.active {
  transform: translate3d(0, 0, 200px) rotateY(0deg);
  z-index: 20;
  opacity: 1;
}

.lookbook-item.active .lookbook-footer {
  opacity: 1;
}

/* Clear 3D Tilts with enough horizontal clearance */
.lookbook-item[data-pos="-2"] { transform: translate3d(-550px, 0, -400px) rotateY(55deg); opacity: 0.1; z-index: 5; }
.lookbook-item[data-pos="-1"] { transform: translate3d(-300px, 0, -200px) rotateY(45deg); opacity: 0.4; z-index: 10; }
.lookbook-item[data-pos="1"]  { transform: translate3d(300px, 0, -200px) rotateY(-45deg); opacity: 0.4; z-index: 10; }
.lookbook-item[data-pos="2"]  { transform: translate3d(550px, 0, -400px) rotateY(-55deg); opacity: 0.1; z-index: 5; }

.lookbook-item.hidden-left { transform: translate3d(-1000px, 0, -600px) rotateY(70deg); opacity: 0; pointer-events: none; }
.lookbook-item.hidden-right { transform: translate3d(1000px, 0, -600px) rotateY(-70deg); opacity: 0; pointer-events: none; }

.lookbook-nav {
  position: absolute;
  top: 45%;
  width: 55px;
  height: 55px;
  background: transparent !important;
  border: none !important;
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 100;
  box-shadow: none !important;
  transition: all 0.3s ease;
  color: var(--text-primary);
  font-size: 20px;
  backdrop-filter: none;
}

.lookbook-nav.prev { left: 50px; }
.lookbook-nav.next { right: 50px; }

.lookbook-nav:hover {
  background: transparent !important;
  color: var(--text-primary);
  border: none !important;
  transform: scale(1.1);
}

.active-indicator {
  display: none !important;
}

@media (max-width: 1200px) {
  .lookbook-item { width: 340px; height: 480px; }
  .lookbook-item[data-pos="-2"] { transform: translate3d(-450px, 0, -400px) rotateY(55deg); }
  .lookbook-item[data-pos="-1"] { transform: translate3d(-240px, 0, -200px) rotateY(45deg); }
  .lookbook-item[data-pos="1"]  { transform: translate3d(240px, 0, -200px) rotateY(-45deg); }
  .lookbook-item[data-pos="2"]  { transform: translate3d(450px, 0, -400px) rotateY(-55deg); }
}

@media (max-width: 768px) {
  .lookbook-item { width: 280px; height: 400px; }
  .lookbook-item[data-pos="-2"], .lookbook-item[data-pos="2"] { display: none; }
  .lookbook-item[data-pos="-1"] { transform: translate3d(-180px, 0, -200px) rotateY(45deg); }
  .lookbook-item[data-pos="1"]  { transform: translate3d(180px, 0, -200px) rotateY(-45deg); }
  .lookbook-nav { width: 44px; height: 44px; top: 40%; background: transparent !important; border: none !important; box-shadow: none !important; }
  .lookbook-nav.prev { left: 15px; }
  .lookbook-nav.next { right: 15px; }
}

@media (max-width: 1024px) {
  .lookbook-item { width: 320px; height: 450px; }
  .lookbook-container { height: 600px; }
}

/* Removed duplicate media query */

.branding-track:hover {
  display: none;
}


.newsletter { display: none; }

/* ====== FOOTER ====== */
footer {
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  padding: 64px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 32px;
}

@media (max-width: 991px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
}

@media (max-width: 768px) {
  .footer-grid {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 16px 12px !important;
  }
  .footer-brand {
    grid-column: 1 / -1;
    padding-bottom: 16px;
    margin-bottom: 4px;
    border-bottom: 1px solid var(--border);
  }
  .footer-brand p {
    font-size: 12px;
    margin-bottom: 10px;
    line-height: 1.5;
  }
  .footer-col h4 {
    font-size: 11px;
    margin-bottom: 8px;
  }
  .footer-col ul li {
    margin-bottom: 6px;
  }
  .footer-col ul a {
    font-size: 12px;
  }
  .footer-bottom {
    padding: 12px 0 !important;
    gap: 6px !important;
  }
}

.footer-brand .logo {
  margin-bottom: 8px;
}

.footer-brand .logo {
  height: auto;
  display: block;
  margin-bottom: 10px;
}

.footer-brand .logo img {
  width: 140px;
  max-width: 100%;
  height: auto;
}

.footer-brand p {
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 16px;
}

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

.footer-social a {
  width: 40px;
  height: 40px;
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
  font-size: 16px;
}

.footer-social a:hover {
  border-color: var(--text-secondary);
  opacity: 0.7;
}

.footer-social a.facebook,
.footer-social a.instagram {
  border-color: transparent !important;
  background: transparent !important;
  overflow: hidden !important;
  border: none !important;
}

.footer-social a.facebook {
  background: #1877F2 !important;
  color: #fff !important;
}

.footer-social a.facebook svg {
  fill: #fff !important;
  stroke: none !important;
  width: 22px !important;
  height: 22px !important;
}

.footer-social a.instagram {
  background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%) !important;
  border-color: transparent !important;
  color: #fff !important;
}

.footer-social a.instagram svg {
  fill: none !important;
  stroke: #fff !important;
  width: 20px !important;
  height: 20px !important;
}

.footer-col h4 {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 20px;
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-col ul {
  list-style: none !important;
  padding: 0 !important;
  margin: 0 !important;
}

.footer-col ul li {
  margin-bottom: 10px;
  list-style: none !important;
}

.footer-col ul a {
  color: var(--text-secondary);
  font-size: 14px;
  transition: all 0.3s ease;
}

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

.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: #1a1a1a;
}

.payment-icons {
  display: flex;
  gap: 12px;
  font-size: 24px;
  color: var(--text-muted);
}

/* ====== CART DRAWER ====== */
.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 2000;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition);
}

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

.cart-drawer {
  position: fixed;
  top: 0;
  right: -100%;
  width: min(400px, 100vw);
  height: 100%;
  height: 100dvh;
  background: var(--bg-card);
  z-index: 2001;
  transition: right 0.4s ease;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.cart-drawer.open {
  right: 0;
}

.cart-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px;
  border-bottom: 1px solid var(--border);
}

.cart-header h3 {
  font-size: 18px;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  letter-spacing: 0;
}

.cart-close,
.wishlist-close {
  background: none;
  border: none;
  color: var(--text-primary);
  font-size: 24px;
  cursor: pointer;
  padding: 0;
  line-height: 1;
}

.cart-items {
  flex: 1;
  overflow-y: auto;
  padding: 24px;
}

.cart-item {
  display: flex;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
}

.cart-item img {
  width: 72px;
  height: 72px;
  object-fit: cover;
  border-radius: var(--radius);
}

.cart-item-info {
  flex: 1;
}

.cart-item-info h4 {
  font-size: 14px;
  font-family: var(--font-body);
  margin-bottom: 4px;
}

.cart-item-info .price {
  color: var(--text-primary);
  font-weight: 600;
}

.cart-item-remove {
  background: none;
  border: none;
  color: #1a1a1a;
  cursor: pointer;
  font-size: 18px;
}

.cart-qty-controls {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 6px;
}
.cart-qty-btn {
  background: var(--bg-card);
  border: 1px solid var(--border);
  color: var(--text-primary);
  width: 26px;
  height: 26px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}
.cart-qty-btn:hover {
  background: var(--gold);
  color: #fff;
  border-color: var(--gold);
}
.cart-qty-num {
  font-size: 14px;
  font-weight: 600;
  min-width: 20px;
  text-align: center;
}


/* ====== GIFT WRAP ADD-ON ====== */
.cart-giftwrap {
  display: none;
  align-items: center;
  justify-content: space-between;
  background: #fdf8f0;
  border: 1px solid #e8d9b5;
  border-radius: 8px;
  padding: 10px 14px;
  margin-bottom: 0;
  gap: 10px;
}

.giftwrap-left {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 1;
}

.giftwrap-icon-img {
  width: 38px;
  height: 38px;
  object-fit: contain;
  flex-shrink: 0;
}

.giftwrap-info {
  display: flex;
  flex-direction: column;
  gap: 0px;
  align-items: flex-start;
}

.giftwrap-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-primary);
}

.giftwrap-price {
  font-size: 14px;
  color: #000;
  text-align: center;
}

.giftwrap-toggle {
  background: transparent;
  border: 1.5px solid var(--gold);
  color: var(--gold);
  font-size: 12px;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 20px;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.2s ease;
  letter-spacing: 0.3px;
}

.giftwrap-toggle:hover {
  background: var(--gold);
  color: #fff;
}

.giftwrap-toggle.active {
  background: var(--gold);
  color: #fff;
}

.cart-giftwrap-divider {
  height: 1px;
  background: var(--border);
  margin: 10px 0 14px 0;
}

.cart-footer {
  padding: 16px 24px 24px;
  border-top: none;
}

.cart-total {
  display: flex;
  justify-content: space-between;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 16px;
}

.cart-total .amount {
  color: var(--text-primary);
}

.cart-footer .btn {
  width: 100%;
  justify-content: center;
}

.cart-empty {
  text-align: center;
  padding: 40px 0;
  color: var(--text-muted);
}

/* ====== BACK TO TOP ====== */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 48px;
  height: 48px;
  background: var(--gold);
  color: var(--text-primary);
  border: none;
  border-radius: 50%;
  font-size: 20px;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition);
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  transform: translateY(-4px);
  box-shadow: 0 4px 20px rgba(201, 168, 76, 0.4);
}

/* ====== SHOP PAGE ====== */
.page-header {
  padding: 32px 0 16px;
  text-align: center;
  background: linear-gradient(135deg, #fdfbf7 0%, var(--bg-dark) 100%);
  border-bottom: 1px solid var(--border);
}

.page-header h1 {
  font-size: clamp(32px, 4vw, 48px);
  margin-bottom: 8px;
}

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

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

.breadcrumb .sep {
  margin: 0 8px;
}

.shop-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 40px;
  padding: 32px 0;
}

.shop-sidebar {
  position: sticky;
  top: 100px;
  align-self: start;
}

.filter-group {
  margin-bottom: 32px;
}

.filter-group h4 {
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--border);
  font-family: var(--font-body);
}

.filter-group label {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 6px 0;
  cursor: pointer;
  font-size: 14px;
  color: var(--text-secondary);
  transition: color var(--transition);
}

.filter-group label:hover {
  color: var(--text-primary);
}

.filter-group input[type="checkbox"] {
  accent-color: var(--gold);
}

.price-range {
  width: 100%;
  accent-color: var(--gold);
  margin-top: 8px;
}

.shop-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}

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

.shop-toolbar select {
  background: var(--bg-card);
  color: var(--text-primary);
  border: 1px solid var(--border);
  padding: 8px 16px;
  font-size: 14px;
  font-family: var(--font-body);
}

/* ====== PRODUCT DETAIL ====== */
.product-detail {
  padding: 60px 0;
}

.product-page-section {
  padding: 60px 0;
}

.product-page-container {
  /* inherits container styles */
}

@media (max-width: 900px) {
  .product-page-section {
    padding: 0;
  }
  .product-page-container {
    padding: 0;
    max-width: 100%;
  }
  nav.breadcrumb {
    padding: 12px 16px;
    margin-bottom: 0;
  }
}


.product-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.product-gallery {
  position: relative;
}

/* Skeleton shimmer while product loads */
.ns-carousel.ns-skeleton {
  background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
  background-size: 200% 100%;
  animation: skeletonShimmer 1.4s ease infinite;
}
@keyframes skeletonShimmer {
  0%   { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* ====== PRODUCT IMAGE CAROUSEL ====== */
.ns-carousel {
  position: relative;
  width: 100%;
  border-radius: 0;
  overflow: hidden;
  background: transparent;
  aspect-ratio: 1 / 1;
  user-select: none;
  -webkit-user-select: none;
  touch-action: pan-y;
}

.ns-carousel-track {
  display: flex;
  height: 100%;
  transition: transform 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
}

.ns-carousel-track.is-dragging {
  transition: none !important;
  cursor: grabbing;
}

.ns-carousel-track img {
  pointer-events: none;
  -webkit-user-drag: none;
}

/* Prev / Next Arrows */
#carousel-prev,
#carousel-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 28px;
  height: 28px;
  border-radius: 0;
  border: none;
  background: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  color: #000;
  font-size: 18px;
  cursor: pointer;
  z-index: 10;
  display: none;
  align-items: center;
  justify-content: center;
  transition: all 0.25s ease;
  box-shadow: none;
  opacity: 0;
  text-shadow: 0 1px 4px rgba(255,255,255,0.6);
}

#carousel-prev { left: 14px; }
#carousel-next { right: 14px; }

.ns-carousel:hover #carousel-prev,
.ns-carousel:hover #carousel-next {
  opacity: 1;
}

#carousel-prev:hover,
#carousel-next:hover {
  background: none;
  box-shadow: none;
  transform: translateY(-50%) scale(1.15);
}

/* Dots */
#carousel-dots {
  position: absolute;
  bottom: 18px;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: center;
  gap: 8px;
  z-index: 10;
}

#carousel-dots > div {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
  background: transparent;
  border: 1.5px solid rgba(0,0,0,0.4);
}

#carousel-dots > div.active {
  background: #1a1a1a;
  border-color: #1a1a1a;
}

#carousel-dots > div:hover {
  transform: scale(1.2);
}

/* Thumbnails Below Carousel */
#detail-thumbnails {
  display: flex;
  gap: 12px;
  margin-top: 16px;
  overflow-x: auto;
  padding-bottom: 8px;
  scrollbar-width: thin;
  scrollbar-color: var(--gold) transparent;
}

#detail-thumbnails::-webkit-scrollbar {
  height: 4px;
}

#detail-thumbnails::-webkit-scrollbar-thumb {
  background: var(--gold);
  border-radius: 2px;
}

#detail-thumbnails > div {
  flex-shrink: 0;
  width: 68px;
  height: 68px;
  border-radius: 10px;
  overflow: hidden;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.25s ease;
  background: transparent;
}

#detail-thumbnails > div:hover {
  border-color: rgba(212,175,55,0.5);
  transform: translateY(-2px);
}

#detail-thumbnails > div img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Mobile improvements for carousel */
@media (max-width: 768px) {
  .ns-carousel {
    border-radius: 0;
    aspect-ratio: 4/5;
  }

  /* Hide thumbnails on mobile — Palmonas style, dots only */
  #detail-thumbnails {
    display: none !important;
  }

  /* Show dots on mobile */
  #carousel-dots {
    display: flex !important;
  }

  #carousel-prev,
  #carousel-next {
    width: 28px;
    height: 28px;
    font-size: 18px;
    opacity: 0.85;
  }

  #carousel-prev { left: 10px; }
  #carousel-next { right: 10px; }

  #carousel-dots > div {
    width: 7px;
    height: 7px;
  }
}

.zoom-container {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  cursor: crosshair;
}

.zoom-container .product-main-image {
  width: 100%;
  height: auto;
  max-height: 600px;
  object-fit: contain;
  background: transparent;
  border-radius: var(--radius-lg);
  display: block;
}

.zoom-lens {
  position: absolute;
  border: 2px solid var(--gold);
  background: rgba(201, 168, 76, 0.15);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.15s ease;
  z-index: 10;
  border-radius: 4px;
  box-shadow: 0 0 0 2000px rgba(0, 0, 0, 0.25);
}

.zoom-container:hover .zoom-lens {
  opacity: 1;
}

.zoom-result {
  display: none;
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border-radius: var(--radius-lg);
  background-repeat: no-repeat;
  background-color: var(--bg-card);
  z-index: 100;
  overflow: hidden;
  pointer-events: none;
}

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

.product-thumbs {
  display: flex;
  gap: 12px;
}

.product-thumbs img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: var(--radius);
  cursor: pointer;
  border: 2px solid transparent;
  transition: border-color var(--transition);
}

.product-thumbs img:hover,
.product-thumbs img.active {
  border-color: var(--gold);
}

.product-detail-info .product-category {
  font-size: 12px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 8px;
  font-weight: 400;
}

.product-detail-info h1 {
  font-family: 'Inter', sans-serif !important;
  font-size: 28px !important;
  font-weight: 400 !important;
  margin-bottom: 16px;
}

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

.product-detail-info .price-block .current,
#detail-price .current {
  font-size: 24px !important;
  font-weight: 400 !important;
  color: #1a1a1a !important;
}

#detail-price span:first-child {
  font-weight: 400 !important;
  font-family: var(--font-body) !important;
}

.product-detail-info .price-block .original,
#detail-price .original {
  font-size: 24px !important;
  font-weight: 400 !important;
  color: #1a1a1a !important;
  text-decoration: line-through !important;
  opacity: 1 !important;
}

#detail-price .original,
#detail-price .original *,
#detail-price span.original {
  color: #1a1a1a !important;
  opacity: 1 !important;
  font-size: 24px !important;
}

.product-detail-info .description {
  color: var(--text-secondary);
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 24px;
}

.quantity-selector {
  display: flex;
  align-items: center;
  gap: 0;
  margin-bottom: 24px;
}

.quantity-selector button {
  width: 44px;
  height: 44px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  color: var(--text-primary);
  font-size: 18px;
  cursor: pointer;
  transition: all var(--transition);
}

.quantity-selector button:hover {
  background: var(--gold);
  color: var(--text-primary);
}

.quantity-selector input {
  width: 60px;
  height: 44px;
  text-align: center;
  background: var(--bg-dark);
  border: 1px solid var(--border);
  color: var(--text-primary);
  font-size: 16px;
  font-family: var(--font-body);
}

.detail-actions {
  display: flex;
  gap: 12px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}

.product-tabs {
  margin-top: 60px;
}

.tab-headers {
  display: flex;
  gap: 0;
  border-bottom: 1px solid var(--border);
}

.tab-headers button {
  padding: 14px 28px;
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  color: var(--text-muted);
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all var(--transition);
  font-family: var(--font-body);
}

.tab-headers button.active {
  color: var(--gold);
  border-bottom-color: var(--gold);
}

.tab-content {
  display: none;
  padding: 32px 0;
  color: var(--text-secondary);
  line-height: 1.8;
}

.tab-content.active {
  display: block;
}

/* ====== ABOUT PAGE ====== */
.about-hero {
  padding: 32px 0 28px;
  text-align: center;
}

.about-hero h1 {
  font-size: clamp(32px, 5vw, 56px);
  margin-bottom: 16px;
}

.about-hero p {
  max-width: 640px;
  margin: 0 auto;
  color: var(--text-secondary);
  font-size: 16px;
}

.about-section {
  padding: 40px 0;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-grid.reverse {
  direction: rtl;
}

.about-grid.reverse>* {
  direction: ltr;
}

.about-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 400px;
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-text h2 {
  font-size: 32px;
  margin-bottom: 16px;
}

.about-text p {
  color: var(--text-secondary);
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 16px;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 32px;
  padding: 40px 0;
}

.value-card {
  background: var(--bg-card);
  padding: 40px 32px;
  border-radius: var(--radius-lg);
  text-align: center;
  border: 1px solid var(--border);
  transition: all var(--transition);
}

.value-card:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
}

.value-card .icon {
  font-size: 36px;
  margin-bottom: 16px;
}

.value-card h3 {
  font-size: 18px;
  margin-bottom: 8px;
}

.value-card p {
  color: var(--text-secondary);
  font-size: 14px;
}

/* ====== CONTACT PAGE ====== */
.contact-section {
  padding: 80px 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.contact-form {
  background: var(--bg-card);
  padding: 40px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
}

.form-group {
  margin-bottom: 20px;
}

.form-group label,
.shipping-form label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 14px 16px;
  background: var(--bg-dark);
  border: 1px solid var(--border);
  color: var(--text-primary);
  font-size: 14px;
  font-family: var(--font-body);
  transition: border-color var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  outline: none;
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.contact-info-cards {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-info-card {
  background: var(--bg-card);
  padding: 28px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  display: flex;
  gap: 16px;
  align-items: flex-start;
  transition: all var(--transition);
}

.contact-info-card:hover {
  border-color: var(--gold);
}

.contact-info-card .icon {
  font-size: 28px;
  color: var(--gold);
}

.contact-info-card h4 {
  font-size: 16px;
  margin-bottom: 4px;
  font-family: var(--font-body);
}

.contact-info-card p {
  color: var(--text-secondary);
  font-size: 14px;
}

/* ====== ANIMATIONS ====== */
.fade-in {
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.22s ease, transform 0.22s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in-left {
  opacity: 0;
  transform: translateX(-6px);
  transition: opacity 0.22s ease, transform 0.22s ease;
}

.fade-in-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.fade-in-right {
  opacity: 0;
  transform: translateX(6px);
  transition: opacity 0.22s ease, transform 0.22s ease;
}

.fade-in-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* Product cards scroll animation - sirf slide up, no white fade */
.product-card.card-animate {
  transform: translateY(6px);
  transition: transform 0.35s ease;
}
.product-card.card-animate.visible {
  transform: translateY(0);
}

/* Fallback: agar fade-in elements visible na ho toh 800ms baad force show */
@keyframes forceVisible {
  to { opacity: 1; transform: none; }
}
body.loaded .fade-in:not(.visible),
body.loaded .fade-in-left:not(.visible),
body.loaded .fade-in-right:not(.visible) {
  animation: forceVisible 0.3s ease forwards;
  animation-delay: 0.8s;
}

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

  .shop-layout {
    grid-template-columns: 1fr;
    padding: 16px 0;
    gap: 16px;
  }

  .shop-sidebar {
    position: static;
  }

  .products-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 10px;
    padding: 0;
  }

  .product-card .image-wrap {
    aspect-ratio: 3 / 4;
  }

  .product-detail-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }

  /* Palmonas style — square image, white padding on sides */
  .product-page-section {
    padding: 0 !important;
  }
  .product-page-container {
    padding: 0 !important;
    max-width: 100% !important;
  }
  nav.breadcrumb {
    display: none !important;
  }
  .product-detail-grid .product-gallery {
    padding: 14px 14px 0 14px;
  }
  .ns-carousel {
    aspect-ratio: 1/1 !important;
    width: 100% !important;
    border-radius: 8px !important;
  }
  .product-detail-info {
    padding: 14px !important;
  }
  #detail-thumbnails {
    display: none !important;
  }

  .about-grid,
  .about-grid.reverse {
    grid-template-columns: 1fr;
    direction: ltr;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .mobile-toggle {
    display: flex;
  }

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

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

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

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

  .newsletter-inner {
    flex-direction: column;
    text-align: center;
  }

  .newsletter-form {
    flex-direction: column;
  }

  .newsletter-form input {
    min-width: unset;
    width: 100%;
  }

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

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

  .hero {
    height: 55vh;
    min-height: 420px;
  }
}

@media (max-width: 480px) {
  .features-grid {
    grid-template-columns: 1fr;
  }

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

  .hero-buttons {
    flex-direction: column;
  }
}

/* ====== MOBILE NAV (LUXURY SIDEBAR) ====== */
.mobile-nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  z-index: 2999;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
}

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

.mobile-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 85%;
  max-width: 340px;
  height: 100%;
  background: #fff;
  z-index: 3000;
  display: flex;
  flex-direction: column;
  transform: translateX(-100%);
  transition: transform 0.42s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 4px 0 30px rgba(0, 0, 0, 0.12);
}

.mobile-nav.open {
  transform: translateX(0);
}

/* Sidebar Header */
.mobile-nav-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  min-height: 57px;
  border-bottom: 1px solid var(--border);
  opacity: 0;
  transform: translateY(-8px);
  transition: opacity 0.3s ease 0.15s, transform 0.3s ease 0.15s;
}

.mobile-nav.open .mobile-nav-header {
  opacity: 1;
  transform: translateY(0);
}

.mobile-nav-brand-name {
  font-family: 'Cormorant Garamond', 'Georgia', serif !important;
  font-size: 22px !important;
  font-weight: 500 !important;
  letter-spacing: 0.06em !important;
  color: var(--text-primary);
  text-transform: none !important;
  line-height: 1.2;
}

.mobile-nav-tagline {
  font-size: 12px;
  color: var(--text-muted);
  letter-spacing: 0.4px;
  margin-top: 4px;
}

.mobile-nav-close {
  background: #f0f0f0;
  border: none;
  cursor: pointer;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-primary);
  font-size: 15px;
  flex-shrink: 0;
  transition: background 0.2s ease, transform 0.25s ease;
  -webkit-tap-highlight-color: transparent;
}

.mobile-nav-close:hover {
  background: #e5e5e5;
  transform: rotate(90deg);
}

/* Nav Links */
.mobile-nav-links {
  flex: 1;
  overflow-y: auto;
  padding: 4px 0;
}

.mobile-nav-links a {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 13px 24px;
  text-decoration: none;
  color: var(--text-primary);
  font-size: 15px;
  font-weight: 500;
  position: relative;
  -webkit-tap-highlight-color: transparent;
  opacity: 0;
  transform: translateX(-16px);
  transition:
    opacity 0.3s ease,
    transform 0.3s ease,
    background 0.2s ease,
    padding-left 0.2s ease;
}

/* Half-width divider like image 2 */
.mobile-nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 24px;
  right: 24px;
  height: 1px;
  background: var(--border);
}

.mobile-nav.open .mobile-nav-links a:nth-child(1) { opacity: 1; transform: translateX(0); transition-delay: 0.18s; }
.mobile-nav.open .mobile-nav-links a:nth-child(2) { opacity: 1; transform: translateX(0); transition-delay: 0.24s; }
.mobile-nav.open .mobile-nav-links a:nth-child(3) { opacity: 1; transform: translateX(0); transition-delay: 0.30s; }
.mobile-nav.open .mobile-nav-links a:nth-child(4) { opacity: 1; transform: translateX(0); transition-delay: 0.36s; }

.mobile-nav-links a:last-child::after { display: none; }

.mobile-nav-links a:hover,
.mobile-nav-links a:active {
  background: var(--bg-card);
  padding-left: 32px;
  color: var(--text-primary);
}

.mobile-nav-links a:visited,
.mobile-nav-links a:focus {
  color: var(--text-primary);
  outline: none;
}

.mnav-icon {
  width: 38px;
  height: 38px;
  background: #f5f5f5;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.mnav-icon svg {
  width: 18px;
  height: 18px;
}

.mnav-arrow {
  margin-left: auto;
  color: #ccc;
  font-size: 16px;
  transition: transform 0.2s ease, color 0.2s ease;
  line-height: 1;
}

.mobile-nav-links a:hover .mnav-arrow {
  transform: translateX(3px);
  color: var(--text-muted);
}

/* Sidebar Footer */
.mobile-nav-footer {
  padding: 16px 28px 20px;
  border-top: 1px solid var(--border);
  margin-top: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.3s ease 0.42s, transform 0.3s ease 0.42s;
}

.mobile-nav.open .mobile-nav-footer {
  opacity: 1;
  transform: translateY(0);
}

.mobile-nav-socials {
  display: flex;
  gap: 14px;
}

.mobile-nav-socials a {
  width: 44px;
  height: 44px;
  border: 1.8px solid #1a1a1a;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-primary);
  text-decoration: none;
  transition: border-color 0.2s ease, background 0.2s ease;
  -webkit-tap-highlight-color: transparent;
  opacity: 1 !important;
  transform: none !important;
}

.mobile-nav-socials a:hover {
  border-color: var(--gold);
  background: #fdf8ee;
}

.mobile-nav-socials svg {
  width: 18px;
  height: 18px;
}

.mobile-nav-copy {
  font-size: 12px;
  color: var(--text-muted);
  letter-spacing: 0.3px;
}

/* ====== LOADING ANIMATION ====== */
.loader {
  position: fixed;
  inset: 0;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: opacity 0.15s ease;
}

.loader.hidden {
  opacity: 0;
  pointer-events: none;
}

.loader-text {
  display: none;
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.4;
  }
}

/* ====== HIDE WOOCOMMERCE DEFAULT SPINNER ====== */
.woocommerce .blockUI.blockOverlay,
.woocommerce .loader::before,
.woocommerce .loader::after,
.woocommerce .blockUI.blockOverlay::before,
.woocommerce .blockUI.blockOverlay::after,
.blockUI.blockOverlay,
.wc-block-components-spinner,
.wc-block-loading-mask .wc-block-components-loading-mask__spinner,
.loader .blockUI,
.loader::before,
.loader::after,
.loader-text::before,
.loader-text::after {
  display: none !important;
  opacity: 0 !important;
  visibility: hidden !important;
  background: none !important;
  background-image: none !important;
}

/* ====== SEARCH OVERLAY ====== */
.search-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  z-index: 5000;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 10vh;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition);
}

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

.search-modal {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
  width: 90%;
  max-width: 600px;
  position: relative;
  transform: translateY(-20px);
  transition: transform var(--transition);
}

.search-overlay.open .search-modal {
  transform: translateY(0);
}

.search-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: none;
  border: none;
  color: var(--text-primary);
  font-size: 24px;
  cursor: pointer;
}


.search-input-wrap {
  display: flex !important;
  align-items: center !important;
  border: 1px solid #1a1a1a !important;
  border-radius: 10px !important;
  overflow: hidden !important;
  background: #ffffff !important;
  box-shadow: none !important;
  outline: none !important;
  height: 48px !important;
}

.search-input-wrap:focus-within {
  border: 1px solid #1a1a1a !important;
  box-shadow: none !important;
  outline: none !important;
}

.search-input-wrap input,
.search-input-wrap input:focus,
.search-input-wrap input:active,
.search-input-wrap input:focus-visible {
  flex: 1 !important;
  padding: 0 16px !important;
  background: transparent !important;
  border: none !important;
  border-radius: 0 !important;
  color: #1a1a1a !important;
  font-size: 15px !important;
  font-family: var(--font-body) !important;
  outline: none !important;
  outline-offset: 0 !important;
  box-shadow: none !important;
  -webkit-appearance: none !important;
  height: 100% !important;
}

.search-input-wrap input::placeholder {
  color: #b0a9a5 !important;
  font-size: 15px !important;
}

.search-input-wrap button,
.search-input-wrap button:focus,
.search-input-wrap button:active {
  padding: 0 14px !important;
  background: transparent !important;
  border: none !important;
  border-left: none !important;
  border-radius: 0 !important;
  outline: none !important;
  box-shadow: none !important;
  color: #1a1a1a !important;
  font-size: 17px !important;
  cursor: pointer !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  height: 100% !important;
  transition: color 0.2s ease !important;
}

.search-input-wrap button:hover {
  color: #555 !important;
  background: transparent !important;
}

.search-results {
  margin-top: 20px;
  max-height: 50vh;
  overflow-y: auto;
}

.search-result-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 12px;
  border-bottom: 1px solid var(--border);
  cursor: pointer;
  transition: background var(--transition);
}

.search-result-item:hover {
  background: var(--bg-dark);
}

.search-result-item img {
  width: 60px;
  height: 60px;
  object-fit: cover;
  border-radius: var(--radius);
}

.search-result-item .info h4 {
  font-size: 14px;
  font-family: var(--font-body);
  margin-bottom: 2px;
}

.search-result-item .info span {
  font-size: 14px;
  color: var(--text-primary);
  font-weight: 600;
}

.search-result-item .info .cat {
  font-size: 11px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.search-no-results {
  text-align: center;
  padding: 32px;
  color: var(--text-muted);
  font-size: 15px;
}

/* ====== WISHLIST DRAWER ====== */
.wishlist-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 2000;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition);
}

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

.wishlist-drawer {
  position: fixed;
  top: 0;
  right: -100%;
  width: min(400px, 100vw);
  height: 100%;
  height: 100dvh;
  background: var(--bg-card);
  z-index: 2001;
  transition: right 0.4s ease;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.wishlist-drawer.open {
  right: 0;
}

.wishlist-items {
  flex: 1;
  overflow-y: auto;
  padding: 24px;
}

.wishlist-item {
  display: flex;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
  align-items: center;
}

.wishlist-item img {
  width: 72px;
  height: 72px;
  object-fit: cover;
  border-radius: var(--radius);
}

.wishlist-item-info {
  flex: 1;
}

.wishlist-item-info h4 {
  font-size: 14px;
  font-family: var(--font-body);
  margin-bottom: 4px;
}

.wishlist-item-info .price {
  color: var(--text-primary);
  font-weight: 600;
}

.wishlist-item-actions {
  display: flex;
  gap: 8px;
}

.wishlist-item-actions button {
  background: none;
  border: 1px solid #1a1a1a;
  color: var(--text-primary);
  padding: 6px 12px;
  font-size: 12px;
  cursor: pointer;
  border-radius: var(--radius);
  transition: all var(--transition);
  font-family: var(--font-body);
}

.wishlist-item-actions button:hover {
  border-color: #1a1a1a;
  color: #1a1a1a;
  background: rgba(0,0,0,0.04);
}

.wishlist-item-remove {
  background: none;
  border: none;
  color: #1a1a1a;
  cursor: pointer;
  font-size: 18px;
}

.wishlist-btn-active {
  color: #e74c3c !important;
}

/* ====== LOGIN & PROFILE ====== */
.login-overlay,
.profile-overlay,
.checkout-overlay,
.shipping-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  z-index: 2500;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
  backdrop-filter: blur(8px);
  padding: 20px;
  box-sizing: border-box;
}

.login-overlay.open,
.profile-overlay.open,
.checkout-overlay.open,
.shipping-overlay.open {
  opacity: 1;
  pointer-events: auto;
}

.login-modal {
  background: var(--bg-card);
  border: 1px solid var(--border);
  padding: 0; /* Padding handled by panels */
  width: 100%;
  max-width: 440px;
  position: relative;
  border-radius: var(--radius-lg);
  transform: translateY(20px);
  transition: transform var(--transition);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
  overflow: hidden;
  box-sizing: border-box;
}

.login-overlay.open .login-modal,
.profile-overlay.open .login-modal,
.checkout-overlay.open .login-modal,
.shipping-overlay.open .login-modal {
  transform: translateY(0);
}

.login-tabs {
  display: flex;
  background: rgba(255, 255, 255, 0.02);
}

.login-tab {
  flex: 1;
  background: none;
  border: none;
  padding: 16px;
  color: var(--text-muted);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  cursor: pointer;
  border-bottom: 2px solid transparent;
  transition: all var(--transition);
}

.login-tab.active {
  color: var(--gold);
  border-bottom-color: transparent;
  background: rgba(201, 168, 76, 0.05);
}

.login-tab:hover:not(.active) {
  color: var(--text-primary);
  background: rgba(255, 255, 255, 0.05);
}

.login-close {
  position: absolute;
  top: 12px;
  right: 12px;
  background: #1a1a1a;
  border: none;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  font-size: 14px;
  color: #ffffff;
  cursor: pointer;
  transition: all var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
}

.login-close:hover {
  background: #000000;
  color: #ffffff;
  transform: rotate(90deg);
}

input[type="email"],
input[type="password"],
input[type="text"],
input[type="tel"] {
  width: 100%;
  background: var(--bg-dark);
  border: 1px solid var(--border);
  color: var(--text-primary);
  font-family: var(--font-body);
  padding: 14px 16px;
  outline: none;
  transition: all var(--transition);
  border-radius: var(--radius);
}

input:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(201, 168, 76, 0.1);
  background: #ffffff;
}

input::placeholder {
  color: var(--text-muted);
  opacity: 0.5;
}

/* ====== ADMIN PANEL ====== */
#mng-overlay {
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(8px);
}

#mng-overlay.open {
  display: flex;
}

#mng-add-form input,
#mng-add-form select {
  width: 100%;
  padding: 12px;
  background: var(--bg-dark);
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--text-primary);
  margin-top: 5px;
  transition: border-color 0.3s;
}

#mng-add-form input:focus {
  border-color: var(--gold);
  outline: none;
}

#mng-open-btn {
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

#mng-open-btn:hover {
  transform: scale(1.1) translateY(-5px);
  box-shadow: 0 15px 40px rgba(212, 175, 55, 0.4);
}
/* ====== BRANDING LIGHTBOX (IMAGE POPUP) ====== */
.branding-lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(10px);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: zoom-out;
}

.branding-lightbox.active {
  opacity: 1;
  visibility: visible;
}

.lightbox-content {
  position: relative;
  max-width: 90%;
  max-height: 85vh;
  transform: scale(0.9);
  transition: transform 0.5s var(--transition);
  box-shadow: 0 0 50px rgba(0, 0, 0, 0.8);
  border: 1px solid var(--gold);
  border-radius: 4px;
  overflow: hidden;
  background: var(--bg-dark);
}

.branding-lightbox.active .lightbox-content {
  transform: scale(1);
}

.lightbox-content img {
  display: block;
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 85vh;
  object-fit: contain;
  background: #000;
  min-width: 50px;
  min-height: 50px;
}

.lightbox-close {
  position: fixed;
  top: 16px;
  right: 16px;
  color: #ffffff;
  cursor: pointer;
  background: transparent;
  border: none;
  border-radius: 0;
  font-family: var(--font-body);
  transition: all 0.3s var(--transition);
  padding: 0;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  z-index: 10000;
  line-height: 1;
  -webkit-tap-highlight-color: transparent;
  text-shadow: 0 1px 4px rgba(0,0,0,0.6);
}

.lightbox-close:hover {
  color: var(--gold);
  transform: rotate(90deg);
}

/* Update carousel items to show they are clickable */
/* ====== MOBILE OPTIMIZATION FOR LOOKBOOK ====== */
@media (max-width: 768px) {
  .lookbook-section {
    padding: 8px 0 4px; /* Reduced vertical gap */
  }

  .lookbook-container {
    height: 460px; /* Smaller container for mobile */
    perspective: 1200px; /* Adjusted perspective */
  }

  .lookbook-item {
    width: 280px; /* Thinner images for mobile */
    height: 380px; /* Shorter images for mobile */
  }

  /* Adjusted 3D translations for smaller screen width */
  .lookbook-item[data-pos="-2"] { transform: translate3d(-240px, 0, -300px) rotateY(45deg); opacity: 0; }
  .lookbook-item[data-pos="-1"] { transform: translate3d(-150px, 0, -150px) rotateY(35deg); opacity: 0.3; }
  .lookbook-item[data-pos="1"]  { transform: translate3d(150px, 0, -150px) rotateY(-35deg); opacity: 0.3; }
  .lookbook-item[data-pos="2"]  { transform: translate3d(240px, 0, -300px) rotateY(-45deg); opacity: 0; }

  .lookbook-item.active {
    transform: translate3d(0, 0, 100px) rotateY(0deg);
  }

  .lookbook-nav {
    width: 40px;
    height: 40px;
    font-size: 16px;
    top: 40%;
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
  }

  .lookbook-nav.prev { left: 10px; }
  .lookbook-nav.next { right: 10px; }

  .lookbook-label {
    font-size: 13px;
    letter-spacing: 2px;
  }
}

/* ====== PRODUCT DETAIL HOVER ZOOM ====== */
/* Minimal Flipkart-style zoom effect for product images */
.ns-carousel,
.ns-carousel-track div {
  border-radius: 8px !important;
  overflow: hidden !important; 
}

/* Only apply on devices that support hover (Desktop) */
@media (hover: hover) and (pointer: fine) {
  .ns-carousel-track div img {
    transition: transform 0.25s ease !important;
  }
  
  /* Scale between 1.04 and 1.08 as requested */
  .ns-carousel-track div:hover img {
    transform: scale(1.06) !important;
  }
}

/* ====== HOMEPAGE HEADER CONSISTENCY ====== */
/* Enforce bottom border on homepage to match inner pages */
body.home header,
body.front-page header,
header {
  border-bottom: 1px solid var(--border) !important;
}

/* ── Wishlist button: force icon-only, hide any injected text ── */
#detail-wishlist {
  width: 50px !important;
  height: 50px !important;
  flex-shrink: 0 !important;
  overflow: hidden !important;
  position: relative !important;
  font-size: 0 !important;        /* hides all text */
  color: transparent !important;  /* hides emoji text */
  line-height: 0 !important;
}

/* Hide text nodes injected by app.js (❤ Wishlist / ♡ Wishlist) */
#detail-wishlist * {
  display: none !important;
}

/* Show heart via ::before pseudo */
#detail-wishlist::before {
  content: '';
  display: block !important;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 20px;
  height: 20px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none' stroke='%231a1a1a' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20.84 4.61a5.5 5.5 0 00-7.78 0L12 5.67l-1.06-1.06a5.5 5.5 0 00-7.78 7.78l1.06 1.06L12 21.23l7.78-7.78 1.06-1.06a5.5 5.5 0 000-7.78z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: 20px 20px;
  background-position: center;
  pointer-events: none;
}

/* When wishlisted — red filled heart, border stays black */
#detail-wishlist[data-wishlist-active="true"]::before,
#detail-wishlist.wishlist-btn-active::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='%23e53935' stroke='%23e53935' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20.84 4.61a5.5 5.5 0 00-7.78 0L12 5.67l-1.06-1.06a5.5 5.5 0 00-7.78 7.78l1.06 1.06L12 21.23l7.78-7.78 1.06-1.06a5.5 5.5 0 000-7.78z'/%3E%3C/svg%3E") !important;
}
#detail-wishlist[data-wishlist-active="true"],
#detail-wishlist.wishlist-btn-active {
  border-color: #1a1a1a !important;
}

/* Dark mode override */
[data-theme="dark"] #detail-wishlist::before,
.dark #detail-wishlist::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20.84 4.61a5.5 5.5 0 00-7.78 0L12 5.67l-1.06-1.06a5.5 5.5 0 00-7.78 7.78l1.06 1.06L12 21.23l7.78-7.78 1.06-1.06a5.5 5.5 0 000-7.78z'/%3E%3C/svg%3E");
}

/* ── SAVE badge styling ── */
.ns-save-badge {
  background: #1a7a4a !important;
  color: #fff !important;
  font-size: 12px !important;
  font-weight: 400 !important;
  padding: 3px 10px !important;
  border-radius: 4px !important;
  letter-spacing: 0.04em !important;
  display: inline-block !important;
}

/* ── SKU line ── */
#detail-sku {
  font-size: 13px;
  color: var(--text-muted);
  margin: 0 0 18px 0;
}
#detail-sku strong {
  color: #1a1a1a;
  font-weight: 400;
}

/* ============================================================
   REVIEW BOTTOM SHEET
   ============================================================ */

/* Overlay */
/* ===== REVIEW BOTTOM SHEET — Image 2 style ===== */
.ns-review-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.45);
  z-index: 9998;
}
.ns-review-overlay-active { display: block; }

.ns-review-sheet {
  position: fixed;
  top: 0; right: 0; bottom: 0;
  left: 0;
  width: 100vw;
  background: #fff !important;
  border-radius: 0;
  z-index: 9999;
  overflow-y: auto;
  padding: 0 0 48px;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.32,0.72,0,1);
  box-shadow: none;
  -webkit-overflow-scrolling: touch;
  color: #1a1a1a !important;
}
.ns-review-sheet-open { transform: translateX(0); }

.ns-sheet-handle { display: none; }

/* New header */
.ns-sheet-header {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 18px 14px;
  border-bottom: 1px solid #f0f0f0;
  position: sticky;
  top: 0;
  background: #fff;
  z-index: 10;
}
.ns-sheet-close-btn {
  width: 34px; height: 34px;
  border-radius: 8px;
  background: #f3f3f3;
  border: none;
  font-size: 14px;
  cursor: pointer;
  color: #333;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.ns-sheet-title {
  font-size: 15px;
  font-weight: 600;
  color: #1a1a1a;
}

/* Summary row */
.ns-sheet-summary-row {
  display: flex;
  align-items: center;
  gap: 0;
  padding: 14px 18px;
  border-bottom: 1px solid #f0f0f0;
}
.ns-summary-left {
  display: flex !important;
  align-items: center !important;
  gap: 6px;
  flex: 1;
}
.ns-avg-stars-row {
  color: #f5c518;
  font-size: 19px;
  letter-spacing: 2px;
  display: flex;
  align-items: center;
  line-height: 1;
  position: relative;
  top: -1px;
  margin-right: -4px;
}

/* Rating breakdown */
.ns-rating-breakdown {
  padding: 16px 18px;
  border-bottom: 1px solid #f0f0f0;
}
.ns-breakdown-avg {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}
.ns-big-star { font-size: 36px; color: #1a1a1a; line-height: 1; }
.ns-big-avg  { font-size: 40px; font-weight: 700; color: #1a1a1a; line-height: 1; }
.ns-breakdown-bars { display: flex; flex-direction: column; gap: 10px; }
.ns-bar-row  { display: flex; align-items: center; gap: 6px; font-size: 13px; }
.ns-bar-stars { color: #f5c518; font-size: 20px; white-space: nowrap; min-width: 0; letter-spacing: 1px; line-height: 1; display: flex; align-items: center; transform: translateY(-1.5px); }
.ns-bar-track { flex: 1; height: 8px; background: #e0e0e0; border-radius: 3px; overflow: hidden; }
.ns-bar-fill  { height: 100%; background: #3a3a3a; border-radius: 3px; }
.ns-bar-count { font-size: 12px; color: #555; min-width: 28px; text-align: right; white-space: nowrap; font-weight: 500; }

/* Top row: avg rating left + Sort right */
.ns-sheet-toprow {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid #f0f0f0 !important;
  position: relative;
}
.ns-sheet-avg {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.ns-avg-row {
  display: flex;
  align-items: center;
  gap: 10px;
}
.ns-big-rating {
  font-size: 32px;
  font-weight: 700;
  color: #1a1a1a !important;
  line-height: 1;
  letter-spacing: -0.5px;
  align-self: center;
}
.ns-avg-stars {
  font-size: 16px;
  letter-spacing: 1px;
  line-height: 1;
  display: block;
  margin-bottom: 3px;
}
.ns-review-count {
  font-size: 13px;
  color: #1a1a1a !important;
  display: inline-flex;
  align-items: center;
  line-height: 1;
  font-weight: 500;
  margin-left: 0;
}
.ns-sort-btn {
  display: flex;
  align-items: center;
  gap: 5px;
  background: #fff !important;
  border: 1px solid #e0e0e0 !important;
  border-radius: 8px;
  padding: 6px 12px;
  font-size: 13px;
  color: #333 !important;
  cursor: pointer;
  font-family: inherit;
}
.ns-sort-menu {
  position: absolute;
  top: 36px; right: 0;
  background: #fff !important;
  border: 1px solid #eee !important;
  border-radius: 10px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.10);
  z-index: 10;
  min-width: 160px;
  overflow: hidden;
}
.ns-sort-menu button {
  display: block;
  width: 100%;
  text-align: left;
  padding: 11px 16px;
  background: none !important;
  border: none;
  font-size: 14px;
  color: #333 !important;
  cursor: pointer;
  font-family: inherit;
  border-bottom: 1px solid #f5f5f5 !important;
}
.ns-sort-menu button:last-child { border-bottom: none !important; }
.ns-sort-menu button:hover { background: #fafafa !important; }

/* Count + sorted by */
.ns-sheet-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 13px;
  color: #888 !important;
  padding-bottom: 12px;
  border-bottom: 1px solid #f0f0f0 !important;
  margin-bottom: 4px;
}
.ns-sorted-by strong { color: #555 !important; font-weight: 600; }

/* Review cards */
.ns-review-card {
  display: flex;
  gap: 12px;
  padding: 14px 0;
  border-bottom: 1px solid #f5f5f5 !important;
}
.ns-reviewer-avatar {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(201,168,76,0.15) !important;
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 600;
  color: var(--gold, #C9A84C) !important;
  flex-shrink: 0;
}
.ns-reviewer-name { font-size: 14px; font-weight: 500; color: #1a1a1a !important; }
.ns-review-stars  { color: var(--gold, #C9A84C) !important; font-size: 13px; letter-spacing: 1px; }
.ns-review-body   { font-size: 13px; color: #555 !important; margin: 4px 0 8px; line-height: 1.5; }
.ns-review-date   { font-size: 11px; color: #bbb !important; margin: 4px 0 0; }
.ns-review-photos { display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: 4px; }
.ns-review-photos img {
  width: 60px; height: 60px; object-fit: cover;
  border-radius: 8px; cursor: pointer;
  border: 1px solid #eee !important; transition: transform 0.15s;
}
.ns-review-photos img:hover { transform: scale(1.05); }

.ns-no-reviews    { text-align: center; padding: 40px 20px; color: #aaa !important; font-size: 14px; line-height: 1.8; }
.ns-reviews-loading { text-align: center; padding: 32px; color: #bbb !important; font-size: 14px; }

/* Share your experience card */
.ns-share-card {
  display: flex;
  align-items: center;
  gap: 14px;
  border: 1.5px dashed #d4c8a8 !important;
  border-radius: 12px;
  padding: 16px;
  cursor: pointer;
  margin-top: 20px;
  background: #fdfbf7 !important;
  transition: border-color 0.2s;
}
.ns-share-card:hover { border-color: var(--gold, #C9A84C) !important; }
.ns-share-icon {
  width: 40px; height: 40px;
  background: #fff !important;
  border: 1px solid #e8dfc8 !important;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold, #C9A84C) !important;
  flex-shrink: 0;
}
.ns-share-title { font-size: 14px; font-weight: 600; color: #1a1a1a !important; margin-bottom: 2px; }
.ns-share-sub   { font-size: 12px; color: #888 !important; }

/* Write review tab */
#nsTabWrite {
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.ns-write-header {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 16px 18px 14px;
  border-bottom: 1px solid #f0f0f0 !important;
  position: sticky;
  top: 0;
  background: #fff !important;
  z-index: 10;
  margin-bottom: 0;
}
.ns-back-btn {
  background: none !important;
  border: none;
  font-size: 14px;
  font-weight: 400;
  cursor: pointer;
  color: #111 !important;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  line-height: 1;
  font-family: inherit;
  padding: 0;
  width: auto; height: auto;
  opacity: 1;
}
.ns-write-title { font-size: 15px; font-weight: 600; color: #1a1a1a !important; }

.ns-write-body {
  padding: 20px 18px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.ns-write-label { font-size: 14px; color: #555 !important; margin: 0 0 10px; }
.ns-star-picker { display: flex; gap: 4px; margin-bottom: 6px; }
.ns-star-picker span {
  font-size: 38px; cursor: pointer; color: #ddd !important;
  transition: color 0.12s, transform 0.1s; user-select: none; line-height: 1;
}
.ns-star-picker span.ns-star-active,
.ns-star-picker span:hover { color: #f5c518 !important; transform: scale(1.12); }
.ns-star-label { font-size: 13px; color: #f5c518 !important; font-weight: 500; margin: 0 0 20px; min-height: 18px; }

#nsReviewText {
  width: 100%; border: 1px solid #e5e5e5 !important;
  border-radius: 10px; padding: 10px 12px; font-size: 14px;
  resize: none; font-family: inherit; color: #1a1a1a !important;
  margin-bottom: 16px; box-sizing: border-box; background: #fff !important;
}
#nsReviewText:focus { outline: none; border-color: var(--gold, #C9A84C) !important; }

.ns-upload-zone {
  display: flex; align-items: center; gap: 10px;
  border: 1.5px dashed #ddd !important; border-radius: 10px;
  padding: 14px; cursor: pointer; color: #888 !important;
  font-size: 13px; transition: border-color 0.2s, color 0.2s; margin-bottom: 10px;
  background: transparent !important;
}
.ns-upload-zone:hover { border-color: var(--gold, #C9A84C) !important; color: var(--gold, #C9A84C) !important; }

.ns-photo-previews { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 20px; }
.ns-photo-previews img {
  width: 72px; height: 72px; object-fit: cover;
  border-radius: 8px; border: 1px solid #eee !important;
}

.ns-submit-review-btn {
  width: 100%; padding: 15px;
  background: #1a1a1a !important; color: #fff !important;
  border: none; border-radius: 12px; font-size: 15px;
  font-weight: 500; cursor: pointer; font-family: inherit; transition: background 0.2s;
  box-sizing: border-box;
  display: block;
}
.ns-submit-review-btn:hover   { background: #333 !important; }
.ns-submit-review-btn:disabled { background: #aaa !important; cursor: not-allowed; }

.ns-submit-msg { text-align: center; font-size: 13px; margin-top: 10px; min-height: 20px; }

/* Force light theme — override dark mode always */
@media (prefers-color-scheme: dark) {
  .ns-review-sheet      { background: #fff !important; color: #1a1a1a !important; }
  .ns-sheet-handle      { background: #ddd !important; }
  .ns-sort-btn          { background: #fff !important; border-color: #e0e0e0 !important; color: #333 !important; }
  .ns-sort-menu         { background: #fff !important; border-color: #eee !important; }
  .ns-sort-menu button  { background: none !important; color: #333 !important; border-bottom-color: #f5f5f5 !important; }
  .ns-sheet-meta        { color: #888 !important; border-bottom-color: #f0f0f0 !important; }
  .ns-sorted-by strong  { color: #555 !important; }
  .ns-review-card       { border-bottom-color: #f5f5f5 !important; }
  .ns-reviewer-name     { color: #1a1a1a !important; }
  .ns-review-body       { color: #555 !important; }
  .ns-review-date       { color: #bbb !important; }
  .ns-review-photos img { border-color: #eee !important; }
  .ns-share-card        { background: #fdfbf7 !important; border-color: #d4c8a8 !important; }
  .ns-share-icon        { background: #fff !important; border-color: #e8dfc8 !important; }
  .ns-share-title       { color: #1a1a1a !important; }
  .ns-share-sub         { color: #888 !important; }
  .ns-write-header      { border-bottom-color: #f0f0f0 !important; }
  .ns-write-title       { color: #1a1a1a !important; }
  .ns-write-label       { color: #555 !important; }
  .ns-star-picker span  { color: #ddd !important; }
  #nsReviewText         { background: #fff !important; border-color: #e5e5e5 !important; color: #1a1a1a !important; }
  .ns-upload-zone       { border-color: #ddd !important; color: #888 !important; background: transparent !important; }
  .ns-submit-review-btn { background: #1a1a1a !important; color: #fff !important; }
  .ns-photo-previews img { border-color: #eee !important; }
}

/* ── Square card, no border, bordered ATC, discount % ── */
.product-card {
  border-radius: 0 !important;
  border: none !important;
  box-shadow: none !important;
}
.product-card .image-wrap {
  aspect-ratio: 1 / 1 !important;
  height: auto !important;
}
.product-price {
  display: flex !important;
  align-items: center !important;
  gap: 8px !important;
  flex-wrap: wrap !important;
}
.product-price .current {
  font-size: 16px !important;
  font-weight: 400 !important;
}
.add-to-cart-btn {
  border: 1.5px solid #1a1a1a !important;
  border-radius: 6px !important;
}

/* ── Product detail: square carousel, no border-radius ── */
.ns-carousel,
.ns-carousel-track div {
  border-radius: 0 !important;
}
.ns-carousel {
  aspect-ratio: 1 / 1 !important;
}
/* Hide any stray badge on product detail page */
.product-gallery .product-badge,
.ns-carousel .product-badge {
  display: none !important;
}

/* ── ATC button: no golden hover, always white ── */
.add-to-cart-btn:hover,
.add-to-cart-btn:focus,
.add-to-cart-btn:active {
  background: transparent !important;
  color: var(--text-primary) !important;
  border-color: #1a1a1a !important;
}

/* ── Review sheet: consistent padding fix ── */
.ns-sheet-header,
.ns-sheet-summary-row,
.ns-rating-breakdown,
.ns-reviews-list,
.ns-share-card-wrap {
  padding-left: 18px !important;
  padding-right: 18px !important;
}
.ns-reviews-list {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}
.ns-share-card {
  margin-left: 18px !important;
  margin-right: 18px !important;
}

/* ── Rating bars: smooth open/close with max-height transition ── */
.ns-rating-breakdown {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s cubic-bezier(0.4,0,0.2,1), padding 0.35s ease;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}
.ns-rating-breakdown.ns-breakdown-open {
  max-height: 240px;
  padding-top: 16px !important;
  padding-bottom: 16px !important;
}

/* Bar fill animation — starts at 0, animates to target when open */
.ns-bar-fill {
  width: 0 !important;
  transition: width 0.55s cubic-bezier(0.4,0,0.2,1);
}
.ns-breakdown-open .ns-bar-fill {
  width: var(--bar-pct) !important;
}

/* Summary row clickable arrow — matches Image 2/3 style */
.ns-summary-toggle-arrow {
  display: inline-flex;
  align-items: center;
  margin-left: 4px;
  transition: transform 0.25s ease;
  flex-shrink: 0;
}
.ns-summary-toggle-arrow svg {
  display: block;
}
.ns-breakdown-open-arrow {
  transform: rotate(180deg);
}


/* ====== TOAST NOTIFICATION ====== */
.toast-message {
  position: fixed;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: #222;
  color: #fff;
  padding: 12px 24px;
  border-radius: 24px;
  font-size: 14px;
  font-weight: 500;
  z-index: 99999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
  white-space: nowrap;
  box-shadow: 0 4px 16px rgba(0,0,0,0.18);
}
.toast-message.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* ── Mobile 2-col shop grid — compact card text ── */
@media (max-width: 768px) {
  .product-info {
    padding: 8px 0 10px 0;
  }
  .product-info .product-category {
    font-size: 9px;
    margin-bottom: 2px;
  }
  .product-info h3 {
    font-size: 12px;
    margin-bottom: 3px;
    line-height: 1.3;
  }
  .product-price .current {
    font-size: 13px !important;
  }
  .product-price .original {
    font-size: 11px;
  }
  .product-rating {
    font-size: 10px;
    min-height: 20px;
    height: 20px;
  }
  .add-to-cart-btn {
    font-size: 10px !important;
    padding: 7px 8px !important;
  }
}

/* ── Palmonas-style horizontal category tab strip ── */
.shop-cat-strip {
  display: flex;
  gap: 0;
  overflow-x: auto;
  border-bottom: 1px solid var(--border);
  margin: 6px 0 12px 0;
  padding-bottom: 0;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}
.shop-cat-strip::-webkit-scrollbar { display: none; }

.shop-cat-btn {
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  padding: 12px 18px;
  font-size: 13px;
  font-family: var(--font-body);
  font-weight: 500;
  color: #888888;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.2s;
  margin-bottom: -1px;
  position: relative;
}
.shop-cat-btn:hover {
  color: #1a1a1a;
}
.shop-cat-btn.active {
  color: #1a1a1a;
  font-weight: 600;
  border-bottom: 2px solid transparent;
}
.shop-cat-btn.active::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 15%;
  right: 15%;
  height: 2px;
  background: #1a1a1a;
  border-radius: 2px;
}

@media (max-width: 768px) {
  .shop-cat-btn {
    font-size: 12px;
    padding: 10px 14px;
  }
}

/* ── Shop page: equal 10px gap all sides like Palmonas ── */
@media (max-width: 768px) {
  .shop-page-wrap .container,
  section.container {
    padding-left: 10px !important;
    padding-right: 10px !important;
  }
  .shop-cat-strip {
    padding: 0 4px;
  }
  .shop-toolbar {
    padding: 8px 4px 12px 4px;
    margin-bottom: 0;
  }
  .products-grid {
    gap: 10px !important;
    padding: 0 !important;
  }
  .product-card {
    border: none;
  }
  .product-info {
    padding: 8px 4px 10px 4px;
  }
}

/* ── Featured Collection (home page): equal side + card gaps ── */
@media (max-width: 768px) {
  .products-section .container {
    padding-left: 10px !important;
    padding-right: 10px !important;
  }
  .products-section .products-grid {
    gap: 10px !important;
    padding: 0 !important;
  }
}

/* ── Shop toolbar: center align on mobile ── */
@media (max-width: 768px) {
  .shop-toolbar {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-align: center;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 10px 12px;
    margin-bottom: 0;
  }
  .shop-toolbar .result-count {
    font-size: 12px;
  }
  .shop-toolbar select {
    font-size: 12px;
    padding: 6px 12px;
    text-align: center;
  }
}

/* ===== GLOBAL VISITED / ACTIVE LINK FIX ===== */
a:visited,
a:active,
a:focus {
  color: inherit !important;
}

@media (hover: none) {
  a:not(.btn):hover,
  a:not(.btn):active,
  a:not(.btn):visited,
  a:not(.btn):focus {
    color: inherit !important;
  }
}

/* Footer specific */
footer a:visited,
footer a:active,
footer a:focus {
  color: inherit !important;
}

/* Nav specific */
nav a:visited,
nav a:active,
nav a:focus,
.nav-links a:visited,
.nav-links a:active,
.nav-links a:hover,
.nav-links a:focus {
  color: inherit !important;
}

/* Product cards */
.product-card a:visited,
.product-card a:active,
.product-card a:focus,
.product-info h3 a:visited,
.product-info h3 a:active {
  color: inherit !important;
}

/* ===== TAP HIGHLIGHT & FOCUS OUTLINE COMPLETE FIX ===== */
/* Remove blue tap highlight on ALL elements (mobile) */
* {
  -webkit-tap-highlight-color: transparent !important;
  tap-highlight-color: transparent !important;
}

/* Remove focus outline on payment boxes and clickable divs */
.payment-box,
.payment-box *,
.payment-header,
.shipping-option,
.coupon-item,
[onclick] {
  -webkit-tap-highlight-color: transparent !important;
  outline: none !important;
  user-select: none;
  -webkit-user-select: none;
}

/* Select/dropdown - remove blue focus ring on mobile */
select,
select:focus,
select:active {
  outline: none !important;
  -webkit-tap-highlight-color: transparent !important;
  box-shadow: none !important;
}

/* Native select option highlight can't be fully removed via CSS,
   but this neutralizes the focus state on the select element itself */
select:focus-visible {
  outline: none !important;
  border-color: var(--gold) !important;
  box-shadow: 0 0 0 2px rgba(201, 168, 76, 0.2) !important;
}

/* ============================================
   NITYA SNEH PROMISE SECTION
   ============================================ */
/* ============================================
   NITYA SNEH PROMISE — Single slide carousel
   ============================================ */
.ns-promise-section {
  background: #fff;
  border-bottom: 1px solid var(--border);
  padding: 14px 20px 0;
  text-align: center;
  overflow: hidden;
}

.ns-promise-heading {
  font-size: 16px !important;
  font-weight: 400 !important;
  font-family: inherit !important;
  letter-spacing: 0.22em !important;
  color: var(--text-primary);
  margin-bottom: 24px;
  text-transform: uppercase;
}

.ns-promise-slider {
  position: relative;
  max-width: 380px;
  margin: 0 auto;
  height: 170px;
  overflow: hidden;
}

.ns-promise-slide {
  position: absolute;
  top: 0; left: 0; right: 0;
  opacity: 0;
  pointer-events: none;
  text-align: center;
  padding: 0 12px;
}

.ns-promise-slide.active {
  opacity: 1;
  pointer-events: auto;
}

.ns-promise-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 22px;
}

.ns-promise-icon svg {
  width: 100%;
  height: 100%;
}

.ns-promise-slide h4 {
  font-size: 11.5px;
  font-weight: 400;
  letter-spacing: 0.13em;
  color: var(--text-primary);
  margin-bottom: 14px;
  text-transform: uppercase;
  font-family: inherit;
}

.ns-promise-divider {
  height: 1px;
  background: var(--text-muted);
  margin: 0 auto 16px;
  opacity: 0.45;
  width: var(--divider-w, 56px);
}

.ns-promise-slide p {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.75;
  max-width: 300px;
  margin: 0 auto;
  padding-bottom: 8px;
  font-family: inherit;
}

.ns-promise-dots {
  display: none;
}

/* ============================================
   SEO ACCORDION SECTION — Image 6 style
   ============================================ */
.ns-seo-section {
  background: #fff;
  border-top: none;
  padding: 0;
}

.ns-seo-section .container {
  max-width: 900px;
}

.ns-acc-item {
  border-bottom: 1px solid rgba(26,26,26,0.12);
}
.ns-acc-item:first-child {
  border-top: none;
}

.ns-acc-trigger {
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  font-size: 13.5px;
  font-weight: 400;
  color: #1a1a1a;
  text-align: left;
  letter-spacing: 0;
  font-family: inherit;
  transition: opacity 0.2s;
  -webkit-tap-highlight-color: transparent;
  outline: none;
}

.ns-acc-trigger:hover {
  opacity: 0.7;
}

.ns-acc-trigger:focus,
.ns-acc-trigger:active {
  color: #1a1a1a;
  opacity: 1;
  outline: none;
  background: none;
}

.ns-acc-icon {
  font-size: 18px;
  font-weight: 400;
  color: #1a1a1a;
  flex-shrink: 0;
  margin-left: 16px;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 14px;
  text-align: center;
  overflow: hidden;
}

.ns-acc-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.ns-acc-h2 {
  font-size: 14px !important;
  font-weight: 400 !important;
  font-family: inherit !important;
  font-style: normal !important;
  letter-spacing: 0 !important;
  color: #1a1a1a;
  margin-bottom: 12px;
  line-height: 1.3;
  text-transform: none !important;
}

.ns-acc-lead {
  font-size: 13.5px;
  color: #1a1a1a;
  line-height: 1.75;
  margin-bottom: 20px;
  font-weight: 400;
}

.ns-acc-faq {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding-bottom: 28px;
}

.ns-faq-item {
  padding-left: 0;
  border-left: none;
}

.ns-faq-q {
  font-size: 13.5px;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 5px;
}

.ns-faq-a {
  font-size: 13.5px;
  color: #1a1a1a;
  line-height: 1.72;
  font-weight: 400;
}

@media (max-width: 768px) {
  .ns-promise-heading {
    font-size: 15px;
  }
  .ns-promise-slider {
    height: 290px;
  }
  .ns-acc-h2 {
    font-size: 15px;
  }
  .ns-acc-trigger,
  .ns-acc-lead,
  .ns-faq-q,
  .ns-faq-a {
    font-size: 13px;
  }
}

/* ============================================
   POPULAR SEARCHES SECTION
   ============================================ */
.ns-popular-searches {
  background: #fff;
  border-top: 1px solid var(--border);
  padding: 32px 0 36px;
}

.ns-popular-searches .container {
  max-width: 100%;
  padding: 0 16px;
}

.ns-ps-title {
  font-size: 15px !important;
  font-weight: 600 !important;
  font-style: normal !important;
  font-family: inherit !important;
  color: var(--text-primary);
  margin-bottom: 22px;
  letter-spacing: 0 !important;
  text-transform: none !important;
}

.ns-ps-group {
  margin-bottom: 0;
  padding: 18px 0;
  border-bottom: 1px solid var(--border);
}

.ns-ps-group:first-of-type {
  padding-top: 0;
}

.ns-ps-group:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.ns-ps-group h4 {
  font-size: 13px !important;
  font-weight: 400 !important;
  font-style: normal !important;
  color: var(--text-primary) !important;
  margin-bottom: 4px;
  font-family: inherit !important;
  letter-spacing: 0 !important;
  text-transform: none !important;
}

.ns-ps-group p {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.9;
  font-weight: 400;
}

.ns-ps-group p a {
  color: var(--text-secondary);
  text-decoration: none;
  transition: color 0.2s;
}

.ns-ps-group p a:hover {
  color: var(--gold);
}

@media (max-width: 768px) {
  .ns-promise-heading {
    font-size: 17px;
  }
  .ns-ps-title {
    font-size: 15px;
  }
  .ns-ps-group p {
    font-size: 12.5px;
  }
}

/* ====== PRODUCT SKELETON LOADER (Stale-While-Revalidate) ====== */
.nsj-skeleton-card {
  background: #fff;
  border: 1px solid #f0f0f0;
  border-radius: 4px;
  padding: 10px;
  overflow: hidden;
}
.nsj-skel {
  background: linear-gradient(90deg, #f5f5f5 25%, #ebebeb 50%, #f5f5f5 75%);
  background-size: 200% 100%;
  animation: nsj-shimmer 1.4s infinite;
  border-radius: 4px;
}
.nsj-skel-img  { width: 100%; aspect-ratio: 1 / 1; }
.nsj-skel-txt  { height: 14px; }
.nsj-skel-btn  { width: 100%; height: 38px; margin-top: 10px; border-radius: 4px; }
@keyframes nsj-shimmer {
  0%   { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* ====== LOAD MORE BUTTON ====== */
#shop-load-more-wrap {
  padding: 16px 0 12px !important;
  border-bottom: 1px solid rgba(26,26,26,0.12);
  margin: 0 -16px;
  padding-left: 16px !important;
  padding-right: 16px !important;
}
#shop-count-label {
  display: none !important;
}
#shop-load-more-btn {
  display: inline-block;
  padding: 7px 20px;
  background: transparent;
  border: 1.5px solid #1a1a1a;
  color: #1a1a1a;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  cursor: pointer;
  border-radius: 6px;
  font-family: var(--font-body);
  transition: border-color 0.2s ease;
}
#shop-load-more-btn:hover {
  background: transparent;
  color: #1a1a1a;
  border-color: #888;
}
#shop-load-more-btn:active,
#shop-load-more-btn:focus {
  background: transparent;
  color: #1a1a1a;
  border-color: #1a1a1a;
  outline: none;
}

/* ── Promo Ticker ─────────────────────────────────────────── */
.ns-ticker-wrap {
  width: 100%;
  background: #1a1a1a;
  overflow: hidden;
  height: 36px;
  display: flex;
  align-items: center;
  position: relative;
  z-index: 100;
}
@keyframes ns-ticker-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.ns-ticker-track {
  display: flex;
  align-items: center;
  white-space: nowrap;
  will-change: transform;
  animation: ns-ticker-scroll 30s linear infinite;
}
.ns-ticker-item {
  color: #ffffff !important;
  font-family: var(--font-body, 'Inter', sans-serif);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.06em;
  text-decoration: none;
  padding: 0 20px;
  flex-shrink: 0;
}
.ns-ticker-item:hover { opacity: 0.7; }
.ns-ticker-sep {
  color: #555;
  font-size: 13px;
  flex-shrink: 0;
  user-select: none;
}
