:root {
  --primary: #8B1A1A;
  --secondary: #1A1A1A;
  --accent: #D4A84B;
  --bg-light: #FAF7F2;
  --bg-dark: #2D2D2D;
  --text-primary: #333333;
  --text-light: #FFFFFF;
  --border-accent: #C9A962;
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Poppins', sans-serif;
  --font-accent: 'Cormorant Garamond', Georgia, serif;
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 20px rgba(0,0,0,0.12);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.16);
  --transition: 300ms ease;
}

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

html {
  scroll-behavior: smooth;
}

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

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

ul {
  list-style: none;
}

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

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

.section {
  padding: 80px 0;
}

.section-dark {
  background: var(--bg-dark);
  color: var(--text-light);
}

.section-header {
  text-align: center;
  margin-bottom: 48px;
}

.section-header h2 {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 600;
  margin-bottom: 16px;
}

.section-header p {
  font-size: 1.1rem;
  opacity: 0.8;
  max-width: 600px;
  margin: 0 auto;
}

.gold-line {
  width: 60px;
  height: 3px;
  background: var(--accent);
  margin: 16px auto 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 500;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: var(--transition);
}

.btn-primary {
  background: var(--accent);
  color: var(--secondary);
}

.btn-primary:hover {
  filter: brightness(1.1);
  transform: scale(1.02);
}

.btn-primary:active {
  transform: scale(0.98);
}

.btn-outline {
  background: transparent;
  border: 2px solid var(--accent);
  color: var(--accent);
}

.btn-outline:hover {
  background: var(--accent);
  color: var(--secondary);
}

.btn-outline-light {
  background: transparent;
  border: 2px solid var(--text-light);
  color: var(--text-light);
}

.btn-outline-light:hover {
  background: var(--text-light);
  color: var(--secondary);
}

.navbar {
  position: fixed;
  top: 36px;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 16px 0;
  transition: background var(--transition), box-shadow var(--transition);
  background: #ffffff;
  box-shadow: var(--shadow-sm);
}

.navbar.scrolled {
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(10px);
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}
.nav-logo img {
    height: 115px;
    width: auto;
    background: #fff;
    position: fixed;
    padding: 10px;
    border-radius: 20px;
}

.nav-logo span {
  font-family: var(--font-accent);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--primary);
}

.nav-links {
  display: flex;
  gap: 40px;
}

.nav-links a {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--secondary);
  position: relative;
  padding: 4px 0;
}

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

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

.nav-links .has-submenu {
  position: relative;
}

.nav-links .submenu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  min-width: 200px;
  background: white;
  box-shadow: var(--shadow-lg);
  border-top: 2px solid var(--accent);
  padding: 8px 0;
  list-style: none;
  margin: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s;
  z-index: 100;
}

.nav-links .has-submenu:hover .submenu,
.nav-links .has-submenu:focus-within .submenu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.nav-links .submenu li a {
  display: block;
  padding: 10px 20px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--secondary);
  white-space: nowrap;
  transition: var(--transition);
}

.nav-links .submenu li a::after {
  display: none;
}

.nav-links .submenu li a:hover {
  background: var(--bg-light);
  color: var(--accent);
}

.nav-icons {
  display: flex;
  gap: 20px;
  align-items: center;
}

.nav-icons button {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--secondary);
  position: relative;
  padding: 4px;
}

.nav-icons button:hover {
  color: var(--accent);
}

.nav-icons .cart-count {
  position: absolute;
  top: -4px;
  right: -8px;
  background: var(--primary);
  color: white;
  font-size: 0.7rem;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.mobile-toggle span {
  width: 24px;
  height: 2px;
  background: var(--secondary);
  transition: var(--transition);
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  right: -100%;
  width: 280px;
  height: 100vh;
  background: white;
  box-shadow: var(--shadow-lg);
  padding: 80px 32px 32px;
  transition: right 0.4s ease;
  z-index: 999;
}

.mobile-menu.open {
  right: 0;
}

.mobile-menu-links {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.mobile-menu-links a {
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--secondary);
}

.mobile-menu-links .mobile-submenu {
  list-style: none;
  margin: 12px 0 0 16px;
  padding: 0 0 0 16px;
  border-left: 2px solid var(--accent);
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.mobile-menu-links .mobile-submenu a {
  font-size: 1rem;
  font-weight: 400;
  opacity: 0.85;
}

.mobile-menu-close {
  position: absolute;
  top: 24px;
  right: 24px;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--secondary);
}

.mobile-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0,0,0,0.5);
  z-index: 998;
  opacity: 0;
  transition: opacity 0.3s;
}

.mobile-overlay.open {
  opacity: 1;
}

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, var(--primary) 0%, #3D0E0E 50%, #1A0606 100%);
  position: relative;
  overflow: hidden;
  background-attachment: fixed;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23D4A84B' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.5;
}

.hero .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-content {
  color: var(--text-light);
}

.hero-badge {
  display: inline-block;
  background: rgba(212,168,75,0.2);
  border: 1px solid var(--accent);
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 0.85rem;
  margin-bottom: 24px;
  color: var(--accent);
}

.hero-content h1 {
  font-family: var(--font-heading);
  font-size: 4rem;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 32px;
  letter-spacing: -1px;
}

.hero-content p {
  font-size: 1.2rem;
  opacity: 0.95;
  margin-bottom: 40px;
  max-width: 520px;
  line-height: 1.6;
}

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

.hero-buttons .btn {
  padding: 16px 36px;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 50px;
  transition: transform 0.3s ease;
}

.hero-buttons .btn:hover {
  transform: translateY(-2px);
}

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

.hero-img {
  width: 400px;
  height: 500px;
  object-fit: cover;
  border-radius: 200px 200px 100px 100px;
  box-shadow: var(--shadow-lg);
}

@media (max-width: 768px) {
  .hero-img {
    width: 280px;
    height: 350px;
    margin-top: 30px;
  }

  .floating-badge {
    display: none;
  }

  .hero-content h1 {
    font-size: 2rem !important;
  }

  .saree-image {
    height: 220px;
  }

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

.nav-logo img {
    height: 80px;
    width: auto;
    background: #fff;
    padding: 8px;
    border-radius: 20px;
}

  .page-header h1 {
    font-size: 1.8rem !important;
  }

  .heritage-image {
    height: 300px;
  }

  .about-image {
    height: 300px;
  }

  .weaver-image {
    height: 200px;
  }

  .footer-links a {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }

  .hero-img {
    width: 220px;
    height: 280px;
  }

  .hero-content h1 {
    font-size: 1.6rem !important;
  }

  .hero-badge {
    font-size: 0.8rem;
    padding: 6px 12px;
  }

  .section-header h2 {
    font-size: 1.6rem !important;
  }

  .heritage-content h2,
  .about-content h2,
  .newsletter h2 {
    font-size: 1.5rem;
  }

  .page-header {
    padding: 110px 0 40px;
  }

  .page-header h1 {
    font-size: 1.6rem !important;
  }

  .btn {
    padding: 12px 24px;
    font-size: 0.9rem;
  }

  .contact-form {
    padding: 20px !important;
  }

  .filter-btn {
    padding: 8px 14px;
    font-size: 0.85rem;
  }

  .saree-info,
  .weaver-info {
    padding: 16px;
  }

  .testimonial-card {
    padding: 24px;
  }

  .mobile-menu {
    width: 85%;
  }
}

.floating-badge {
  position: absolute;
  background: white;
  padding: 16px 24px;
  border-radius: 12px;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 12px;
}

.floating-badge.quality {
  bottom: 80px;
  left: -40px;
}

.floating-badge.heritage {
  top: 60px;
  right: -40px;
}

.floating-badge-icon {
  width: 40px;
  height: 40px;
  background: var(--bg-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
}

.floating-badge-text strong {
  display: block;
  font-size: 0.85rem;
  color: var(--secondary);
}

.floating-badge-text span {
  font-size: 0.75rem;
  color: var(--text-primary);
  opacity: 0.7;
}

.features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  padding: 48px 0;
  background: white;
  margin-top: -48px;
  position: relative;
  z-index: 2;
  border-radius: 24px 24px 0 0;
}

.feature-card {
  text-align: center;
  padding: 32px 24px;
  border-radius: 16px;
  transition: var(--transition);
}

.feature-card:hover {
  background: var(--bg-light);
}

.feature-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--primary), #5C1010);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  color: white;
}

.feature-card h3 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  margin-bottom: 8px;
  color: var(--secondary);
}

.feature-card p {
  font-size: 0.9rem;
  opacity: 0.7;
}

.heritage-section {
  padding: 100px 0;
}

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

.heritage-image {
  height: 500px;
  background: linear-gradient(135deg, var(--primary) 0%, #3D0E0E 100%);
  border-radius: 24px;
  position: relative;
  overflow: hidden;
}

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

.heritage-badge {
  position: absolute;
  bottom: 24px;
  left: 24px;
  background: var(--accent);
  color: var(--secondary);
  padding: 12px 20px;
  border-radius: 8px;
  font-weight: 600;
}

.heritage-content h2 {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  margin-bottom: 24px;
  color: var(--secondary);
}

.heritage-content p {
  margin-bottom: 24px;
  opacity: 0.8;
}

.heritage-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.stat-item {
  text-align: center;
  padding: 24px;
  background: white;
  border-radius: 16px;
  box-shadow: var(--shadow-sm);
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary);
}

.stat-label {
  font-size: 0.9rem;
  opacity: 0.7;
  margin-top: 4px;
}

.collection-preview {
  background: var(--bg-light);
}

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

.saree-card {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  position: relative;
}

.saree-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.saree-card:hover .saree-image::after {
  opacity: 1;
}

.saree-card-wishlist {
  position: absolute;
  top: 16px;
  right: 16px;
  background: white;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  z-index: 1;
  transition: var(--transition);
}

.saree-card-wishlist:hover {
  color: var(--primary);
}

.saree-card-wishlist.active {
  color: var(--primary);
}

.saree-image {
  height: 280px;
  position: relative;
  overflow: hidden;
  background: var(--bg-light);
}

.saree-image::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border: 3px solid var(--accent);
  opacity: 0;
  transition: var(--transition);
  pointer-events: none;
}

.saree-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.5s ease;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
}

.saree-image img:first-child {
  opacity: 1;
  position: relative;
}

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

.saree-brand {
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(255,255,255,0.95);
  color: var(--primary);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.6px;
  padding: 5px 12px;
  border-radius: 4px;
  z-index: 1;
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(4px);
}

.saree-info {
  padding: 20px;
}

.saree-info h3 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  margin-bottom: 8px;
  color: var(--secondary);
}

.saree-info p {
  font-size: 0.9rem;
  opacity: 0.7;
  margin-bottom: 12px;
}

.saree-price {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.price-current {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--primary);
}

.price-original {
  font-size: 0.9rem;
  opacity: 0.5;
  text-decoration: line-through;
}

.saree-btn {
  width: 100%;
  padding: 12px;
  background: transparent;
  border: 2px solid var(--secondary);
  color: var(--secondary);
  font-family: var(--font-body);
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
  margin-top: 12px;
}

.saree-btn:hover {
  background: var(--secondary);
  color: white;
}

/* Enhanced Product Card Styling for Luxury Fashion Look */
.saree-card {
  position: relative;
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 25px rgba(26, 26, 26, 0.08);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.saree-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), #D4A84B, var(--accent));
  transition: left 0.5s ease;
  z-index: 2;
}

.saree-card:hover::before {
  left: 0;
}

.saree-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 15px 50px rgba(26, 26, 26, 0.15);
}

.saree-card .saree-image {
  height: 320px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #faf7f2 0%, #f5f0e8 100%);
}

.saree-card .saree-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.5s ease;
  opacity: 1;
  position: relative;
}

.saree-card:hover .saree-image img {
  transform: scale(1.08) rotate(1deg);
  filter: brightness(1.05) contrast(1.05);
}

.saree-card .saree-brand {
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(212, 168, 75, 0.3);
  color: var(--primary);
  font-weight: 800;
  font-size: 0.9rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 8px 16px;
  border-radius: 25px;
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 3;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.saree-card-wishlist {
  background: rgba(255, 255, 255, 0.95);
  border: 2px solid rgba(212, 168, 75, 0.3);
  border-radius: 50%;
  color: var(--accent);
  transition: all 0.3s ease;
  backdrop-filter: blur(15px);
}

.saree-card-wishlist:hover {
  background: var(--accent);
  color: white;
  transform: scale(1.1);
  border-color: var(--accent);
}

.saree-card-wishlist.active {
  background: var(--accent);
  color: white;
  border-color: var(--accent);
}

.saree-card .saree-info {
  padding: 28px 24px 32px;
  background: white;
  position: relative;
}

.saree-card .saree-info h3 {
  color: var(--secondary);
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 6px;
  line-height: 1.3;
}

.saree-card .saree-info p {
  color: #666;
  font-size: 1rem;
  line-height: 1.5;
  margin-bottom: 16px;
}

.saree-card .saree-price {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.saree-card .price-current {
  color: var(--primary);
  font-size: 1.5rem;
  font-weight: 700;
}

.saree-card .price-original {
  color: #999;
  font-size: 1.1rem;
  text-decoration: line-through;
  font-weight: 500;
}

.saree-card .saree-btn {
  width: 100%;
  padding: 14px 20px;
  border: 2px solid var(--secondary);
  border-radius: 12px;
  background: transparent;
  color: var(--secondary);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 8px;
  position: relative;
  overflow: hidden;
}

.saree-card .saree-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--secondary);
  transition: left 0.3s ease;
  z-index: -1;
}

.saree-card .saree-btn:hover::before {
  left: 0;
}

.saree-card .saree-btn:hover {
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(26, 26, 26, 0.2);
}

/* Navigation Enhancements */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 20px 0;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(212, 168, 75, 0.1);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo img {
  height: 120px;
  width: auto;
  background: #fff;
  padding: 12px;
  border-radius: 24px;
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.1);
  border: 2px solid rgba(212, 168, 75, 0.2);
  transition: all 0.3s ease;
}

.nav-logo img:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 35px rgba(0, 0, 0, 0.15);
}

.nav-links {
  display: flex;
  gap: 48px;
}

.nav-links a {
  font-size: 1rem;
  font-weight: 600;
  color: var(--secondary);
  position: relative;
  padding: 8px 0;
  transition: all 0.3s ease;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), #D4A84B);
  transition: width 0.3s ease;
  border-radius: 2px;
}

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

.nav-icons button {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--secondary);
  position: relative;
  padding: 8px;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.nav-icons button:hover {
  background: rgba(212, 168, 75, 0.1);
  color: var(--accent);
  transform: scale(1.1);
}

/* Enhanced Hero Section */
.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23D4A84B' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E"),
    linear-gradient(135deg, rgba(139, 26, 26, 0.95) 0%, rgba(92, 16, 16, 0.9) 100%);
  opacity: 1;
}

.floating-badge {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(20px);
  border: 2px solid rgba(212, 168, 75, 0.5);
  border-radius: 16px;
  color: white;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.floating-badge-icon {
  background: linear-gradient(135deg, var(--accent), #D4A84B);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.floating-badge-text strong {
  color: white;
  font-weight: 600;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.floating-badge-text span {
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
}

/* Enhanced Features Section */
.features .feature-card {
  background: white;
  border: none;
  border-radius: 24px;
  padding: 40px 32px;
  box-shadow: 0 6px 40px rgba(26, 26, 26, 0.06);
  transition: all 0.4s ease;
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
}

.features .feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--accent), #D4A84B);
  transition: left 0.5s ease;
}

.features .feature-card:hover::before {
  left: 0;
}

.features .feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(26, 26, 26, 0.12);
  border-color: var(--accent);
}

.feature-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--accent) 0%, #D4A84B 100%);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  margin: 0 auto 24px;
  transition: transform 0.3s ease;
}

.feature-card:hover .feature-icon {
  transform: scale(1.1) rotate(5deg);
}

.feature-card h3 {
  color: var(--secondary);
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 12px;
  text-align: center;
}

.feature-card p {
  color: #666;
  font-size: 1rem;
  line-height: 1.6;
  text-align: center;
  opacity: 0.85;
}

/* Enhanced Testimonials */
.testimonial-card {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 20px;
  padding: 40px;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.testimonial-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), #D4A84B);
  transition: left 0.5s ease;
  z-index: 1;
}

.testimonial-card:hover::before {
  left: 0;
}

.testimonial-card:hover {
  background: rgba(255, 255, 255, 0.12);
  transform: translateY(-5px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
}

.testimonial-stars {
  color: var(--accent);
  font-size: 1.2rem;
  margin-bottom: 20px;
}

.testimonial-text {
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 28px;
  opacity: 0.9;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 16px;
}

.testimonial-avatar {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--accent) 0%, #D4A84B 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: white;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.testimonial-name {
  font-weight: 700;
  color: white;
  font-size: 1.1rem;
}

.testimonial-location {
  font-size: 0.9rem;
  opacity: 0.8;
}

/* Enhanced Newsletter */
.newsletter {
  background: linear-gradient(135deg, var(--primary) 0%, rgba(61, 14, 14, 0.95) 50%, rgba(26, 6, 6, 0.9) 100%);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.newsletter::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23D4A84B' fill-opacity='0.03'%3E%3Ccircle cx='40' cy='40' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.5;
}

.newsletter .container {
  position: relative;
  z-index: 1;
}

.newsletter h2 {
  color: white;
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 24px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.newsletter p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.2rem;
  margin-bottom: 40px;
  max-width: 600px;
}

.newsletter-form {
  display: flex;
  gap: 16px;
  max-width: 520px;
  background: rgba(255, 255, 255, 0.1);
  padding: 8px;
  border-radius: 50px;
  backdrop-filter: blur(15px);
  border: 2px solid rgba(212, 168, 75, 0.3);
}

.newsletter-form input {
  flex: 1;
  padding: 18px 24px;
  border: none;
  border-radius: 50px;
  background: transparent;
  color: white;
  font-family: var(--font-body);
  font-size: 1rem;
}

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

.newsletter-form input:focus {
  outline: none;
  box-shadow: 0 0 0 2px var(--accent);
}

.newsletter-form button {
  padding: 18px 32px;
  background: var(--accent);
  color: var(--secondary);
  border: none;
  border-radius: 50px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.newsletter-form button:hover {
  background: #D4A84B;
  transform: scale(1.05);
}

/* Enhanced Footer */
.footer {
  background: linear-gradient(135deg, var(--secondary) 0%, rgba(26, 26, 26, 0.95) 100%);
  padding: 100px 0 32px;
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='rgba(212,168,75,0.03)'%3E%3Ccircle cx='50' cy='50' r='1'/%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.5;
}

.footer .container {
  position: relative;
  z-index: 1;
}

.footer-brand img {
  max-width: 200px;
  height: auto;
  filter: brightness(0) invert(1);
  margin-bottom: 16px;
}

.footer-social a {
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.footer-social a:hover {
  background: var(--accent);
  border-color: var(--accent);
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 8px 25px rgba(212, 168, 75, 0.3);
}

.footer h4 {
  color: white;
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 24px;
  position: relative;
}

.footer h4::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 40px;
  height: 3px;
  background: var(--accent);
  border-radius: 2px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.8);
  transition: all 0.3s ease;
  padding: 8px 0;
  position: relative;
  overflow: hidden;
}

.footer-links a:hover {
  color: var(--accent);
  transform: translateX(5px);
}

.footer-links a::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width 0.3s ease;
}

.footer-links a:hover::before {
  width: 100%;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 32px;
  text-align: center;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.95rem;
}

/* Enhanced Mobile Styling */
@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 2.5rem !important;
    line-height: 1.2;
  }

  .hero-content p {
    font-size: 1.1rem;
    margin-bottom: 32px;
  }

  .hero-buttons {
    flex-direction: column;
    gap: 16px;
  }

  .hero-buttons .btn {
    padding: 18px 32px;
    font-size: 1rem;
  }

  .saree-card .saree-image {
    height: 280px;
  }

  .saree-card .saree-info h3 {
    font-size: 1.2rem;
  }

  .saree-card .saree-info p {
    font-size: 0.9rem;
  }

  .nav-logo img {
    height: 100px;
    padding: 8px;
  }

  .nav-links {
    gap: 32px;
  }

  .features .container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
  }

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

  .newsletter h2 {
    font-size: 2.5rem;
  }

  .newsletter p {
    font-size: 1.1rem;
  }

  .newsletter-form {
    flex-direction: column;
    gap: 12px;
    max-width: 300px;
  }

  .newsletter-form input,
  .newsletter-form button {
    padding: 16px 20px;
  }
}

@media (max-width: 480px) {
  .hero-content h1 {
    font-size: 1.8rem !important;
    letter-spacing: -0.5px;
  }

  .hero-content p {
    font-size: 1rem;
  }

  .hero-buttons .btn {
    padding: 16px 28px;
    font-size: 0.95rem;
  }

  .saree-card .saree-brand {
    font-size: 0.75rem;
    padding: 6px 12px;
  }

  .nav-logo img {
    height: 80px;
    padding: 6px;
  }

  .nav-links {
    gap: 20px;
  }

  .nav-links a {
    font-size: 0.9rem;
  }

  .newsletter h2 {
    font-size: 2rem;
  }

  .newsletter-form input,
  .newsletter-form button {
    padding: 14px 18px;
  }
}

/* Enhanced Animations */
@keyframes slideInFromLeft {
  from {
    transform: translateX(-100%) translateZ(0);
    opacity: 0;
  }
  to {
    transform: translateX(0) translateZ(0);
    opacity: 1;
  }
}

@keyframes fadeInScale {
  from {
    transform: scale(0.9);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

.saree-card {
  animation: fadeInScale 0.6s ease-out forwards;
  opacity: 0;
}

.saree-card:nth-child(1) { animation-delay: 0.1s; }
.saree-card:nth-child(2) { animation-delay: 0.2s; }
.saree-card:nth-child(3) { animation-delay: 0.3s; }
.saree-card:nth-child(4) { animation-delay: 0.4s; }
.saree-card:nth-child(5) { animation-delay: 0.5s; }
.saree-card:nth-child(6) { animation-delay: 0.6s; }

.navbar .nav-links a::after,
.navbar .navbar.scrolled .nav-links a::after {
  background: linear-gradient(90deg, var(--accent), #D4A84B);
  height: 2px;
}

.footer-links a::before {
  height: 2px;
  background: var(--accent);
}

/* Enhanced Properties */
* {
  scroll-behavior: smooth;
}

section {
  position: relative;
  overflow: hidden;
}

.view-all-btn {
  text-align: center;
  margin-top: 48px;
}

.testimonials {
  background: var(--bg-dark);
  color: var(--text-light);
}

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

.testimonial-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px;
  padding: 32px;
  transition: var(--transition);
}

.testimonial-card:hover {
  background: rgba(255,255,255,0.1);
}

.testimonial-stars {
  color: var(--accent);
  margin-bottom: 16px;
}

.testimonial-text {
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 24px;
  opacity: 0.9;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-avatar {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
}

.testimonial-name {
  font-weight: 600;
}

.testimonial-location {
  font-size: 0.85rem;
  opacity: 0.7;
}

.newsletter {
  background: linear-gradient(135deg, var(--primary) 0%, #3D0E0E 100%);
  color: var(--text-light);
  text-align: center;
  padding: 80px 0;
}

.newsletter h2 {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  margin-bottom: 16px;
}

.newsletter p {
  opacity: 0.9;
  margin-bottom: 32px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.newsletter-form {
  display: flex;
  gap: 12px;
  max-width: 480px;
  margin: 0 auto;
}

.newsletter-form input {
  flex: 1;
  padding: 16px 20px;
  border: none;
  border-radius: 4px;
  font-family: var(--font-body);
  font-size: 0.95rem;
}

.newsletter-form input:focus {
  outline: 2px solid var(--accent);
}

.footer {
  background: var(--secondary);
  color: var(--text-light);
  padding: 80px 0 32px;
}

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

.footer-brand p {
  opacity: 0.7;
  margin-top: 16px;
  font-size: 0.95rem;
  max-width: 280px;
}

.footer-social {
  display: flex;
  gap: 16px;
  margin-top: 24px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  color: var(--text-light);
}

.footer-social a svg,
.footer-social a i {
  width: 20px;
  height: 20px;
  stroke-width: 2;
}

.footer-social a:hover {
  background: var(--accent);
  color: var(--secondary);
  border-color: var(--accent);
  transform: translateY(-2px);
}

.contact-social .footer-social a {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--text-light);
}

.contact-social .footer-social a:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--secondary);
}

.footer-links a i,
.footer-links a svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.footer h4 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  margin-bottom: 20px;
}

.footer-links a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 6px 0;
  font-size: 0.95rem;
  opacity: 0.7;
  transition: var(--transition);
}

.footer-links a:hover {
  opacity: 1;
  color: var(--accent);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 32px;
  text-align: center;
  opacity: 0.5;
  font-size: 0.9rem;
}

.page-header {
  padding: 140px 0 80px;
  background: linear-gradient(135deg, var(--primary) 0%, #5C1010 100%);
  color: var(--text-light);
  text-align: center;
}

.page-header h1 {
  font-family: var(--font-heading);
  font-size: 3rem;
  margin-bottom: 16px;
}

.page-header p {
  opacity: 0.9;
  font-size: 1.1rem;
}

.filter-bar {
  padding: 24px 0;
  background: white;
  border-bottom: 1px solid rgba(0,0,0,0.1);
  position: sticky;
  top: 80px;
  z-index: 100;
}

.filter-bar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.filter-options {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 10px 20px;
  background: transparent;
  border: 1px solid rgba(0,0,0,0.2);
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  cursor: pointer;
  transition: var(--transition);
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--secondary);
  color: white;
  border-color: var(--secondary);
}

.sort-select {
  padding: 10px 16px;
  border: 1px solid rgba(0,0,0,0.2);
  border-radius: 4px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  cursor: pointer;
  background: white;
}

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

.about-image {
  height: 450px;
  background: linear-gradient(135deg, var(--accent) 0%, #B8860B 100%);
  border-radius: 24px;
  position: relative;
  overflow: hidden;
}

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

.about-image::before {
  content: 'Since 2025';
  position: absolute;
  bottom: 24px;
  right: 24px;
  background: var(--secondary);
  color: white;
  padding: 12px 20px;
  border-radius: 8px;
  font-family: var(--font-heading);
  font-size: 1.2rem;
  z-index: 1;
}

.brand-tag {
  position: absolute;
  top: 20px;
  left: 20px;
  background: rgba(255,255,255,0.96);
  padding: 12px 20px;
  border-radius: 10px;
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  gap: 2px;
  z-index: 2;
}

.brand-tag-label {
  font-size: 0.7rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--text-primary);
  opacity: 0.55;
}

.brand-tag-name {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--primary);
  line-height: 1;
}

.about-content h2 {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  margin-bottom: 24px;
}

.about-content p {
  opacity: 0.8;
  margin-bottom: 16px;
}

.timeline {
  padding: 80px 0;
  background: var(--bg-light);
}

.timeline-items {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
}

.timeline-items::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--accent);
  transform: translateX(-50%);
}

.timeline-item {
  display: flex;
  gap: 48px;
  margin-bottom: 48px;
  position: relative;
}

.timeline-item:nth-child(even) {
  flex-direction: row-reverse;
}

.timeline-dot {
  position: absolute;
  left: 50%;
  top: 0;
  width: 16px;
  height: 16px;
  background: var(--accent);
  border-radius: 50%;
  transform: translateX(-50%);
}

.timeline-content {
  width: calc(50% - 48px);
  background: white;
  padding: 24px;
  border-radius: 16px;
  box-shadow: var(--shadow-sm);
}

.timeline-year {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--primary);
  margin-bottom: 8px;
}

.timeline-content h3 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  margin-bottom: 8px;
}

.timeline-content p {
  font-size: 0.95rem;
  opacity: 0.8;
}

.weavers {
  padding: 80px 0;
}

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

.weaver-card {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

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

.weaver-image {
  height: 280px;
  background: linear-gradient(180deg, var(--primary) 0%, #3D0E0E 100%);
  position: relative;
  overflow: hidden;
}

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

.weaver-badge {
  position: absolute;
  bottom: 16px;
  left: 16px;
  background: var(--accent);
  color: var(--secondary);
  padding: 6px 12px;
  border-radius: 4px;
  font-size: 0.8rem;
  font-weight: 600;
  z-index: 1;
}

.weaver-info {
  padding: 24px;
}

.weaver-info h3 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  margin-bottom: 4px;
}

.weaver-location {
  font-size: 0.9rem;
  opacity: 0.7;
  margin-bottom: 12px;
}

.weaver-info p {
  font-size: 0.95rem;
  opacity: 0.8;
}

.contact-section {
  padding: 80px 0;
}

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

.contact-info h2 {
  font-family: var(--font-heading);
  font-size: 2rem;
  margin-bottom: 24px;
}

.contact-info > p {
  opacity: 0.8;
  margin-bottom: 32px;
}

.contact-item {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
}

.contact-icon {
  width: 48px;
  height: 48px;
  background: var(--bg-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--primary);
}

.contact-item h4 {
  font-weight: 600;
  margin-bottom: 4px;
}

.contact-item p {
  font-size: 0.95rem;
  opacity: 0.8;
}

.contact-social {
  margin-top: 32px;
}

.contact-social h4 {
  font-weight: 600;
  margin-bottom: 16px;
}

.contact-form {
  background: white;
  padding: 40px;
  border-radius: 24px;
  box-shadow: var(--shadow-md);
}

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

.form-group label {
  display: block;
  font-weight: 500;
  margin-bottom: 8px;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid rgba(0,0,0,0.2);
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(139,26,26,0.1);
}

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

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

.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 56px;
  height: 56px;
  background: #25D366;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999;
  box-shadow: 0 6px 20px rgba(37,211,102,0.45);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  animation: whatsappPulse 2.4s ease-out infinite;
}

.whatsapp-float:hover {
  transform: scale(1.08);
  box-shadow: 0 8px 24px rgba(37,211,102,0.6);
  color: white;
}

.whatsapp-float svg {
  width: 30px;
  height: 30px;
  fill: currentColor;
}

@keyframes whatsappPulse {
  0%   { box-shadow: 0 6px 20px rgba(37,211,102,0.45), 0 0 0 0 rgba(37,211,102,0.5); }
  70%  { box-shadow: 0 6px 20px rgba(37,211,102,0.45), 0 0 0 16px rgba(37,211,102,0); }
  100% { box-shadow: 0 6px 20px rgba(37,211,102,0.45), 0 0 0 0 rgba(37,211,102,0); }
}

@media (max-width: 480px) {
  .whatsapp-float {
    bottom: 18px;
    right: 18px;
    width: 50px;
    height: 50px;
  }
  .whatsapp-float svg {
    width: 26px;
    height: 26px;
  }
}

.legal-content {
  max-width: 820px;
  margin: 0 auto;
}

.legal-meta {
  font-size: 0.9rem;
  opacity: 0.6;
  margin-bottom: 32px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(0,0,0,0.08);
}

.legal-content h2 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  margin: 36px 0 12px;
  color: var(--secondary);
}

.legal-content h2:first-of-type {
  margin-top: 0;
}

.legal-content h3 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  margin: 24px 0 8px;
  color: var(--secondary);
}

.legal-content p {
  margin-bottom: 14px;
  opacity: 0.85;
  line-height: 1.7;
}

.legal-content ul,
.legal-content ol {
  list-style: disc;
  margin: 0 0 16px 24px;
  padding: 0;
}

.legal-content ol {
  list-style: decimal;
}

.legal-content li {
  margin-bottom: 8px;
  opacity: 0.85;
  line-height: 1.7;
}

.legal-content a {
  color: var(--primary);
  text-decoration: underline;
}

.legal-content a:hover {
  color: var(--accent);
}

.legal-contact-block {
  background: var(--bg-light);
  border-left: 3px solid var(--accent);
  padding: 20px 24px;
  margin-top: 16px;
  border-radius: 4px;
}

.legal-contact-block p {
  margin-bottom: 6px;
}

.map-placeholder {
  height: 200px;
  background: linear-gradient(135deg, var(--bg-light) 0%, #e8e4dc 100%);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 32px;
  color: var(--text-primary);
  opacity: 0.6;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 32px 0;
  padding: 24px 0;
  border-top: 1px solid rgba(0,0,0,0.08);
  border-bottom: 1px solid rgba(0,0,0,0.08);
}

.about-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.about-stat-number {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary);
  line-height: 1.1;
}

.about-stat-label {
  font-size: 0.85rem;
  opacity: 0.7;
  margin-top: 4px;
}

.values {
  background: white;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.value-card {
  text-align: center;
  padding: 36px 24px;
  background: var(--bg-light);
  border-radius: 16px;
  border: 1px solid transparent;
  transition: var(--transition);
}

.value-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--accent);
  background: white;
}

.value-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--accent), #B8860B);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.value-icon svg,
.value-icon i {
  width: 28px;
  height: 28px;
}

.value-card h3 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  margin-bottom: 12px;
  color: var(--secondary);
}

.value-card p {
  font-size: 0.95rem;
  opacity: 0.75;
  line-height: 1.6;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  padding-top: 16px;
}

.process-step {
  text-align: center;
  padding: 36px 20px 28px;
  background: white;
  border-radius: 16px;
  position: relative;
  border: 1px solid rgba(0,0,0,0.05);
  transition: var(--transition);
}

.process-step:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--accent);
}

.process-step-number {
  position: absolute;
  top: -18px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 40px;
  background: var(--primary);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.1rem;
  box-shadow: var(--shadow-sm);
}

.process-step-icon {
  width: 56px;
  height: 56px;
  background: var(--bg-light);
  color: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 8px auto 20px;
}

.process-step-icon svg,
.process-step-icon i {
  width: 28px;
  height: 28px;
}

.process-step h3 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  margin-bottom: 10px;
  color: var(--secondary);
}

.process-step p {
  font-size: 0.9rem;
  opacity: 0.75;
  line-height: 1.6;
}

.about-cta {
  background: linear-gradient(135deg, var(--primary) 0%, #5C1010 100%);
  color: var(--text-light);
  text-align: center;
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.about-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23D4A84B' fill-opacity='0.06'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.about-cta .container {
  position: relative;
  z-index: 1;
}

.about-cta h2 {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  margin-bottom: 16px;
}

.about-cta p {
  font-size: 1.1rem;
  opacity: 0.9;
  margin-bottom: 32px;
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
}

.about-cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-fadeInUp {
  animation: fadeInUp 0.6s ease-out forwards;
}

@media (max-width: 1024px) {
  .hero .container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-content h1 {
    font-size: 2.5rem;
  }

  .hero-buttons {
    justify-content: center;
  }

  .hero-image {
    display: none;
  }

  .features {
    grid-template-columns: repeat(2, 1fr);
    margin-top: 0;
    border-radius: 0;
  }

  .heritage-grid,
  .contact-grid,
  .about-intro .container {
    grid-template-columns: 1fr;
  }

  .saree-grid,
  .testimonial-grid,
  .faq-grid,
  .weaver-grid,
  .values-grid,
  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .timeline-items::before {
    left: 24px;
  }

  .timeline-item,
  .timeline-item:nth-child(even) {
    flex-direction: row;
    padding-left: 56px;
  }

  .timeline-dot {
    left: 24px;
  }

  .timeline-content {
    width: 100%;
  }
}

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

  .mobile-toggle {
    display: flex;
  }

  .mobile-menu,
  .mobile-overlay {
    display: block;
  }

  .section {
    padding: 48px 0;
  }

  .section-header h2 {
    font-size: 2rem;
  }

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

  .heritage-stats {
    grid-template-columns: 1fr;
  }

  .saree-grid,
  .testimonial-grid,
  .faq-grid,
  .weaver-grid,
  .values-grid,
  .process-grid {
    grid-template-columns: 1fr;
  }

  .heritage-content h2,
  .about-content h2,
  .newsletter h2,
  .about-cta h2 {
    font-size: 1.8rem;
  }

  .about-stats {
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
  }

  .about-stat-number {
    font-size: 1.6rem;
  }

  .about-cta {
    padding: 56px 0;
  }

  .contact-info h2 {
    font-size: 1.6rem;
  }

  .stat-number {
    font-size: 2rem;
  }

  .about-image,
  .heritage-image {
    height: 280px !important;
  }

  .about-image::before {
    bottom: 12px;
    right: 12px;
    padding: 8px 14px;
    font-size: 0.95rem;
  }

  .filter-bar .container {
    flex-direction: column;
    align-items: stretch;
  }

  .filter-options {
    justify-content: center;
  }

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

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

  .footer-social {
    justify-content: center;
  }

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

  .contact-form {
    padding: 24px;
  }

  .page-header {
    padding: 120px 0 48px;
  }

  .page-header h1 {
    font-size: 2rem;
  }
}

.product-modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.75);
  z-index: 2000;
  padding: 24px;
  overflow-y: auto;
  align-items: center;
  justify-content: center;
}

.product-modal.open {
  display: flex;
  animation: fadeInUp 0.25s ease-out;
}

.product-modal-content {
  background: white;
  width: 100%;
  max-width: 960px;
  border-radius: 20px;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  overflow: hidden;
  position: relative;
  max-height: 90vh;
  box-shadow: var(--shadow-lg);
}

.product-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 40px;
  height: 40px;
  background: white;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  z-index: 5;
  box-shadow: var(--shadow-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--secondary);
  transition: var(--transition);
}

.product-modal-close:hover {
  background: var(--primary);
  color: white;
}

.product-modal-gallery {
  background: var(--bg-light);
  display: flex;
  flex-direction: column;
  max-height: 90vh;
}

.product-modal-main {
  flex: 1;
  min-height: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  overflow: hidden;
}

.product-modal-main-img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 8px;
}

.product-modal-thumbs {
  display: flex;
  gap: 8px;
  padding: 0 16px 16px;
  overflow-x: auto;
  flex-shrink: 0;
}

.product-modal-thumbs img {
  width: 64px;
  height: 64px;
  object-fit: cover;
  border-radius: 6px;
  cursor: pointer;
  border: 2px solid transparent;
  opacity: 0.7;
  transition: var(--transition);
  flex-shrink: 0;
}

.product-modal-thumbs img:hover {
  opacity: 1;
}

.product-modal-thumbs img.active {
  border-color: var(--accent);
  opacity: 1;
}

.product-modal-info {
  padding: 40px 32px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
}

.product-modal-title {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  margin-bottom: 8px;
  color: var(--secondary);
}

.product-modal-desc {
  opacity: 0.7;
  margin-bottom: 20px;
}

.product-modal-prices {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(0,0,0,0.08);
}

.product-modal-price-current {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary);
}

.product-modal-price-original {
  font-size: 1.1rem;
  opacity: 0.5;
  text-decoration: line-through;
}

.product-modal-meta {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 24px;
}

.product-modal-meta-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9rem;
}

.product-modal-meta-item i {
  width: 18px;
  height: 18px;
  color: var(--accent);
  flex-shrink: 0;
}

.product-modal-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: auto;
}

.product-modal-actions .btn {
  width: 100%;
  justify-content: center;
}

@media (max-width: 768px) {
  .product-modal {
    padding: 0;
  }

  .product-modal-content {
    grid-template-columns: 1fr;
    max-height: 100vh;
    height: 100vh;
    border-radius: 0;
    overflow-y: auto;
  }

  .product-modal-gallery {
    max-height: none;
  }

  .product-modal-main {
    height: 320px;
    flex: none;
  }

  .product-modal-info {
    padding: 24px 20px 32px;
  }

  .product-modal-title {
    font-size: 1.4rem;
  }

  .product-modal-price-current {
    font-size: 1.6rem;
  }
}

/* ===========================================================
   LUXURY EDITORIAL HOMEPAGE
   =========================================================== */

/* --- Promo bar --- */
.promo-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1100;
  height: 36px;
  background: #1a1a1a;
  color: #f5e9c8;
  font-family: var(--font-body);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  overflow: hidden;
  display: flex;
  align-items: center;
}
.promo-track {
  display: inline-flex;
  align-items: center;
  gap: 60px;
  white-space: nowrap;
  padding-left: 100%;
  animation: promo-scroll 45s linear infinite;
}
.promo-track span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.promo-track i {
  width: 14px;
  height: 14px;
  color: var(--accent);
}
@keyframes promo-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-100%); }
}

/* --- Shared editorial typography --- */
.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.72rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--primary);
  font-weight: 500;
  margin-bottom: 18px;
  position: relative;
  padding-left: 36px;
}
.eyebrow::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 24px;
  height: 1px;
  background: var(--accent);
}
.eyebrow-light {
  color: #f5e9c8;
}
.eyebrow-light::before {
  background: var(--accent);
}

.lux-header {
  margin-bottom: 48px;
}
.lux-header.center {
  text-align: center;
}
.lux-header.center .eyebrow {
  display: inline-block;
}
.lux-header h2 {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.1;
  color: var(--secondary);
  letter-spacing: -0.01em;
}
.lux-header h2 em {
  font-style: italic;
  color: var(--primary);
  font-weight: 500;
}
.lux-header p {
  margin-top: 14px;
  font-size: 1rem;
  color: #6b6b6b;
  max-width: 520px;
}
.lux-header.center p {
  margin-left: auto;
  margin-right: auto;
}
.lux-header.light h2 { color: #fff; }
.lux-header.light p { color: rgba(255,255,255,0.7); }

/* --- Lux buttons & links --- */
.lux-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 32px;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border-radius: 0;
  border: 1px solid transparent;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
}
.lux-btn i { width: 16px; height: 16px; }
.lux-btn-light {
  background: #fff;
  color: var(--secondary);
  border-color: #fff;
}
.lux-btn-light:hover { background: transparent; color: #fff; }
.lux-btn-ghost {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.6);
}
.lux-btn-ghost:hover { background: #fff; color: var(--secondary); border-color: #fff; }
.lux-btn-dark {
  background: var(--secondary);
  color: #fff;
  border-color: var(--secondary);
}
.lux-btn-dark:hover { background: transparent; color: var(--secondary); }

.lux-link, .lux-link-light {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border-bottom: 1px solid currentColor;
  padding-bottom: 4px;
  transition: var(--transition);
}
.lux-link { color: var(--secondary); }
.lux-link:hover { color: var(--primary); }
.lux-link-light { color: #fff; }

/* --- Editorial hero --- */
.editorial-hero {
  position: relative;
  height: 100vh;
  min-height: 680px;
  margin-top: 0;
  padding-top: calc(36px + 115px);
  color: #fff;
  overflow: hidden;
  display: flex;
  align-items: center;
}
.editorial-hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.editorial-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  animation: heroZoom 14s ease-out forwards;
}
@keyframes heroZoom {
  from { transform: scale(1.08); }
  to   { transform: scale(1); }
}
.editorial-hero-scrim {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.35) 40%, rgba(0,0,0,0.65) 100%),
    linear-gradient(90deg, rgba(0,0,0,0.5) 0%, transparent 60%);
}
.editorial-hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
}
.editorial-hero-content .eyebrow {
  color: #f5e9c8;
}
.editorial-hero-content .eyebrow::before {
  background: var(--accent);
}
.editorial-hero-title {
  font-family: var(--font-heading);
  font-size: clamp(3rem, 8vw, 6.5rem);
  font-weight: 400;
  line-height: 0.95;
  letter-spacing: -0.02em;
  margin-bottom: 26px;
  max-width: 800px;
}
.editorial-hero-title em {
  font-style: italic;
  font-weight: 500;
  color: var(--accent);
}
.editorial-hero-lede {
  font-family: var(--font-accent);
  font-size: clamp(1.05rem, 1.5vw, 1.3rem);
  line-height: 1.6;
  max-width: 480px;
  margin-bottom: 38px;
  font-weight: 400;
  color: rgba(255,255,255,0.9);
}
.editorial-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}
.editorial-hero-meta {
  position: absolute;
  bottom: 30px;
  left: 0;
  right: 0;
  z-index: 2;
  font-size: 0.72rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
}
.editorial-hero-meta .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}
.editorial-hero-meta i { width: 14px; height: 14px; vertical-align: middle; margin-left: 6px; }

/* --- Marquee strip --- */
.marquee-strip {
  background: var(--bg-light);
  border-top: 1px solid rgba(0,0,0,0.06);
  border-bottom: 1px solid rgba(0,0,0,0.06);
  padding: 20px 0;
  overflow: hidden;
}
.marquee-track {
  display: inline-flex;
  align-items: center;
  gap: 36px;
  white-space: nowrap;
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-style: italic;
  color: var(--secondary);
  animation: marquee 35s linear infinite;
}
.marquee-track em {
  color: var(--accent);
  font-style: normal;
}
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* --- Shop circles --- */
.shop-circles {
  padding: 90px 0 70px;
  background: var(--bg-light);
}
.shop-circles .lux-header { text-align: center; }
.shop-circles .lux-header .eyebrow { display: inline-block; }
.circles-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 30px;
}
.circle-tile {
  text-align: center;
  cursor: pointer;
  display: block;
}
.circle-img {
  width: 100%;
  aspect-ratio: 1;
  border-radius: 50%;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  margin-bottom: 18px;
  position: relative;
  transition: transform 0.5s ease, box-shadow 0.5s ease;
}
.circle-img::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid rgba(212,168,75,0);
  border-radius: 50%;
  transition: border-color 0.4s ease, inset 0.4s ease;
}
.circle-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.circle-tile:hover .circle-img { transform: translateY(-4px); box-shadow: 0 18px 45px rgba(0,0,0,0.12); }
.circle-tile:hover .circle-img::after { border-color: var(--accent); inset: -8px; }
.circle-tile:hover .circle-img img { transform: scale(1.06); }
.circle-tile h3 {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--secondary);
  letter-spacing: 0.02em;
  margin-bottom: 4px;
}
.circle-link {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--primary);
  font-weight: 500;
}

/* --- Just In rail --- */
.just-in-rail {
  padding: 90px 0;
  background: #fff;
}
.rail-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 40px;
  gap: 20px;
}
.rail-header h2 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 3.5vw, 2.6rem);
  font-weight: 500;
  color: var(--secondary);
}
.rail-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--secondary);
  padding-bottom: 4px;
  border-bottom: 1px solid var(--secondary);
  transition: var(--transition);
}
.rail-cta:hover { color: var(--primary); border-color: var(--primary); }
.rail-cta i { width: 14px; height: 14px; }
.rail-scroller {
  overflow-x: auto;
  scrollbar-width: thin;
  scrollbar-color: var(--accent) transparent;
  padding: 0 24px 16px;
  scroll-snap-type: x mandatory;
}
.rail-scroller::-webkit-scrollbar { height: 4px; }
.rail-scroller::-webkit-scrollbar-thumb { background: var(--accent); border-radius: 2px; }
.rail-track {
  display: inline-flex;
  gap: 24px;
  padding: 0 max(0px, calc((100vw - 1200px) / 2));
}
.rail-card {
  flex: 0 0 280px;
  scroll-snap-align: start;
  display: block;
  cursor: pointer;
  transition: transform var(--transition);
}
.rail-card:hover { transform: translateY(-4px); }
.rail-img {
  position: relative;
  aspect-ratio: 3 / 4;
  background: var(--bg-light);
  overflow: hidden;
  margin-bottom: 16px;
}
.rail-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}
.rail-card:hover .rail-img img { transform: scale(1.05); }
.rail-tag {
  position: absolute;
  top: 14px;
  left: 14px;
  background: #fff;
  color: var(--secondary);
  padding: 6px 12px;
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
  z-index: 2;
}
.rail-info { padding: 0 4px; }
.rail-brand {
  font-family: var(--font-accent);
  font-style: italic;
  font-size: 0.85rem;
  color: var(--primary);
  display: block;
  margin-bottom: 4px;
}
.rail-info h4 {
  font-family: var(--font-heading);
  font-size: 1.02rem;
  font-weight: 500;
  color: var(--secondary);
  margin-bottom: 8px;
  line-height: 1.3;
}
.rail-price {
  font-size: 0.95rem;
  color: var(--secondary);
}
.rail-price strong { font-weight: 600; }
.rail-price s { color: #999; margin-left: 8px; font-weight: 400; }

/* --- Edit banners --- */
.edit-banners {
  padding: 0;
  background: #fff;
}
.edit-banners-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}
.edit-banner {
  position: relative;
  aspect-ratio: 16 / 11;
  overflow: hidden;
  display: block;
  cursor: pointer;
}
.edit-banner img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s ease;
}
.edit-banner::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.15) 0%, rgba(0,0,0,0.6) 100%);
}
.edit-banner:hover img { transform: scale(1.05); }
.edit-banner-text {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 50px 60px;
  z-index: 2;
  color: #fff;
}
.edit-banner-text .eyebrow { color: #f5e9c8; }
.edit-banner-text h3 {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  font-weight: 500;
  line-height: 1.05;
  margin-bottom: 12px;
}
.edit-banner-text p {
  font-family: var(--font-accent);
  font-size: 1.1rem;
  max-width: 460px;
  color: rgba(255,255,255,0.92);
  margin-bottom: 18px;
  line-height: 1.5;
}

/* --- Signature spotlight --- */
.signature-spotlight {
  padding: 110px 0;
  background: var(--bg-light);
  position: relative;
  overflow: hidden;
}
.signature-spotlight::before {
  content: 'Inaaya';
  position: absolute;
  top: 30px;
  right: -30px;
  font-family: var(--font-heading);
  font-style: italic;
  font-size: clamp(8rem, 18vw, 16rem);
  color: rgba(212,168,75,0.06);
  line-height: 1;
  pointer-events: none;
  font-weight: 600;
}
.signature-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
}
.signature-imagery {
  position: relative;
  aspect-ratio: 4/5;
}
.signature-img-main {
  position: absolute;
  inset: 0;
  width: 80%;
  height: 100%;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0,0,0,0.18);
}
.signature-img-main img {
  width: 100%; height: 100%; object-fit: cover;
}
.signature-img-accent {
  position: absolute;
  bottom: -30px;
  right: 0;
  width: 45%;
  aspect-ratio: 3/4;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0,0,0,0.2);
  border: 8px solid #fff;
}
.signature-img-accent img {
  width: 100%; height: 100%; object-fit: cover;
}
.signature-stamp {
  position: absolute;
  top: 30px;
  left: -10px;
  background: var(--accent);
  color: var(--secondary);
  padding: 10px 18px;
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 600;
  z-index: 3;
}
.signature-text h2 {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -0.01em;
  margin-bottom: 24px;
  color: var(--secondary);
}
.signature-text h2 em {
  font-style: italic;
  color: var(--primary);
}
.signature-lede {
  font-family: var(--font-accent);
  font-size: 1.2rem;
  line-height: 1.6;
  color: #555;
  margin-bottom: 28px;
}
.signature-points {
  list-style: none;
  margin: 0 0 36px;
  padding: 0;
}
.signature-points li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(0,0,0,0.06);
  font-size: 0.95rem;
  color: #444;
}
.signature-points li:last-child { border-bottom: none; }
.signature-points i {
  width: 18px;
  height: 18px;
  color: var(--accent);
  flex-shrink: 0;
  margin-top: 2px;
}

/* --- Curated edits / lookbook grid --- */
.curated-edits {
  padding: 110px 0;
  background: #fff;
}
.edits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: 280px 280px;
  gap: 16px;
}
.edit-tile {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  display: block;
  background: #f0e9dc;
}
.edit-tile.tall { grid-row: span 2; }
.edit-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s ease;
}
.edit-tile::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,0.7) 100%);
  transition: background 0.5s ease;
}
.edit-tile:hover img { transform: scale(1.06); }
.edit-tile:hover::after { background: linear-gradient(180deg, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0.75) 100%); }
.edit-tile-overlay {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 28px;
  color: #fff;
  z-index: 2;
}
.edit-tile-overlay h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 500;
  margin: 6px 0 14px;
  line-height: 1.1;
}

/* --- Quote split --- */
.quote-split {
  background: var(--secondary);
  color: #fff;
  overflow: hidden;
}
.quote-split-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  min-height: 520px;
}
.quote-split-image {
  position: relative;
  overflow: hidden;
}
.quote-split-image img {
  width: 100%; height: 100%; object-fit: cover;
}
.quote-split-text {
  padding: 80px 70px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.quote-split-text .eyebrow { color: #f5e9c8; }
.quote-split-text .eyebrow::before { background: var(--accent); }
.quote-split-text blockquote {
  position: relative;
  margin: 0;
  padding: 0;
}
.quote-split-text blockquote i {
  width: 48px;
  height: 48px;
  color: var(--accent);
  margin-bottom: 20px;
}
.quote-split-text blockquote p {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: clamp(1.4rem, 2.4vw, 2rem);
  font-weight: 400;
  line-height: 1.4;
  margin-bottom: 24px;
  color: #fff;
}
.quote-split-text cite {
  font-family: var(--font-body);
  font-style: normal;
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 500;
}

/* --- Press strip --- */
.press-strip {
  padding: 60px 0;
  background: #fff;
  border-top: 1px solid rgba(0,0,0,0.06);
  border-bottom: 1px solid rgba(0,0,0,0.06);
  text-align: center;
}
.press-label {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: #888;
  margin-bottom: 26px;
}
.press-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 50px;
}
.press-logos span {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--secondary);
  letter-spacing: 0.06em;
  opacity: 0.65;
  transition: opacity var(--transition);
}
.press-logos span em {
  font-family: var(--font-accent);
  font-style: italic;
  font-weight: 400;
  font-size: 0.95rem;
  margin-left: 4px;
  color: var(--primary);
}
.press-logos span:hover { opacity: 1; }

/* --- Instagram strip --- */
.insta-strip {
  padding: 90px 0;
  background: var(--bg-light);
}
.insta-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 8px;
  margin-top: 40px;
}
.insta-tile {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  display: block;
}
.insta-tile img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.6s ease, filter 0.4s ease;
  filter: saturate(0.95);
}
.insta-tile span {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(139,26,26,0.0);
  color: #fff;
  opacity: 0;
  transition: var(--transition);
}
.insta-tile span i { width: 28px; height: 28px; }
.insta-tile:hover img { transform: scale(1.08); filter: saturate(1.1); }
.insta-tile:hover span { opacity: 1; background: rgba(139,26,26,0.55); }

/* --- Override newsletter for editorial style --- */
.newsletter .eyebrow { display: inline-block; margin-bottom: 16px; }
.newsletter .lux-btn-dark { padding: 16px 28px; }

/* ===========================================================
   RESPONSIVE - LUXURY HOMEPAGE
   =========================================================== */
@media (max-width: 1024px) {
  .circles-grid { grid-template-columns: repeat(3, 1fr); gap: 24px; }
  .edits-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: 240px 240px 240px 240px;
  }
  .edit-tile.tall { grid-row: span 2; }
  .signature-grid { grid-template-columns: 1fr; gap: 60px; }
  .signature-imagery { max-width: 480px; margin: 0 auto; width: 100%; }
  .quote-split-grid { grid-template-columns: 1fr; }
  .quote-split-image { aspect-ratio: 4/3; }
  .quote-split-text { padding: 60px 40px; }
  .insta-grid { grid-template-columns: repeat(3, 1fr); }
  .edit-banners-grid { grid-template-columns: 1fr; }
  .edit-banner-text { padding: 40px 36px; }
}

@media (max-width: 768px) {
  .promo-bar { font-size: 0.68rem; height: 32px; }
  .navbar { top: 32px; }
  .editorial-hero {
    min-height: 580px;
    padding-top: calc(32px + 100px);
  }
  .editorial-hero-meta { display: none; }
  .marquee-track { font-size: 1.1rem; gap: 24px; }
  .shop-circles, .just-in-rail, .signature-spotlight, .curated-edits, .insta-strip { padding: 70px 0; }
  .circles-grid { grid-template-columns: repeat(2, 1fr); gap: 22px; }
  .rail-card { flex: 0 0 220px; }
  .rail-track { padding: 0 24px; gap: 16px; }
  .edits-grid {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(6, 240px);
  }
  .edit-tile.tall { grid-row: auto; }
  .signature-spotlight::before { font-size: 6rem; top: 20px; right: -10px; }
  .quote-split-text { padding: 50px 24px; }
  .quote-split-text blockquote i { width: 36px; height: 36px; }
  .press-logos { gap: 28px; }
  .press-logos span { font-size: 1.1rem; }
  .insta-grid { grid-template-columns: repeat(3, 1fr); gap: 6px; }
  .edit-banner { aspect-ratio: 4/5; }
  .edit-banner-text { padding: 30px 24px; }
  .rail-header { flex-direction: column; align-items: flex-start; gap: 14px; }
  .editorial-hero-actions .lux-btn { padding: 14px 22px; font-size: 0.72rem; }
}

@media (max-width: 480px) {
  .promo-bar { font-size: 0.62rem; }
  .editorial-hero-title { font-size: 2.7rem; }
  .editorial-hero-lede { font-size: 1rem; }
  .lux-btn { padding: 13px 22px; font-size: 0.7rem; letter-spacing: 0.14em; }
  .circles-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .circle-tile h3 { font-size: 0.95rem; }
  .insta-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ===========================================================
   NAVBAR — fixed floating logo (oversized, hangs below nav)
   The img is position:fixed so it floats; the navbar reserves
   horizontal space via padding-left so menu stays visible.
   =========================================================== */

:root {
  --logo-size: 130px;
  --logo-gap: 28px;
}

.navbar {
  padding: 14px 0 !important;
  min-height: 90px;
}
.navbar .container {
  position: relative;
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 24px;
  margin-top:30px;
  flex-wrap: nowrap;
  padding-left: calc(var(--logo-size) + var(--logo-gap)) !important;
}

/* Anchor stays in flow at zero size; the inner img is fixed-positioned */
.navbar .nav-logo {
  position: static;
  display: block;
  width: 0;
  height: 0;
  flex-shrink: 0;
  overflow: visible;
}
.navbar .nav-logo img {
  position: fixed !important;
  top: calc(36px + 8px) !important;
  left: 24px !important;
  z-index: 1101 !important;
  height: var(--logo-size) !important;
  width: auto !important;
  background: #fff !important;
  padding: 10px !important;
  border-radius: 18px !important;
  box-shadow: 0 8px 30px rgba(0,0,0,0.12) !important;
  border: 1px solid rgba(212,168,75,0.25) !important;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.navbar .nav-logo img:hover {
  transform: scale(1.03);
  box-shadow: 0 12px 38px rgba(0,0,0,0.18);
}

/* Footer logo: regular flow, no fixed positioning */
.footer .nav-logo {
  display: inline-flex;
  align-items: center;
  margin-bottom: 16px;
  position: static;
  width: auto;
  height: auto;
}
.footer .nav-logo img {
  position: static !important;
  height: 80px !important;
  width: auto !important;
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  padding: 0 !important;
  border-radius: 0 !important;
}

.nav-links {
  display: flex !important;
  align-items: center;
  gap: 32px !important;
  flex: 0 1 auto;
}
.nav-links a {
  font-size: 0.92rem !important;
  font-weight: 500 !important;
  color: var(--secondary) !important;
  white-space: nowrap;
  letter-spacing: 0.02em;
}
.nav-icons {
  display: flex !important;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}
.nav-icons button i {
  width: 20px;
  height: 20px;
}

/* Submenu under trigger */
.nav-links .has-submenu .submenu {
  top: 100% !important;
  margin-top: 6px;
}

/* Push content below the oversized hanging logo */
.editorial-hero {
  padding-top: calc(36px + 110px) !important;
}
.page-header {
  padding-top: 175px !important;
}

/* ---- Tablet (<= 1024px) ---- */
@media (max-width: 1024px) {
  :root { --logo-size: 105px; --logo-gap: 22px; }
  .nav-links { gap: 22px !important; }
  .nav-links a { font-size: 0.88rem !important; }
  .navbar .nav-logo img {
    top: calc(36px + 6px) !important;
    left: 20px !important;
  }
  .editorial-hero { padding-top: calc(36px + 95px) !important; }
}

/* ---- Mobile (<= 768px) ---- */
@media (max-width: 768px) {
  :root { --logo-size: 78px; --logo-gap: 14px; }
  .promo-bar { font-size: 0.68rem; height: 32px; }
  .navbar { top: 32px !important; padding: 10px 0 !important; min-height: 70px; }
  .navbar .container { gap: 12px; }
  .nav-links,
  .nav-icons { display: none !important; }
  .mobile-toggle { display: flex !important; }
  .navbar .nav-logo img {
    top: calc(32px + 6px) !important;
    left: 16px !important;
    padding: 6px !important;
    border-radius: 12px !important;
  }
  .mobile-menu { padding-top: calc(32px + 80px) !important; }
  .editorial-hero { padding-top: calc(32px + 80px) !important; }
  .page-header { padding-top: 130px !important; padding-bottom: 50px !important; }
  .page-header h1 { font-size: 2rem !important; }
}

/* ---- Small phones (<= 480px) ---- */
@media (max-width: 480px) {
  :root { --logo-size: 64px; --logo-gap: 10px; }
  .promo-bar { height: 28px; font-size: 0.58rem; letter-spacing: 0.05em; }
  .promo-track { gap: 36px; }
  .promo-track i { width: 12px; height: 12px; }
  .navbar { top: 28px !important; min-height: 60px; }
  .navbar .nav-logo img {
    top: calc(28px + 4px) !important;
    left: 12px !important;
  }
  .mobile-menu { padding-top: calc(28px + 70px) !important; }
  .editorial-hero { padding-top: calc(28px + 70px) !important; min-height: 520px; }
  .page-header { padding-top: 110px !important; padding-bottom: 40px !important; }
  .page-header h1 { font-size: 1.7rem !important; }
  .nav-icons { gap: 10px; }
}

/* Sticky filter bar must clear promo + navbar */
.filter-bar { top: 112px !important; }
@media (max-width: 768px) {
  .filter-bar { top: 98px !important; padding: 16px 0 !important; }
}
@media (max-width: 480px) {
  .filter-bar { top: 88px !important; }
}

/* ===========================================================
   PHP additions — flash messages, cart, checkout, product page
   (kept lightweight; reuses existing tokens / colors)
   =========================================================== */
.flash-stack { position: fixed; top: 130px; right: 20px; z-index: 9000; display: flex; flex-direction: column; gap: 10px; max-width: 360px; }
.flash { padding: 12px 16px; border-radius: 10px; font-size: 0.9rem; font-weight: 500; box-shadow: 0 8px 24px rgba(0,0,0,0.12); animation: flashIn 0.3s ease-out; }
.flash-success { background: #ecfdf5; color: #065f46; border: 1px solid #6ee7b7; }
.flash-error   { background: #fef2f2; color: #991b1b; border: 1px solid #fca5a5; }
.flash-info    { background: #fffbeb; color: #92400e; border: 1px solid #fcd34d; }
@keyframes flashIn { from { opacity: 0; transform: translateY(-10px); } to { opacity: 1; transform: translateY(0); } }

/* Cart page */
.cart-page { padding: 60px 0; min-height: 60vh; }
.cart-page h1 { font-family: var(--font-heading); font-size: 2.2rem; margin-bottom: 32px; color: var(--secondary); }
.cart-layout { display: grid; grid-template-columns: 1fr 360px; gap: 40px; align-items: start; }
.cart-table { background: #fff; border: 1px solid var(--border-accent); border-radius: 12px; overflow: hidden; }
.cart-row { display: grid; grid-template-columns: 100px 1fr auto auto auto; gap: 20px; align-items: center; padding: 20px; border-bottom: 1px solid #eee; }
.cart-row:last-child { border-bottom: 0; }
.cart-row img { width: 100px; height: 120px; object-fit: cover; border-radius: 8px; }
.cart-row-title { font-family: var(--font-heading); font-size: 1.1rem; color: var(--secondary); }
.cart-row-meta { font-size: 0.85rem; color: #777; margin-top: 4px; }
.cart-qty { display: inline-flex; align-items: center; border: 1px solid #ddd; border-radius: 8px; overflow: hidden; }
.cart-qty button { width: 32px; height: 32px; background: #fafafa; border: 0; cursor: pointer; font-weight: 600; color: var(--secondary); }
.cart-qty button:hover { background: #f0f0f0; }
.cart-qty input { width: 44px; height: 32px; border: 0; border-left: 1px solid #ddd; border-right: 1px solid #ddd; text-align: center; font-weight: 600; }
.cart-row-price { font-weight: 600; color: var(--primary); }
.cart-remove { background: none; border: 0; color: #c62828; cursor: pointer; padding: 8px; }
.cart-remove:hover { color: #8b0000; }
.cart-summary { background: #fff; border: 1px solid var(--border-accent); border-radius: 12px; padding: 28px; position: sticky; top: 130px; }
.cart-summary h3 { font-family: var(--font-heading); font-size: 1.4rem; margin-bottom: 20px; color: var(--secondary); }
.cart-summary-row { display: flex; justify-content: space-between; padding: 10px 0; font-size: 0.95rem; color: #555; }
.cart-summary-row.total { border-top: 1px solid #eee; margin-top: 10px; padding-top: 16px; font-size: 1.2rem; font-weight: 700; color: var(--secondary); }
.cart-empty { text-align: center; padding: 80px 20px; color: #777; }
.cart-empty i { width: 64px; height: 64px; color: #ddd; margin-bottom: 16px; }
.cart-empty h3 { font-family: var(--font-heading); font-size: 1.6rem; margin: 12px 0; color: var(--secondary); }

@media (max-width: 900px) {
  .cart-layout { grid-template-columns: 1fr; }
  .cart-row { grid-template-columns: 80px 1fr; row-gap: 12px; }
  .cart-row img { width: 80px; height: 96px; }
  .cart-row-price, .cart-qty, .cart-remove { grid-column: 2; }
  .cart-summary { position: static; }
}

/* Checkout */
.checkout-page { padding: 60px 0; }
.checkout-layout { display: grid; grid-template-columns: 1fr 380px; gap: 40px; align-items: start; }
.checkout-card { background: #fff; border: 1px solid var(--border-accent); border-radius: 12px; padding: 28px; margin-bottom: 24px; }
.checkout-card h3 { font-family: var(--font-heading); font-size: 1.3rem; margin-bottom: 18px; color: var(--secondary); }
.checkout-card .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.checkout-card .form-group { margin-bottom: 14px; }
.checkout-card label { display: block; font-size: 0.85rem; font-weight: 600; margin-bottom: 6px; color: var(--secondary); }
.checkout-card input, .checkout-card select, .checkout-card textarea { width: 100%; padding: 10px 14px; border: 1px solid #ddd; border-radius: 8px; font-family: var(--font-body); font-size: 0.95rem; }
.checkout-card input:focus, .checkout-card select:focus, .checkout-card textarea:focus { outline: 0; border-color: var(--accent); box-shadow: 0 0 0 3px rgba(212,168,75,0.18); }
.checkout-summary { background: #fff; border: 1px solid var(--border-accent); border-radius: 12px; padding: 28px; position: sticky; top: 130px; }
.checkout-summary-item { display: grid; grid-template-columns: 56px 1fr auto; gap: 12px; align-items: center; padding: 10px 0; border-bottom: 1px solid #f0f0f0; }
.checkout-summary-item img { width: 56px; height: 70px; object-fit: cover; border-radius: 6px; }
.checkout-summary-item .nm { font-size: 0.9rem; font-weight: 600; color: var(--secondary); }
.checkout-summary-item .qy { font-size: 0.78rem; color: #888; }
.checkout-summary-item .pr { font-weight: 600; color: var(--primary); font-size: 0.95rem; }

@media (max-width: 900px) {
  .checkout-layout { grid-template-columns: 1fr; }
  .checkout-card .form-row { grid-template-columns: 1fr; }
  .checkout-summary { position: static; }
}

/* Product detail page */
.product-detail { padding: 60px 0; }
.product-detail-grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: 60px; align-items: start; }
.product-detail-main-img { width: 100%; border-radius: 14px; overflow: hidden; aspect-ratio: 3/4; background: #faf6ef; }
.product-detail-main-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.product-detail-thumbs { display: flex; gap: 10px; margin-top: 14px; flex-wrap: wrap; }
.product-detail-thumbs img { width: 72px; height: 88px; object-fit: cover; border-radius: 8px; cursor: pointer; border: 2px solid transparent; opacity: 0.7; transition: 0.2s; }
.product-detail-thumbs img:hover, .product-detail-thumbs img.active { opacity: 1; border-color: var(--accent); }
.product-detail-info .eyebrow { font-size: 0.7rem; letter-spacing: 0.25em; text-transform: uppercase; color: var(--accent); font-weight: 600; margin-bottom: 12px; }
.product-detail-info h1 { font-family: var(--font-heading); font-size: 2.4rem; color: var(--secondary); margin-bottom: 12px; }
.product-detail-info .subtitle { color: #777; font-size: 1.05rem; margin-bottom: 20px; }
.product-detail-prices { display: flex; align-items: baseline; gap: 14px; margin-bottom: 20px; }
.product-detail-prices .current { font-family: var(--font-heading); font-size: 2.2rem; font-weight: 700; color: var(--primary); }
.product-detail-prices .original { font-size: 1.1rem; color: #aaa; text-decoration: line-through; }
.product-detail-prices .save { background: var(--accent); color: #fff; padding: 4px 10px; border-radius: 6px; font-size: 0.75rem; font-weight: 600; }
.product-detail-desc { color: #555; line-height: 1.8; margin-bottom: 28px; }
.product-detail-attrs { display: grid; grid-template-columns: 1fr 1fr; gap: 12px 24px; padding: 20px 0; border-top: 1px solid #eee; border-bottom: 1px solid #eee; margin-bottom: 28px; }
.product-detail-attrs div { font-size: 0.9rem; }
.product-detail-attrs strong { display: block; font-size: 0.72rem; letter-spacing: 0.18em; text-transform: uppercase; color: #999; font-weight: 600; margin-bottom: 4px; }
.product-detail-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.product-detail-actions .btn { flex: 1; min-width: 200px; justify-content: center; }
.product-detail-features { margin-top: 28px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.product-detail-features div { display: flex; align-items: center; gap: 10px; font-size: 0.82rem; color: #555; }
.product-detail-features i { color: var(--accent); width: 18px; height: 18px; }

@media (max-width: 900px) {
  .product-detail-grid { grid-template-columns: 1fr; gap: 32px; }
  .product-detail-info h1 { font-size: 1.8rem; }
  .product-detail-features { grid-template-columns: 1fr; }
}

/* Order success page */
.order-success-page { padding: 100px 0; text-align: center; min-height: 60vh; }
.order-success-page .check-circle { width: 80px; height: 80px; margin: 0 auto 24px; border-radius: 50%; background: #10b981; color: #fff; display: flex; align-items: center; justify-content: center; }
.order-success-page .check-circle i { width: 40px; height: 40px; }
.order-success-page h1 { font-family: var(--font-heading); font-size: 2.2rem; margin-bottom: 10px; color: var(--secondary); }
.order-success-page .order-num { display: inline-block; margin: 14px 0 30px; padding: 8px 18px; background: #faf6ef; border-radius: 999px; font-family: monospace; color: var(--primary); font-weight: 600; }
.order-success-page .details { max-width: 540px; margin: 0 auto; text-align: left; background: #fff; border: 1px solid var(--border-accent); border-radius: 12px; padding: 24px; }
.order-success-page .details .row { display: flex; justify-content: space-between; padding: 6px 0; font-size: 0.92rem; }

