/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  background: #FAF8F5;
  /* Warm cream/ivory */
  color: #4A3F35;
  /* Warm dark brown */
  overflow-x: hidden;
  font-weight: 300;
  /* Lighter default */
}

/* REDUCED MOTION ACCESSIBILITY */
@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important;
    transform: none !important;
  }
}

/* NAV */
.nav {
  position: fixed;
  top: 0;
  width: 100%;
  padding: 32px 64px;
  /* Larger initial padding */
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1000;
  background: transparent;
  backdrop-filter: none;
  border-bottom: 1px solid transparent;
  transition: all 0.4s ease;
  color: white;
  /* Force white text for transparent/hero state */
}

.nav.scrolled {
  padding: 18px 64px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: 1px dashed #D4C4B0;
  /* Delicate lace border */
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}

.nav:hover {
  background: rgba(0, 0, 0, 0.1);
}

.nav.scrolled:hover {
  background: rgba(255, 255, 255, 0.95);
}

.nav.scrolled .logo,
.nav.scrolled .cta-nav {
  color: #4A3F35;
  /* Warm brown */
  text-shadow: none;
  border-color: #D4C4B0;
}

.nav.scrolled .cta-nav:hover {
  background: #F5EFE7;
  color: #4A3F35;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

/* LACY NAV LOGO */
.logo {
  font-family: 'Dancing Script', cursive;
  font-size: 28px;
  color: white;
  text-decoration: none;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.15), 0 0 20px rgba(255, 255, 255, 0.3);
}

.cta-nav {
  color: white;
  text-decoration: none;
  border: 1px dashed rgba(255, 255, 255, 0.5);
  /* Lacy border */
  padding: 8px 20px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 300;
  font-family: 'Inter', sans-serif;
  transition: all 0.4s ease;
  backdrop-filter: blur(4px);
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.cta-nav:hover {
  background: rgba(255, 255, 255, 0.25);
  border-color: white;
  box-shadow: 0 4px 12px rgba(255, 255, 255, 0.2);
  transform: translateY(-1px);
}

/* Dark Nav Variant (for light pages) */
.nav.dark-nav .logo {
  color: #1a1a1a;
  text-shadow: none;
}

.nav.dark-nav .cta-nav {
  color: #1a1a1a;
  border-color: #1a1a1a;
}

.nav.dark-nav .cta-nav:hover {
  background: #1a1a1a;
  color: white;
}

/* DESKTOP NAV & CART ICON */
.desktop-nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.desktop-nav a {
  text-decoration: none;
  color: inherit;
  font-size: 15px;
  font-weight: 500;
  transition: opacity 0.3s;
  display: flex;
  align-items: center;
  gap: 6px;
}

.desktop-nav a:hover {
  opacity: 0.7;
}

/* Ensure SVG matches text color */
.cart-icon svg {
  display: block;
}

/* HERO */
.hero {
  height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  /* Vertically center content */
  justify-content: flex-start;
  overflow: hidden;
}

.hero video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

/* Overlay for text readability */
.hero::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.25);
  /* Dark overlay */
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  margin-left: 8%;
  max-width: 600px;
  color: white;
}

/* GEN Z HERO */
.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(64px, 9vw, 128px);
  color: white;
  margin-bottom: 24px;
  letter-spacing: -3px;
  /* Tight */
  line-height: 0.9;
  /* Stacked */
  font-weight: 800;
  /* Extra Bold */
  text-transform: uppercase;
  text-shadow: 4px 4px 0px rgba(0, 0, 0, 0.3);
  /* Hard shadow */
}

.tagline {
  color: white;
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  letter-spacing: 4px;
  /* Wide breather */
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 32px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.urdu {
  font-family: 'Inter', sans-serif;
  /* Fallback if no Urdu font, works okay */
  font-size: 24px;
  opacity: 0.8;
  margin-top: 12px;
  color: white;
  font-weight: 300;
}

/* CTA BUTTON - GEN Z */
.cta {
  margin-top: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: white;
  background: transparent;
  text-decoration: none;
  border: 2px solid white;
  border-radius: 100px;
  padding: 16px 36px;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
  z-index: 0;
}

/* Sliding Fill Effect */
.cta::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: white;
  z-index: -1;
  transform: translateX(-101%);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.cta:hover {
  color: #1a1a1a;
  transform: translateY(-2px);
  box-shadow: 3px 3px 0px rgba(255, 255, 255, 0.3);
}

.cta:hover::after {
  transform: translateX(0);
}

.cta:active {
  transform: translateY(0);
  box-shadow: none;
}

/* Product Page Override */
.product-info-panel .cta {
  color: #1a1a1a;
  border-color: #1a1a1a;
}

.product-info-panel .cta::after {
  background: #1a1a1a;
}

.product-info-panel .cta:hover {
  color: white !important;
  box-shadow: 3px 3px 0px rgba(0, 0, 0, 0.1);
}

/* PRODUCT PAGE */
/* Keeping this minimal or legacy block small to avoid conflicts,
  or assuming the lower block overrides it. Actually,
  it's safer to comment this out or align it. */
.product-detail {
  /* This block is largely superseded by the Redesign block at the bottom of the file */
  padding-top: 80px;
}

/* .product-images removed - see Split Screen styles */

/* .product-images img removed */

/* hover removed */

/* .product-info-panel sticky removed - see Split Screen styles */

/* GEN Z PRODUCT PAGE TYPOGRAPHY */
.product-info-panel h1 {
  font-family: 'Playfair Display', serif;
  font-size: 48px;
  margin-bottom: 12px;
  font-weight: 800;
  /* Extra Bold */
  line-height: 1.0;
  text-transform: uppercase;
  /* Loud */
  letter-spacing: -1px;
}

.product-info-panel .price {
  font-family: 'Inter', sans-serif;
  font-size: 20px;
  font-weight: 700;
  /* Bold */
  opacity: 1;
  /* Fully visible */
  display: block;
  margin-bottom: 40px;
}

.description {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: #4a4a4a;
  margin-bottom: 40px;
}

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

/* Product Page CTA Styling */
.product-info-panel .cta {
  background: #1a1a1a;
  color: white;
  border-color: #1a1a1a;
  margin-top: 24px;
}

.product-info-panel .cta:hover {
  background: transparent;
  color: #1a1a1a;
  border-color: #1a1a1a;
}

/* GEN Z SIZE SELECTOR */
.sizes {
  display: flex;
  gap: 12px;
  margin-bottom: 48px;
}

.size-option {
  width: 52px;
  height: 52px;
  border: 2px solid #1a1a1a;
  /* Chunky border */
  border-radius: 4px;
  /* Square corners */
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
  background: white;
}

.size-option:hover {
  transform: translate(-2px, -2px);
  box-shadow: 3px 3px 0px #1a1a1a;
}

.size-option.selected {
  background: #1a1a1a;
  color: white;
  border-color: #1a1a1a;
  transform: translate(-2px, -2px);
  box-shadow: 3px 3px 0px rgba(0, 0, 0, 0.3);
}

/* Mobile Responsive */
/* Old mobile query removed */

/* COLLECTION */
/* COLLECTION - GEN Z REVAMP */
.collection {
  padding: 120px 8%;
}

.collection h1 {
  font-family: 'Playfair Display', serif;
  font-size: 48px;
  font-weight: 700;
  /* Bold */
  text-transform: uppercase;
  /* Yelling */
  letter-spacing: -0.5px;
  color: #1a1a1a;
  margin-bottom: 64px;
  text-align: center;
}

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

/* Product Card - Neo-Brutalism Lite */
.product {
  text-decoration: none;
  color: inherit;
  display: block;
  background: white;
  border: 2px solid #1a1a1a;
  /* Hard border */
  border-radius: 12px;
  padding: 12px;
  /* Frame the content */
  transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
  position: relative;
}

.product:hover {
  transform: translate(-4px, -4px);
  /* Lift up-left */
  box-shadow: 6px 6px 0px #1a1a1a;
  /* Hard shadow offset */
}

.product-image-wrapper {
  overflow: hidden;
  border-radius: 8px;
  /* Tighter inner radius */
  background: #f0f0f0;
  aspect-ratio: 3/4;
  border: 1px solid #1a1a1a;
  /* Definition border */
}

.product img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  display: block;
}

.product:hover img {
  transform: scale(1.1);
}

.info {
  margin-top: 16px;
  padding: 0 4px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.product h3 {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 0;
  line-height: 1.2;
}

.product span {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  color: #1a1a1a;
  font-weight: 600;
}

/* PHILOSOPHY */
.philosophy {
  padding: 140px 10%;
  text-align: center;
  background: #fff;
}

/* GEN Z PHILOSOPHY */
.philosophy p {
  font-family: 'Playfair Display', serif;
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.3;
  color: #1a1a1a;
  max-width: 900px;
  margin: 0 auto 32px;
  font-weight: 800;
  /* Bold */
  text-transform: uppercase;
  letter-spacing: -1px;
}

.philosophy .urdu {
  color: #888;
  font-size: 20px;
}

/* MOVEMENT */
.movement {
  height: 85vh;
  position: relative;
  overflow: hidden;
}

.movement video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* GEN Z MOVEMENT CAPTION */
.caption {
  position: absolute;
  bottom: 48px;
  left: 8%;
  color: white;
  font-family: 'Playfair Display', serif;
  font-size: 40px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -1px;
  text-shadow: 3px 3px 0px rgba(0, 0, 0, 0.4);
}

/* GEN Z FOOTER */
.footer {
  padding: 80px 8%;
  background: #1a1a1a;
  color: #fcfbf9;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  border-top: 4px solid white;
  /* Hard border */
}

.footer div:first-child {
  font-family: 'Playfair Display', serif;
  font-size: 32px;
  font-weight: 800;
  text-transform: uppercase;
}

.meta {
  text-align: right;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  opacity: 0.6;
  line-height: 1.6;
}

.meta span {
  display: block;
}

/* SCROLL REVEAL - Enhanced */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1s cubic-bezier(0.5, 0, 0, 1), transform 1s cubic-bezier(0.5, 0, 0, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.soft {
  transition-duration: 1.5s;
  /* Slower, softer entrance */
}


/* MOBILE NAV */
.hamburger-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1002;
  padding: 22px;
}

.hamburger-btn span {
  display: block;
  width: 24px;
  height: 3px;
  background-color: white;
  margin-bottom: 10px;
  transition: 0.3s;
}

/* Nav Dark Mode Hamburger */
.nav.dark-nav .hamburger-btn span,
.nav.scrolled .hamburger-btn span {
  background-color: #1a1a1a;
}

/* Mobile Nav Overlay */
.mobile-nav-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: white;
  z-index: 1001;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.mobile-nav-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.mobile-link {
  font-family: 'Playfair Display', serif;
  font-size: 32px;
  color: #1a1a1a;
  text-decoration: none;
  margin-bottom: 24px;
  opacity: 0;
  transform: translateY(20px);
  transition: 0.5s ease;
}

.mobile-nav-overlay.active .mobile-link {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.2s;
}


/* INTERACTIVE BUTTON */
.cta.added {
  background-color: #1a1a1a;
  color: white;
  border-color: #1a1a1a;
}

.cta.added span::after {
  content: " \2713";
  /* Checkmark */
}


/* ENHANCED FOOTER */
.footer-brand {
  margin-bottom: 40px;
}

.newsletter {
  margin-top: 16px;
  display: flex;
  gap: 8px;
  max-width: 300px;
}

.newsletter input {
  flex: 1;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.05);
  color: white;
  border-radius: 4px;
  font-size: 14px;
}

.newsletter button {
  padding: 10px 16px;
  background: white;
  border: none;
  color: #1a1a1a;
  border-radius: 4px;
  cursor: pointer;
  transition: 0.3s;
}

.newsletter button:hover {
  opacity: 0.8;
}

.footer-links {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 24px;
  width: 100%;
}

.socials {
  display: flex;
  gap: 24px;
}

.socials a {
  color: #fcfbf9;
  text-decoration: none;
  font-size: 14px;
  opacity: 0.7;
  transition: opacity 0.3s;
}

.socials a:hover {
  opacity: 1.0;
}


/* LIGHTBOX */
.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  z-index: 2000;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  backdrop-filter: blur(5px);
}

.lightbox.active {
  opacity: 1;
  pointer-events: auto;
}

.lightbox img {
  max-width: 90%;
  max-height: 90vh;
  border-radius: 4px;
  box-shadow: 0 0 50px rgba(0, 0, 0, 0.5);
}

.lightbox-trigger {
  cursor: zoom-in;
}


/* MEDIA QUERIES UPDATE */
@media (max-width: 768px) {
  .desktop-nav {
    display: none;
  }

  .hamburger-btn {
    display: block;
  }

  .nav {
    padding: 20px 24px;
  }

  .hero-content {
    margin-left: 24px;
    margin-right: 24px;
  }

  .collection {
    padding: 80px 24px;
  }

  .philosophy {
    padding: 100px 24px;
  }

  .footer {
    padding: 60px 24px;
    flex-direction: column;
    justify-content: space-between;
  }

  .footer-links {
    align-items: flex-start;
  }

  .meta {
    text-align: left;
  }
}


/* SHOPPING CART STYLES */
.cart-icon {
  margin-left: 24px;
  text-decoration: none;
  color: white;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  position: relative;
}

.nav.dark-nav .cart-icon,
.nav.scrolled .cart-icon {
  color: #1a1a1a;
}

.cart-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 2000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  backdrop-filter: blur(2px);
}

.cart-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

/* GEN Z CART DRAWER */
.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  max-width: 420px;
  height: 100vh;
  background: white;
  z-index: 2001;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: -6px 0 0px #1a1a1a;
  /* Hard shadow */
  display: flex;
  flex-direction: column;
  border-left: 3px solid #1a1a1a;
}

.cart-drawer.active {
  transform: translateX(0);
}

.cart-header {
  padding: 32px 24px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 3px solid #1a1a1a;
  /* Chunky border */
  background: #1a1a1a;
}

.cart-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  margin: 0;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.5px;
  color: white;
}

.close-cart {
  background: white;
  border: 2px solid white;
  font-size: 20px;
  cursor: pointer;
  color: #1a1a1a;
  line-height: 1;
  width: 32px;
  height: 32px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
  font-weight: 700;
}

.close-cart:hover {
  transform: rotate(90deg);
  box-shadow: 2px 2px 0px rgba(255, 255, 255, 0.5);
}

.cart-items {
  flex: 1;
  overflow-y: auto;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.empty-msg {
  text-align: center;
  color: #1a1a1a;
  margin-top: 40px;
  font-family: 'Playfair Display', serif;
  font-size: 16px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.5px;
}

/* Cart Item */
.cart-item {
  display: flex;
  gap: 16px;
  padding: 16px;
  border: 2px solid #1a1a1a;
  border-radius: 8px;
  background: #fafafa;
  transition: all 0.3s;
  animation: fadeIn 0.3s ease;
}

.cart-item:hover {
  transform: translateX(-4px);
  box-shadow: 4px 4px 0px #1a1a1a;
}

.cart-item img {
  width: 90px;
  height: 110px;
  object-fit: cover;
  border-radius: 4px;
  border: 2px solid #1a1a1a;
}

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

.cart-item-details h4 {
  font-family: 'Playfair Display', serif;
  font-size: 15px;
  margin-bottom: 4px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.5px;
}

.cart-item-details p {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  color: #1a1a1a;
  margin-bottom: 8px;
  font-weight: 600;
}

.remove-btn {
  background: white;
  border: 2px solid #1a1a1a;
  text-decoration: none;
  padding: 6px 14px;
  color: #1a1a1a;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}

.remove-btn:hover {
  background: #1a1a1a;
  color: white;
  transform: translate(-2px, -2px);
  box-shadow: 2px 2px 0px #1a1a1a;
}



/* GEN Z CART FOOTER */
.cart-footer {
  padding: 24px;
  border-top: 3px solid #1a1a1a;
  /* Chunky border */
  background: white;
}

.cart-total {
  display: flex;
  justify-content: space-between;
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  margin-bottom: 24px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -1px;
}

.checkout-btn {
  width: 100%;
  padding: 16px;
  background: transparent;
  color: #1a1a1a;
  border: 2px solid #1a1a1a;
  border-radius: 100px;
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
  z-index: 0;
}

.checkout-btn::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #1a1a1a;
  z-index: -1;
  transform: translateX(-101%);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.checkout-btn:hover {
  color: white;
  transform: translateY(-2px);
  box-shadow: 3px 3px 0px #1a1a1a;
}

.checkout-btn:hover::after {
  transform: translateX(0);
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* === AWAY-STYLE PREMIUM LAYOUT === */

/* Wrapper */
.product-detail {
  /* padding-top: 30px; */
  padding-bottom: 120px;
  /* Ensure space before footer */
  min-height: 100vh;
  display: grid;
  grid-template-columns: 65% 35%;
  position: relative;
}

/* LEFT: GALLERY STAGE */
.product-gallery-stage {
  background: white;
  position: relative;
  height: 100%;
  width: 100%;
  display: flex;
  align-items: center;
  /* Vertically center content */
  justify-content: center;
}

/* Gallery Container (Thumbs + Main) */
.gallery-container {
  display: flex;
  width: 100%;
  height: 60%;
  /* Constrain height to keep it tight */
  max-width: 1400px;
  padding: 0 40px;
  gap: 20px;
}

/* Thumbnail Strip (Vertical) */
.thumbnail-strip {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 80px;
  flex-shrink: 0;
  max-height: 100%;
  overflow-y: auto;
  padding-right: 10px;
  /* Space for scrollbar if needed */
  scrollbar-width: none;
}

.thumbnail-strip::-webkit-scrollbar {
  display: none;
}

.thumbnail {
  width: 100%;
  aspect-ratio: 1;
  /* Square thumbnails */
  object-fit: cover;
  border-radius: 4px;
  /* Slight rounding, not pill */
  cursor: pointer;
  opacity: 0.5;
  transition: all 0.2s ease;
  border: 1px solid transparent;
}

.thumbnail:hover {
  opacity: 0.8;
}

.thumbnail.active {
  opacity: 1;
  border-color: #1a1a1a;
}

/* Main Slider Area */
.gallery-slider-wrapper {
  flex-grow: 1;
  position: relative;
  height: 100%;
  border-radius: 8px;
  /* Optional subtle radius */
  overflow: hidden;
}

.gallery-slider {
  display: flex;
  height: 100%;
  width: 100%;
  transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

.gallery-slide {
  flex: 0 0 100%;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gallery-slide img {
  max-height: 100%;
  max-width: 100%;
  width: auto;
  /* Let it fit naturally like a suitcase */
  height: auto;
  object-fit: contain;
  /* Don't crop, show the full product */
  mix-blend-mode: multiply;
  /* If white background images, this helps blend to gray. Remove if photos are lifestyle */
}

/* Navigation Arrows - Floating on sides of wrapper */
.gallery-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: white;
  border: 1px solid #e0e0e0;
  color: #1a1a1a;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: all 0.2s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.gallery-nav-btn:hover {
  background: #1a1a1a;
  color: white;
  border-color: #1a1a1a;
}

.prev-btn {
  left: 20px;
}

.next-btn {
  right: 20px;
}


/* RIGHT: INFO PANEL */
.product-details-stage {
  background: white;
  height: 100%;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  /* Center vertically */
  padding: 60px;
  border-left: 1px solid rgba(0, 0, 0, 0.03);
  /* Subtle separation */
}

.product-info-panel {
  max-width: 480px;
  margin: 0;
  /* Align left within the column usually looks better here */
}

.product-info-panel h1 {
  font-size: 2.8rem;
  font-family: 'Playfair Display', serif;
  /* Or clean sans */
  font-weight: 500;
  margin-bottom: 0.5rem;
  color: #1a1a1a;
}

.product-info-panel .price {
  font-size: 1.4rem;
  color: #1a1a1a;
  margin-bottom: 2.5rem;
  display: block;
}

.description {
  color: #555;
  margin-bottom: 40px;
  font-size: 1rem;
  line-height: 1.7;
}

/* MOBILE RESPONSIVE */
@media (max-width: 900px) {
  .product-detail {
    display: flex;
    flex-direction: column;
    height: auto;
    overflow: visible;
  }

  .product-gallery-stage {
    height: 60vh;
    padding: 0;
  }

  .gallery-container {
    padding: 0;
    gap: 0;
    height: 100%;
  }

  .thumbnail-strip {
    display: none;
    /* Hide thumbs on mobile, swipe only */
  }

  .gallery-slider-wrapper {
    width: 100%;
  }

  .gallery-slide img {
    object-fit: cover;
    /* Cover on mobile for impact */
    mix-blend-mode: normal;
  }

  .product-details-stage {
    padding: 40px 24px 80px 24px;
    height: auto;
  }

  .product-info-panel h1 {
    font-size: 2.2rem;
  }
}

/* =========================
   MOBILE FIX — CLEAN & TIGHT
   ========================= */

@media (max-width: 600px) {

  /* GLOBAL SAFETY */
  body {
    overflow-x: hidden;
  }

  /* NAV */
  .nav {
    padding: 14px 18px;
  }

  .logo {
    font-size: 22px;
    text-shadow: none;
  }

  /* HERO */
  .hero {
    height: 100svh; /* iOS safe viewport */
    justify-content: center;
  }

  .hero::after {
    background: rgba(0, 0, 0, 0.35);
  }

  .hero-content {
    margin: 0;
    padding: 0 20px;
    text-align: center;
    max-width: 100%;
  }

  .hero h1 {
    font-size: clamp(42px, 14vw, 64px);
    line-height: 1;
    letter-spacing: -1px;
    text-shadow: 2px 2px 0 rgba(0,0,0,0.35);
  }

  .tagline {
    font-size: 13px;
    letter-spacing: 2px;
    margin-bottom: 20px;
  }

  .urdu {
    font-size: 18px;
  }

  .cta {
    padding: 14px 28px;
    font-size: 14px;
  }

  /* COLLECTION */
  .collection {
    padding: 64px 20px;
  }

  .collection h1 {
    font-size: 32px;
    margin-bottom: 40px;
  }

  .grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .product {
    padding: 10px;
    border-radius: 10px;
  }

  .product h3 {
    font-size: 16px;
  }

  .product span {
    font-size: 14px;
  }

  /* PHILOSOPHY */
  .philosophy {
    padding: 80px 20px;
  }

  .philosophy p {
    font-size: 24px;
    line-height: 1.3;
  }

  /* MOVEMENT */
  .movement {
    height: 70svh;
  }

  .caption {
    font-size: 24px;
    left: 20px;
    bottom: 24px;
  }

  /* FOOTER */
  .footer {
    padding: 48px 20px;
    flex-direction: column;
    align-items: flex-start;
    gap: 32px;
  }

  .footer .logo {
    font-size: 24px;
  }

  .newsletter {
    width: 80%;
    max-width: 100%;
  }

  .footer-links {
    align-items: flex-start;
    gap: 16px;
  }

  .meta {
    text-align: left;
  }

  /* MOBILE NAV LINKS */
  .mobile-link {
    font-size: 28px;
  }
}
