/* ═══════════════════════════════════════════════════════
   Dorée & Rose — White Luxury Minimal Theme
   ═══════════════════════════════════════════════════════ */

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

html, body {
  overflow-x: hidden;
}

:root {
  --black: #1C1917;
  --white: #FFFFFF;
  --off-white: #FAFAF9;
  --gray-50: #F5F5F4;
  --gray-100: #F5F5F4;
  --gray-200: #E7E5E4;
  --gray-300: #D6D3D1;
  --gray-400: #A8A29E;
  --gray-500: #78716C;
  --gray-600: #57534E;
  --gray-700: #44403C;
  --gray-800: #292524;
  --gray-900: #1C1917;
  --radius: 12px;
  --radius-sm: 8px;
  --radius-lg: 16px;
  --transition: 0.3s cubic-bezier(0.22, 1, 0.36, 1);
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.06);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--white);
  color: var(--black);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  isolation: isolate;
}

img {
  max-width: 100%;
  display: block;
}

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

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

/* ─── Navbar ─── */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: transparent;
  transition: var(--transition);
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  max-width: 100%;
  margin: 0;
  padding: 0;
}

.logo-img {
  display: block;
  width: 160px;
  height: 40px;
  background: black;
  mask: url('/images/logo.webp') center/contain no-repeat;
  -webkit-mask: url('/images/logo.webp') center/contain no-repeat;
  mask-mode: alpha;
  -webkit-mask-mode: alpha;
  transition: var(--transition);
}

.navbar:not(.scrolled) .logo-img {
  filter: brightness(0) invert(1);
}

.navbar.scrolled .logo-img {
  background: black;
  filter: none;
}

.footer-logo-img {
  display: block;
  width: 144px;
  height: 36px;
  margin-bottom: 16px;
  background: var(--white);
  mask: url('/images/logo.webp') center/contain no-repeat;
  -webkit-mask: url('/images/logo.webp') center/contain no-repeat;
  mask-mode: alpha;
  -webkit-mask-mode: alpha;
}

.logo-accent {
  color: var(--gray-500);
  margin: 0 2px;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 36px;
}

.nav-link {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
  transition: var(--transition);
  position: relative;
  padding-bottom: 4px;
}

.cart-link { display:flex; align-items:center; gap:6px; }
.cart-count { display:inline-flex; align-items:center; justify-content:center; background:var(--black); color:var(--white); font-size:9px; font-weight:700; min-width:18px; height:18px; border-radius:9px; letter-spacing:0; padding:0 5px; }
.nav-close { display: none; }

.navbar.scrolled .nav-link {
  color: var(--gray-600);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--black);
  transition: var(--transition);
}

.navbar.scrolled .nav-link::after {
  background: var(--black);
}

.nav-link:hover {
  color: var(--black);
}

.nav-link:hover::after {
  width: 100%;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  margin-right: 0;
}

.nav-right {
  display: none;
  align-items: center;
  gap: 4px;
}

.nav-cart-icon {
  display: none;
  position: relative;
  align-items: center;
  justify-content: center;
  color: white;
}

.nav-search-icon {
  display: none;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  cursor: pointer;
  color: white;
  padding: 4px;
}

.navbar.scrolled .nav-cart-icon,
.navbar.scrolled .nav-search-icon {
  color: var(--black);
}

.nav-cart-icon .cart-count {
  position: absolute;
  top: -6px;
  right: -10px;
  font-size: 8px;
  min-width: 16px;
  height: 16px;
  padding: 0 4px;
}

.nav-toggle span {
  width: 24px;
  height: 1.5px;
  background: white;
  transition: var(--transition);
}

.navbar.scrolled .nav-toggle span {
  background: var(--black);
}

/* ─── Hero ─── */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  position: relative;
  overflow: hidden;
  background-image: url('/images/herosectionpcmode.webp');
  background-size: cover;
  background-position: center;
  padding-bottom: 40px;
}

.hero-bg-img {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(255, 255, 255, 0.03) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 20%, rgba(255, 255, 255, 0.02) 0%, transparent 50%),
    radial-gradient(ellipse at 50% 80%, rgba(212, 175, 55, 0.03) 0%, transparent 50%);
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 2px,
    rgba(255, 255, 255, 0.008) 2px,
    rgba(255, 255, 255, 0.008) 4px
  );
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
}

@media (max-width: 768px) {
  .hero-content {
    padding: 0 0 30px;
    max-width: 100%;
  }
}

.hero-badge {
  display: inline-block;
  font-size: 0.7rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.25);
  padding: 8px 20px;
  margin-bottom: 40px;
  font-weight: 400;
  border-radius: 99px;
}

.hero-title {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 40px;
  align-items: center;
}

.hero-sub-top {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.5rem, 7vw, 5rem);
  font-weight: 700;
  letter-spacing: -1px;
  line-height: 1;
  color: white;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.hero-main {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-weight: 400;
  font-style: italic;
  color: white;
  letter-spacing: 6px;
  text-transform: uppercase;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.hero-desc {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.8);
  max-width: 520px;
  margin: 0 auto 48px;
  line-height: 1.8;
  font-weight: 300;
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.2);
}

.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-logo-3d {
  perspective: 800px;
  margin-bottom: 48px;
  display: flex;
  justify-content: center;
  position: relative;
  filter: drop-shadow(0 20px 30px rgba(0,0,0,0.15));
  -webkit-filter: drop-shadow(0 20px 30px rgba(0,0,0,0.15));
}

.hero-logo-floating {
  width: 260px;
  height: auto;
  filter: brightness(0) invert(1);
  animation: float3d 3s ease-in-out infinite;
  transform-style: preserve-3d;
  will-change: transform;
}

.hero-logo-3d::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 180px;
  height: 20px;
  background: radial-gradient(ellipse, rgba(0,0,0,0.1) 0%, transparent 70%);
  border-radius: 50%;
  animation: shadowPulse 3s ease-in-out infinite;
}

@keyframes shadowPulse {
  0%, 100% { transform: translateX(-50%) scale(1); opacity: 0.6; }
  25% { transform: translateX(-50%) scale(0.7); opacity: 0.3; }
  50% { transform: translateX(-50%) scale(1); opacity: 0.6; }
  75% { transform: translateX(-50%) scale(0.85); opacity: 0.4; }
}

@keyframes float3d {
  0%, 100% {
    transform: translateY(0) rotateX(0deg) rotateY(0deg) scale(1);
  }
  25% {
    transform: translateY(-18px) rotateX(4deg) rotateY(-6deg) scale(1.02);
  }
  50% {
    transform: translateY(0) rotateX(0deg) rotateY(0deg) scale(1);
  }
  75% {
    transform: translateY(-12px) rotateX(-3deg) rotateY(5deg) scale(1.01);
  }
}

/* ─── Buttons ─── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  transition: var(--transition);
  border-radius: var(--radius);
  border: none;
  font-family: inherit;
}

.btn-primary {
  background: var(--black);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.btn-primary::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.08) 50%, transparent 100%);
  animation: btnShimmer 1s ease-in-out infinite;
  pointer-events: none;
}

@keyframes btnShimmer {
  0% { left: -60%; }
  100% { left: 160%; }
}

.btn-primary:hover {
  background: var(--gray-800);
  transform: translateY(-2px);
}

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

.btn-outline:hover {
  background: var(--black);
  color: var(--white);
  transform: translateY(-2px);
}

.instagram-btn svg {
  margin-right: 4px;
}

/* ─── Section Header ─── */
.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gray-500);
  margin-bottom: 12px;
}

.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 700;
  letter-spacing: -0.5px;
  margin-bottom: 16px;
  color: var(--black);
}

.section-divider {
  width: 40px;
  height: 1px;
  background: var(--gray-300);
  margin: 0 auto;
}

/* ─── Categories ─── */
.categories {
  padding: 100px 0 80px;
}

.categories-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--gray-200);
}

.category-card {
  position: relative;
  min-height: 320px;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  padding: 40px 24px;
  transition: all 0.5s cubic-bezier(0.22, 1, 0.36, 1);
  background: var(--off-white);
  border: 1px solid var(--gray-200);
}

.category-card:hover {
  background: var(--white);
  border-color: var(--gray-400);
  z-index: 10;
}

.category-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100px;
  height: 100px;
  margin-bottom: 16px;
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.category-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: brightness(0);
}

.category-card:hover .category-icon {
  transform: scale(1.1);
}

.category-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--black);
  letter-spacing: 1px;
  margin-bottom: 4px;
}

.category-card p {
  font-size: 0.8rem;
  color: var(--gray-500);
  line-height: 1.6;
  max-width: 200px;
  text-align: center;
}

.category-arrow {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--gray-400);
  opacity: 0;
  transform: translateY(8px);
  transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.category-card:hover .category-arrow {
  opacity: 1;
  transform: translateY(0);
  color: var(--black);
}

/* ─── Products ─── */
.products {
  padding: 100px 0;
  background: var(--off-white);
}

.product-filters {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.filter-btn {
  background: var(--white);
  color: var(--gray-500);
  border: 1px solid var(--gray-200);
  padding: 10px 28px;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  transition: var(--transition);
  font-family: inherit;
  border-radius: 99px;
}

.filter-btn:hover {
  color: var(--black);
  border-color: var(--black);
}

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

.products-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
}

.product-card {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  padding: 0;
  transition: var(--transition);
  border-right: 1px solid var(--gray-200);
  border-bottom: 1px solid var(--gray-200);
}

.product-card:nth-child(2n) {
  border-right: none;
}

.product-card:last-child,
.product-card:nth-last-child(2):nth-child(2n+1) {
  border-bottom: none;
}

.product-card:hover {
  opacity: 0.95;
}

.product-image {
  aspect-ratio: 3/4;
  background: var(--gray-100);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}

.product-image-placeholder {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
  color: var(--gray-400);
  letter-spacing: 3px;
  text-transform: uppercase;
}

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

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

.product-image.skeleton::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0,0,0,0.02) 0%, rgba(0,0,0,0.06) 50%, rgba(0,0,0,0.02) 100%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
  pointer-events: none;
}

.product-image.skeleton img {
  opacity: 0;
}

.product-image.skeleton.loaded::after { display: none; }
.product-image.skeleton.loaded img { opacity: 1; }

@keyframes shimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}

.product-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--black);
  color: var(--white);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 99px;
}

.product-category {
  padding: 12px 12px 0;
  font-size: 0.55rem;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gray-500);
}

.product-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-weight: 600;
  padding: 4px 12px 0;
  color: var(--black);
}

.product-desc {
  font-size: 0.8rem;
  color: var(--gray-500);
  line-height: 1.5;
}

.product-sizes {
  display: none;
}

.size-tag {
  display: none;
}

.product-colors {
  display: flex;
  gap: 6px;
  padding: 8px 12px 0;
}

.color-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 1px solid rgba(0, 0, 0, 0.15);
  transition: var(--transition);
  flex-shrink: 0;
}

.color-dot:hover {
  transform: scale(1.3);
}

.product-price {
  font-size: 0.85rem;
  font-weight: 600;
  padding: 6px 12px 12px;
  color: var(--black);
}

/* ─── Reviews ─── */
.reviews {
  padding: 100px 0;
  overflow: hidden;
  background: var(--off-white);
}

.reviews-track {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding: 20px 4px 40px;
  scrollbar-width: none;
}

.reviews-track::-webkit-scrollbar { display: none; }

.review-card {
  flex: 0 0 380px;
  background: var(--white);
  color: var(--black);
  padding: 32px 28px;
  border-radius: var(--radius-lg);
  scroll-snap-align: start;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--gray-200);
  position: relative;
}

.review-card::after {
  content: '"';
  position: absolute;
  top: 16px;
  right: 24px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 4rem;
  line-height: 1;
  color: var(--gray-200);
  pointer-events: none;
}

.review-quote {
  display: block;
  margin-bottom: 16px;
  color: var(--black);
}

.review-card p {
  font-size: 0.9rem;
  line-height: 1.7;
  white-space: pre-line;
  color: var(--gray-600);
  position: relative;
  z-index: 1;
}

@media (max-width: 768px) {
  .review-card {
    flex: 0 0 300px;
    padding: 24px 20px;
  }
}

/* ─── Stats ─── */
.stats {
  padding: 100px 0;
  background: var(--black);
  color: var(--white);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  max-width: 700px;
  margin: 0 auto;
}

.stat-item {
  text-align: center;
  padding: 40px 24px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.03);
  transition: var(--transition);
}

.stat-item:hover {
  background: rgba(255, 255, 255, 0.06);
  transform: translateY(-4px);
}

.stat-number {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 3.2rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--white);
  letter-spacing: -1px;
}

.stat-label {
  font-size: 0.75rem;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
}

/* ─── Featured Carousel ─── */
.featured-grid {
  padding: 120px 0 100px;
  background: var(--white);
}

.featured-grid .section-header {
  text-align: center;
}

.featured-products-grid {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  gap: 0;
  margin: 0 -24px;
  padding: 0 24px;
}

.featured-products-grid::-webkit-scrollbar { display: none; }

.product-card-alt {
  flex: 0 0 65%;
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  background: var(--white);
  padding: 0;
  transition: var(--transition);
  border-right: 1px solid var(--gray-200);
}

.product-card-alt:last-child {
  border-right: none;
}

.product-card-alt:hover {
  opacity: 0.95;
}

.product-image-alt {
  aspect-ratio: 3/4;
  background: var(--gray-100);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}

.product-image-alt img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

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

.product-image-alt.skeleton::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0,0,0,0.02) 0%, rgba(0,0,0,0.06) 50%, rgba(0,0,0,0.02) 100%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
  pointer-events: none;
}

.product-image-alt.skeleton img {
  opacity: 0;
}

.product-image-alt.skeleton.loaded::after { display: none; }
.product-image-alt.skeleton.loaded img { opacity: 1; }

.product-card-alt .product-category {
  padding: 12px 12px 0;
  font-size: 0.55rem;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gray-500);
}

.product-card-alt .product-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-weight: 600;
  padding: 4px 12px 0;
  color: var(--black);
  line-height: 1.3;
}

.product-card-alt .product-price {
  font-size: 0.9rem;
  font-weight: 600;
  padding: 6px 12px 12px;
  color: var(--black);
}

@media (max-width: 768px) {
  .product-card-alt {
    flex: 0 0 80%;
  }

  .product-card-alt .product-name {
    font-size: 1.1rem;
  }
}

/* ─── Brand Story ─── */
.brand-story {
  background: var(--white);
}

.brand-story-card {
  position: relative;
  display: flex;
  align-items: flex-end;
  background-size: cover;
  background-position: center;
  overflow: hidden;
  text-decoration: none;
  min-height: 600px;
}

.brand-story-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.05) 0%, rgba(0,0,0,0.65) 100%);
  z-index: 1;
}

.brand-story-content {
  position: relative;
  z-index: 2;
  padding: 60px 48px;
  max-width: 520px;
}

.brand-story-content h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3rem;
  font-weight: 600;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 20px;
  text-shadow: 0 2px 16px rgba(0,0,0,0.35);
}

.brand-story-content p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.85);
  line-height: 1.8;
  margin-bottom: 20px;
  text-shadow: 0 1px 4px rgba(0,0,0,0.2);
}

.brand-shop-link {
  position: relative;
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--white);
  text-decoration: none;
}

.brand-shop-link::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 100%;
  height: 1px;
  background: rgba(255,255,255,0.4);
  transition: background 0.3s ease;
}

.brand-story-card:hover .brand-shop-link::after {
  background: var(--white);
}

.brand-video-wrapper {
  display: block;
  line-height: 0;
  font-size: 0;
  position: relative;
}

.brand-video {
  width: 100%;
  display: block;
  height: auto;
  max-height: 80vh;
  object-fit: cover;
}

.brand-video-shop {
  position: absolute;
  bottom: 40px;
  left: 48px;
  z-index: 3;
}

.brand-video-shop .brand-shop-link {
  color: var(--white);
  text-shadow: 0 1px 6px rgba(0,0,0,0.3);
}

.brand-video-shop .brand-shop-link::after {
  background: rgba(255,255,255,0.6);
}

.brand-video-shop .brand-shop-link:hover::after {
  background: var(--white);
}

@media (max-width: 768px) {
  .brand-story-card {
    min-height: 420px;
  }

  .brand-story-content {
    padding: 32px 24px;
  }

  .brand-story-content h3 {
    font-size: 2rem;
  }

  .brand-video {
    max-height: 60vh;
  }

  .brand-video-shop {
    bottom: 24px;
    left: 24px;
  }
}

/* ─── Features Bar ─── */
.features-bar {
  padding: 80px 0;
  background: var(--bg-color);
}

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

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 8px;
}

.feature-item svg {
  width: 64px;
  height: 64px;
  color: #000;
  fill: #000;
}

.feature-item .fi-title {
  font-size: 0.8rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--black);
  font-weight: 600;
}

.feature-item .fi-desc {
  font-size: 0.75rem;
  color: var(--gray-500);
  line-height: 1.5;
  max-width: 220px;
}

@media (max-width: 768px) {
  .features-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
  .feature-item svg {
    width: 48px;
    height: 48px;
  }
}

/* ─── About Card ─── */
.about-card {
  padding: 100px 0;
}

.about-card-inner {
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--gray-200);
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
}

.about-card-text {
  padding: 64px 56px;
}

.about-card-tag {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--gray-500);
  margin-bottom: 12px;
}

.about-card-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3rem;
  font-weight: 600;
  color: var(--black);
  margin-bottom: 8px;
  letter-spacing: -0.5px;
}

.about-card-divider {
  width: 50px;
  height: 2px;
  background: var(--black);
  margin-bottom: 28px;
}

.about-card-text p {
  color: var(--gray-600);
  font-size: 0.95rem;
  line-height: 1.9;
  font-weight: 300;
  margin-bottom: 16px;
}

.about-card-text p:last-child {
  margin-bottom: 0;
}

.about-card-img {
  line-height: 0;
  height: 100%;
}

.about-card-img img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

@media (max-width: 768px) {
  .about-card-inner {
    grid-template-columns: 1fr;
  }
  .about-card-text {
    padding: 40px 28px;
  }
  .about-card-title {
    font-size: 2.2rem;
  }
  .about-card-img {
    order: -1;
  }
}

/* ─── Contact ─── */
.contact {
  padding: 100px 0;
  background: var(--off-white);
}

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

.contact-info h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 16px;
  color: var(--black);
}

.contact-info > p {
  color: var(--gray-500);
  font-size: 0.95rem;
  margin-bottom: 32px;
  line-height: 1.7;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 32px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.85rem;
  color: var(--gray-600);
}

.contact-item svg {
  flex-shrink: 0;
  color: var(--black);
  opacity: 0.6;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: var(--white);
  padding: 40px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-200);
  box-shadow: var(--shadow-sm);
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  background: var(--off-white);
  border: 1px solid var(--gray-200);
  padding: 16px;
  color: var(--black);
  font-size: 0.9rem;
  font-family: inherit;
  transition: var(--transition);
  outline: none;
  border-radius: var(--radius);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: var(--gray-400);
  font-weight: 300;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--black);
  background: var(--white);
}

.contact-form button {
  align-self: flex-start;
  margin-top: 8px;
}

/* ─── Footer ─── */
.footer {
  padding: 80px 0 0;
  background: var(--black);
  color: var(--white);
}

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

.footer-brand h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--white);
}

.footer-brand p {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.7;
}

.footer-links h4,
.footer-social h4 {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 20px;
  color: rgba(255, 255, 255, 0.7);
}

.footer-links a,
.footer-social a {
  display: block;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 12px;
  transition: var(--transition);
}

.footer-links a:hover,
.footer-social a:hover {
  color: var(--white);
}

.social-link {
  display: flex !important;
  align-items: center;
  gap: 8px;
}

.footer-social h4 {
  text-align: center;
}

.social-link svg {
  color: rgba(255, 255, 255, 0.5);
  transition: var(--transition);
}

.social-link:hover svg {
  color: var(--white);
}

.footer-bottom {
  text-align: center;
  padding: 24px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-bottom p {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.4);
}

/* ─── About Section ─── */
.about-section {
  padding: 100px 0;
  background: var(--bg-color);
}

.about-container {
  max-width: 680px;
  margin: 0 auto;
}

.about-content {
  text-align: center;
}

.about-title {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 400;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--black);
  margin-bottom: 32px;
}

.about-text {
  font-size: 0.85rem;
  line-height: 1.8;
  color: rgba(0,0,0,0.65);
  margin-bottom: 20px;
}

.about-block {
  margin-bottom: 28px;
}

.about-heading {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--black);
  margin-bottom: 8px;
}

.about-emphasis {
  font-size: 0.9rem;
  color: var(--black);
  font-weight: 500;
  margin-top: 8px;
}

@media (max-width: 768px) {
  .about-section { padding: 60px 20px; }
  .about-title { font-size: 1.5rem; }
  .about-text { font-size: 0.8rem; }
}

/* ─── Animations ─── */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

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

/* ─── Mobile ─── */
@media (max-width: 1024px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .about-image-frame {
    max-width: 400px;
    margin: 0 auto;
  }
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
}

@media (max-width: 768px) {
  .nav-container {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 72px;
    max-width: 100%;
    margin: 0;
    padding: 0 16px;
  }
  .nav-toggle {
    display: flex;
    z-index: 1001;
    margin-right: 0;
    position: absolute;
    left: 16px;
  }
  .logo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
  }
  .logo-img {
    width: 130px;
    height: 32px;
  }
  .nav-right {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-right: 0;
    position: absolute;
    right: 16px;
  }
  .nav-search-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    border: none;
    cursor: pointer;
    color: white;
    z-index: 1001;
    padding: 4px;
  }
  .navbar.scrolled .nav-search-icon {
    color: var(--black);
  }
  .nav-cart-icon {
    display: flex;
    z-index: 1001;
    color: white;
  }
  .navbar.scrolled .nav-cart-icon {
    color: var(--black);
  }
  .nav-toggle.open {
    opacity: 0;
    pointer-events: none;
  }
  .nav-toggle span {
    background: white;
    transition: var(--transition);
  }
  .navbar.scrolled .nav-toggle span {
    background: var(--black);
  }
  .nav-links {
    position: fixed;
    top: 0;
    left: 0;
    width: 280px;
    height: 100vh;
    background: var(--white);
    flex-direction: column;
    padding: 80px 32px 32px;
    gap: 24px;
    border-right: 1px solid var(--gray-200);
    transform: translateX(-100%);
    transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
    will-change: transform;
    z-index: 999;
  }
  .nav-links.open {
    transform: translateX(0);
  }
  .nav-links .nav-link,
  .navbar.scrolled .nav-links .nav-link {
    color: var(--black) !important;
    font-size: 0.9rem;
  }
  .nav-links .nav-link::after {
    background: var(--black);
  }
  .nav-close {
    position: absolute;
    top: 20px;
    right: 24px;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    cursor: pointer;
    color: var(--black);
    background: var(--gray-100);
    border-radius: 50%;
    line-height: 1;
    z-index: 1000;
  }
  .categories-grid {
    grid-template-columns: 1fr;
  }
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .about-features {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero {
    align-items: stretch;
    justify-content: flex-end;
    padding-bottom: 30px;
    background-image: url('/images/herosectionphonemod.webp');
    background-size: cover;
    background-position: center;
  }
  .hero-content {
    display: flex;
    flex-direction: column;
    padding: 0 0 30px;
    max-width: 100%;
    margin: 0;
  }
  .hero-sub-top,
  .hero-main {
    color: white;
    text-shadow: 0 4px 20px rgba(0,0,0,0.7);
  }
  .hero-actions {
    flex-direction: column;
    align-items: center;
  }
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .product-card {
    padding: 0;
  }
  .product-filters {
    flex-wrap: wrap;
  }
  .categories-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .category-card {
    min-height: 200px;
    padding: 24px 16px;
  }
  .category-card h3 {
    font-size: 1.3rem;
  }
  .category-icon {
    width: 72px;
    height: 72px;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .hero-actions {
    flex-direction: column;
    align-items: center;
  }
  .product-card {
    padding: 0;
  }
}
