/* ============================================================
   ROBA TRADITIONAL CLOTHING — LUXURY REDESIGN
   Premium Ethiopian Fashion · Mobile-First · 2026
============================================================ */

/* === GOOGLE FONTS & VARIABLES === */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&family=Poppins:wght@300;400;500;600;700&display=swap');

:root {
  --black:       #111111;
  --gold:        #C9A227;
  --gold-light:  #E8C96A;
  --gold-dark:   #9A7A1E;
  --cream:       #FAFAF8;
  --cream-2:     #F5F0E8;
  --white:       #FFFFFF;
  --gray-100:    #F4F4F2;
  --gray-200:    #E8E6E1;
  --gray-400:    #B0ADA6;
  --gray-600:    #777470;
  --gray-800:    #3A3835;
  --telegram:    #26A5E4;
  --whatsapp:    #25D366;

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'Poppins', 'Segoe UI', Arial, sans-serif;

  --radius-sm:   4px;
  --radius-md:   8px;
  --radius-lg:   16px;
  --radius-xl:   24px;

  --shadow-sm:   0 2px 10px rgba(17,17,17,0.06);
  --shadow-md:   0 8px 32px rgba(17,17,17,0.10);
  --shadow-lg:   0 20px 60px rgba(17,17,17,0.15);
  --shadow-xl:   0 32px 80px rgba(17,17,17,0.18);

  --transition:  0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);

  --container:   1380px;
  --section-pad: 110px;
}

/* === RESET & BASE === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  color: var(--gray-800);
  background: var(--white);
  line-height: 1.65;
  overflow-x: hidden;
}
a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
ul { list-style: none; }
input, textarea, select { font-family: inherit; }

/* === CONTAINER === */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 40px;
}
@media (max-width: 768px) { .container { padding: 0 20px; } }
@media (max-width: 480px) { .container { padding: 0 16px; } }

/* === TYPOGRAPHY === */
h1, h2, h3, h4, h5, h6 { line-height: 1.15; font-weight: 500; }
.font-display { font-family: var(--font-display); }

/* Section Headers */
.section-label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 14px;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 500;
  color: var(--black);
  margin-bottom: 16px;
  line-height: 1.2;
}
.section-subtitle {
  font-size: 16px;
  color: var(--gray-600);
  line-height: 1.75;
  max-width: 560px;
}
.section-header {
  text-align: center;
  margin-bottom: 70px;
}
.section-header .section-subtitle { margin: 0 auto; }

/* Gold Accent Line */
.gold-line {
  display: block;
  width: 52px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  margin: 16px 0 0;
}
.gold-line.centered { margin: 16px auto 0; }

/* === SECTION PADDING === */
.section-pad { padding: var(--section-pad) 0; }
.section-pad-sm { padding: 70px 0; }
.bg-cream  { background: var(--cream); }
.bg-cream2 { background: var(--cream-2); }
.bg-black  { background: var(--black); }

/* === BUTTONS === */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 36px;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
  white-space: nowrap;
  cursor: pointer;
  border: none;
}
.btn-primary {
  background: var(--black);
  color: var(--white);
}
.btn-primary:hover {
  background: var(--gold);
  color: var(--black);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201,162,39,0.35);
}
.btn-gold {
  background: var(--gold);
  color: var(--black);
}
.btn-gold:hover {
  background: var(--black);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.6);
}
.btn-outline:hover {
  background: var(--white);
  color: var(--black);
  border-color: var(--white);
}
.btn-outline-dark {
  background: transparent;
  color: var(--black);
  border: 1.5px solid var(--black);
}
.btn-outline-dark:hover {
  background: var(--black);
  color: var(--white);
}
.btn-outline-gold {
  background: transparent;
  color: var(--gold-dark);
  border: 1.5px solid var(--gold);
}
.btn-outline-gold:hover {
  background: var(--gold);
  color: var(--black);
}
.btn-lg { padding: 18px 48px; font-size: 13px; }
.btn-sm { padding: 10px 24px; font-size: 11px; }

/* ============================================================
   NAVBAR
============================================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: 80px;
  transition: background var(--transition), box-shadow var(--transition), height var(--transition);
  background: transparent;
}
.navbar.scrolled {
  background: rgba(255,255,255,0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 rgba(17,17,17,0.08), var(--shadow-sm);
  height: 70px;
}
.navbar.solid {
  background: var(--white);
  box-shadow: 0 1px 0 rgba(17,17,17,0.08);
  height: 70px;
}
.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  color: var(--white);
  transition: color var(--transition);
  z-index: 2;
}
.navbar.scrolled .nav-logo,
.navbar.solid .nav-logo { color: var(--black); }
.nav-logo img {
  height: 44px;
  width: auto;
  transition: filter var(--transition);
}
.navbar.scrolled .nav-logo img,
.navbar.solid .nav-logo img { filter: none; }
.nav-logo-text { display: flex; flex-direction: column; line-height: 1.1; }
.nav-logo-text .logo-main { font-size: 20px; letter-spacing: 0.05em; }
.nav-logo-text .logo-sub {
  font-family: var(--font-body);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 2px;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 40px;
}
.nav-links a {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.88);
  position: relative;
  padding: 4px 0;
  transition: color var(--transition);
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--gold);
  transition: width var(--transition);
}
.nav-links a:hover { color: var(--white); }
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }
.navbar.scrolled .nav-links a,
.navbar.solid .nav-links a { color: var(--gray-800); }
.navbar.scrolled .nav-links a:hover,
.navbar.solid .nav-links a:hover { color: var(--black); }

.nav-actions {
  display: flex;
  align-items: center;
  gap: 6px;
}
.nav-icon-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.88);
  font-size: 17px;
  transition: all var(--transition);
  cursor: pointer;
  border: none;
  background: transparent;
}
.nav-icon-btn:hover {
  background: rgba(255,255,255,0.15);
  color: var(--white);
}
.navbar.scrolled .nav-icon-btn,
.navbar.solid .nav-icon-btn {
  color: var(--gray-800);
}
.navbar.scrolled .nav-icon-btn:hover,
.navbar.solid .nav-icon-btn:hover {
  background: var(--gray-100);
  color: var(--black);
}
.nav-cart-btn { position: relative; }
.cart-badge-count {
  position: absolute;
  top: 6px;
  right: 6px;
  background: var(--gold);
  color: var(--black);
  font-size: 9px;
  font-weight: 700;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}
.nav-cta {
  margin-left: 10px;
  padding: 11px 26px;
  font-size: 11px;
}
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 28px;
  cursor: pointer;
  padding: 8px 6px;
}
.nav-hamburger span {
  display: block;
  height: 1.5px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition);
}
.navbar.scrolled .nav-hamburger span,
.navbar.solid .nav-hamburger span { background: var(--black); }

.mobile-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--white);
  z-index: 999;
  display: flex;
  flex-direction: column;
  padding: 90px 32px 40px;
  transform: translateX(-100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
}
.mobile-nav.open { transform: translateX(0); }
.mobile-nav a {
  display: block;
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 500;
  color: var(--black);
  padding: 16px 0;
  border-bottom: 1px solid var(--gray-200);
  letter-spacing: 0.02em;
  transition: color var(--transition);
}
.mobile-nav a:last-of-type { border-bottom: none; }
.mobile-nav a:hover { color: var(--gold); }
.mobile-nav-footer { margin-top: auto; padding-top: 32px; }
.mobile-nav-footer .btn { width: 100%; justify-content: center; }
.mobile-nav-close {
  position: absolute;
  top: 22px;
  right: 24px;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--gray-600);
  cursor: pointer;
}

body { padding-top: 80px; }
.body-no-offset { padding-top: 0; }

/* ============================================================
   HERO SECTION
============================================================ */
.hero-section {
  position: relative;
  height: 100vh;
  min-height: 680px;
  overflow: hidden;
  margin-top: -80px;
}
.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.2s ease;
  z-index: 1;
}
.hero-slide.active { opacity: 1; z-index: 2; }
.hero-slide-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.04);
  transition: transform 7s ease;
}
.hero-slide.active .hero-slide-bg { transform: scale(1.0); }
.hero-slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(10,10,10,0.72) 0%, rgba(10,10,10,0.35) 60%, rgba(10,10,10,0.55) 100%);
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 3;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 120px 0 100px;
  max-width: 700px;
}
.hero-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 22px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease 0.4s, transform 0.8s ease 0.4s;
}
.hero-slide.active .hero-label { opacity: 1; transform: translateY(0); }
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(44px, 6vw, 80px);
  font-weight: 500;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 24px;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.9s ease 0.6s, transform 0.9s ease 0.6s;
}
.hero-slide.active .hero-title { opacity: 1; transform: translateY(0); }
.hero-desc {
  font-size: 17px;
  color: rgba(255,255,255,0.78);
  line-height: 1.75;
  margin-bottom: 44px;
  max-width: 500px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease 0.8s, transform 0.8s ease 0.8s;
}
.hero-slide.active .hero-desc { opacity: 1; transform: translateY(0); }
.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease 1s, transform 0.8s ease 1s;
}
.hero-slide.active .hero-actions { opacity: 1; transform: translateY(0); }

.hero-dots {
  position: absolute;
  bottom: 48px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  gap: 10px;
}
.hero-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  cursor: pointer;
  transition: all var(--transition);
  border: none;
}
.hero-dot.active {
  width: 28px;
  border-radius: 3px;
  background: var(--gold);
}
.hero-scroll {
  position: absolute;
  bottom: 44px;
  right: 60px;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.5);
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.hero-scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, transparent, rgba(255,255,255,0.5));
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; transform: scaleY(0.8); }
  50% { opacity: 1; transform: scaleY(1); }
}

/* ============================================================
   TRUST STRIP
============================================================ */
.trust-strip {
  background: var(--black);
  padding: 22px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.trust-strip-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255,255,255,0.85);
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: 0.04em;
  padding: 0 40px;
}
.trust-item i { color: var(--gold); font-size: 16px; flex-shrink: 0; }
.trust-divider { width: 1px; height: 20px; background: rgba(255,255,255,0.12); flex-shrink: 0; }

@media (max-width: 900px) {
  .trust-strip-inner { flex-wrap: wrap; gap: 8px; }
  .trust-item { padding: 10px 20px; }
  .trust-divider { display: none; }
}

/* ============================================================
   GLOBAL PRODUCT CARDS & GRIDS
============================================================ */
.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}
.products-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.products-grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  max-width: 980px;
  margin: 0 auto;
}

@media (max-width: 1200px) { 
  .products-grid { grid-template-columns: repeat(3, 1fr); } 
}

@media (max-width: 900px)  {
  .products-grid, .products-grid-3 { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .products-grid-2 { grid-template-columns: repeat(2, 1fr); gap: 24px; }
}

@media (max-width: 520px) {
  .products-grid, .products-grid-3, .products-grid-2 {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}

/* Base Product Card Settings (Desktop) */
.product-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(17,17,17,0.05);
  transition: transform var(--transition), box-shadow var(--transition);
}
.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 56px rgba(17,17,17,0.13);
}
.product-card-media {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
  background: var(--cream-2);
  flex-shrink: 0;
}
.product-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}
.product-card:hover .product-card-media img { transform: scale(1.06); }

.card-badge {
  position: absolute;
  top: 18px;
  left: 18px;
  z-index: 3;
  padding: 6px 13px;
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 3px;
  line-height: 1;
}
.card-badge-dark { background: var(--black); color: var(--white); }
.card-badge-gold { background: var(--gold); color: var(--black); }

.card-overlay {
  position: absolute;
  inset: 0;
  background: rgba(17,17,17,0.22);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition);
  z-index: 2;
}
.product-card:hover .card-overlay { opacity: 1; }
.card-quick-view {
  background: var(--white);
  color: var(--black);
  padding: 12px 28px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: var(--radius-sm);
  transform: translateY(10px);
  transition: transform var(--transition);
}
.product-card:hover .card-quick-view { transform: translateY(0); }

.product-card-body { padding: 22px 22px 10px; flex: 1; }
.product-card-name {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 500;
  color: var(--black);
  margin-bottom: 6px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.product-card-price { font-size: 14px; color: var(--gray-600); font-style: italic; }
.product-card-actions { padding: 0 22px 22px; display: flex; gap: 10px; }
.product-card-actions .btn { flex: 1; padding: 12px; font-size: 10.5px; }

/* ============================================================
   PREMIUM COMPACT CARD REDESIGN (Inspired by habesha.fashion)
============================================================ */
.products-grid--compact {
  gap: 24px;
}
.products-grid--compact .product-card {
  width: 100%;
  max-width: 100%;
  margin: 0;
  background: transparent;
  box-shadow: none;
  border-radius: 0;
}
.products-grid--compact .product-card:hover {
  transform: none;
  box-shadow: none;
}
.products-grid--compact .product-card-media {
  aspect-ratio: 3/4;
}
.products-grid--compact .product-card-body {
  padding: 12px 0 6px 0;
  text-align: left;
}
.products-grid--compact .product-card-name {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 400;
  color: #1a1a1a;
  margin-bottom: 4px;
  line-height: 1.3;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  white-space: normal;
  overflow: visible;
  text-overflow: clip;
}
.products-grid--compact .product-card-price {
  font-size: 13px;
  color: #1a1a1a;
  font-weight: 500;
  font-style: normal;
}
.products-grid--compact .card-overlay {
  display: none !important;
}
.products-grid--compact .card-badge {
  position: absolute;
  top: auto;
  bottom: 12px;
  left: 12px;
  background: #5c4925;
  color: #fff;
  padding: 5px 12px;
  font-size: 10px;
  font-weight: 400;
  text-transform: capitalize;
  border-radius: 20px;
}

/* ============================================================
   EMERGENCY HORIZONTAL MOBILE FORCE (FLUID FLEX LAYOUT)
============================================================ */
@media screen and (max-width: 768px) {
  /* 1. Force the container into a wrapping horizontal line */
  html body .products-grid, 
  html body .products-grid--compact,
  main .products-grid {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: wrap !important;
    justify-content: space-between !important;
    align-items: stretch !important;
    gap: 16px 8px !important;
    width: 100% !important;
  }

  /* 2. Force each item to take exactly 48% width so 2 fit side-by-side perfectly */
  html body .products-grid .product-card,
  html body .products-grid--compact .product-card,
  main .products-grid .product-card {
    display: flex !important;
    flex-direction: column !important;
    flex: 0 0 calc(50% - 4px) !important; /* Math breakdown: Half screen width minus half gap */
    width: calc(50% - 4px) !important;
    min-width: calc(50% - 4px) !important;
    box-sizing: border-box !important;
    float: left !important; /* Visual fallback for older engines */
  }

  /* 3. Force the image boxes to retain proper layout dimensions */
  html body .products-grid .product-card-media,
  html body .products-grid--compact .product-card-media {
    width: 100% !important;
    aspect-ratio: 3 / 4 !important;
    position: relative !important;
    display: block !important;
  }

  /* 4. Completely eliminate layout-breaking desktop buttons on phone viewports */
  html body .products-grid .product-card-actions,
  html body .products-grid--compact .product-card-actions {
    display: none !important;
    visibility: hidden !important;
    height: 0 !important;
    padding: 0 !important;
    margin: 0 !important;
  }
}
/* ============================================================
   CRITICAL 2-COLUMN FORCE MOBILE OVERRIDES (< 768px)
============================================================ */
@media screen and (max-width: 768px) {
  /* Forces both product grids to strictly hold 2 cards horizontally */
  html body .products-grid,
  html body .products-grid--compact,
  html body .container .products-grid.products-grid--compact {
    grid-template-columns: repeat(2, 1fr) !important;
    display: grid !important;
    gap: 16px 12px !important; /* Elegant compact spacing for mobile */
  }

  /* Ensures the product cards take up exactly their half of the screen */
  html body .products-grid .product-card,
  html body .products-grid--compact .product-card {
    width: 100% !important;
    max-width: 100% !important;
    display: flex !important;
    flex-direction: column !important;
  }

  /* Hides the bulky desktop buttons on mobile to keep images large and clean */
  html body .products-grid .product-card-actions,
  html body .products-grid--compact .product-card-actions {
    display: none !important;
  }

  /* Optimizes typography so titles fit neatly in 2 columns */
  html body .products-grid .product-card-name,
  html body .products-grid--compact .product-card-name {
    font-size: 12px !important;
    margin-top: 6px !important;
    margin-bottom: 2px !important;
    display: -webkit-box !important;
    -webkit-line-clamp: 2 !important;
    -webkit-box-orient: vertical !important;
    overflow: hidden !important;
    white-space: normal !important;
  }

  html body .products-grid .product-card-price,
  html body .products-grid--compact .product-card-price {
    font-size: 12px !important;
  }

  /* Positions badge beautifully inside the compact grid */
  html body .products-grid .card-badge,
  html body .products-grid--compact .card-badge {
    position: absolute !important;
    top: auto !important;
    bottom: 8px !important;
    left: 8px !important;
    padding: 4px 10px !important;
    font-size: 8px !important;
  }
}

/* ============================================================
   COLLECTIONS, PROMOS, AND BANNER BLOCKS
============================================================ */
.collection-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.collection-card { position: relative; aspect-ratio: 3/4; border-radius: var(--radius-lg); overflow: hidden; cursor: pointer; }
.collection-card img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--transition-slow); }
.collection-card:hover img { transform: scale(1.06); }
.collection-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,10,10,0.75) 0%, rgba(10,10,10,0.1) 55%);
  display: flex; flex-direction: column; align-items: flex-start; justify-content: flex-end; padding: 36px 32px;
}
.collection-card-label { font-size: 10px; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); margin-bottom: 8px; }
.collection-card-name { font-family: var(--font-display); font-size: 26px; font-weight: 500; color: var(--white); line-height: 1.2; margin-bottom: 16px; }
.collection-card-link {
  display: inline-flex; align-items: center; gap: 8px; font-size: 11px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--white);
  border-bottom: 1px solid rgba(255,255,255,0.45); padding-bottom: 3px; opacity: 0; transform: translateY(8px); transition: all 0.35s ease;
}
.collection-card:hover .collection-card-link { transform: translateY(0); opacity: 1; color: var(--gold); border-color: var(--gold); }

@media (max-width: 900px) { .collection-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px)  { .collection-grid { grid-template-columns: 1fr; } }

.promo-banner { position: relative; height: 540px; overflow: hidden; }
.promo-banner img { width: 100%; height: 100%; object-fit: cover; transform: scale(1.04); transition: transform 8s ease; }
.promo-banner:hover img { transform: scale(1.0); }
.promo-banner-overlay { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(10,10,10,0.80) 0%, rgba(10,10,10,0.25) 70%); display: flex; align-items: center; }
.promo-banner-content { max-width: 560px; padding: 0 60px; }
.promo-banner-label { font-size: 11px; font-weight: 600; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold); margin-bottom: 18px; display: block; }
.promo-banner-title { font-family: var(--font-display); font-size: clamp(36px, 4vw, 56px); font-weight: 500; color: var(--white); line-height: 1.15; margin-bottom: 20px; }
.promo-banner-text { font-size: 16px; color: rgba(255,255,255,0.78); line-height: 1.7; margin-bottom: 36px; }

@media (max-width: 768px) {
  .promo-banner { height: 380px; }
  .promo-banner-content { padding: 0 24px; max-width: 100%; }
  .promo-banner-overlay { background: rgba(10,10,10,0.65); }
}

/* ============================================================
   TESTIMONIALS
============================================================ */
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.testimonial-card { background: var(--white); border: 1px solid var(--gray-200); border-radius: var(--radius-lg); padding: 36px 32px; transition: box-shadow var(--transition), transform var(--transition); }
.testimonial-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.testimonial-stars { display: flex; gap: 4px; margin-bottom: 20px; }
.testimonial-stars i { color: var(--gold); font-size: 14px; }
.testimonial-text { font-family: var(--font-display); font-size: 17px; font-style: italic; color: var(--black); line-height: 1.65; margin-bottom: 28px; }
.testimonial-author { display: flex; align-items: center; gap: 14px; }
.testimonial-avatar { width: 48px; height: 48px; border-radius: 50%; background: var(--cream-2); display: flex; align-items: center; justify-content: center; font-family: var(--font-display); font-size: 18px; font-weight: 600; color: var(--gold-dark); flex-shrink: 0; }
.testimonial-author-name { font-size: 14px; font-weight: 600; color: var(--black); display: block; }
.testimonial-author-loc { font-size: 12px; color: var(--gray-600); }

@media (max-width: 900px) { .testimonials-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .testimonials-grid { grid-template-columns: 1fr; } }

/* ============================================================
   INSTAGRAM GRID / GALLERY
============================================================ */
.instagram-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 4px; }
.instagram-item { aspect-ratio: 1; overflow: hidden; position: relative; cursor: pointer; }
.instagram-item img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--transition-slow); }
.instagram-item:hover img { transform: scale(1.08); }
.instagram-item-overlay { position: absolute; inset: 0; background: rgba(17,17,17,0.48); display: flex; align-items: center; justify-content: center; opacity: 0; transition: opacity var(--transition); }
.instagram-item:hover .instagram-item-overlay { opacity: 1; }
.instagram-item-overlay i { color: var(--white); font-size: 24px; }

@media (max-width: 900px) { .instagram-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 520px) { .instagram-grid { grid-template-columns: repeat(2, 1fr); } }

/* ============================================================
   NEWSLETTER
============================================================ */
.newsletter-section { background: var(--black); padding: 80px 0; text-align: center; }
.newsletter-label { font-size: 11px; font-weight: 600; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold); display: block; margin-bottom: 14px; }
.newsletter-title { font-family: var(--font-display); font-size: clamp(28px, 3vw, 40px); font-weight: 500; color: var(--white); margin-bottom: 14px; }
.newsletter-sub { color: rgba(255,255,255,0.6); font-size: 15px; margin-bottom: 40px; }
.newsletter-form { display: flex; gap: 0; max-width: 500px; margin: 0 auto; border-radius: var(--radius-sm); overflow: hidden; box-shadow: 0 8px 30px rgba(0,0,0,0.3); }
.newsletter-input { flex: 1; padding: 18px 24px; font-size: 14px; border: none; outline: none; background: rgba(255,255,255,0.08); color: var(--white); border: 1px solid rgba(255,255,255,0.12); border-right: none; }
.newsletter-input::placeholder { color: rgba(255,255,255,0.35); }
.newsletter-btn { padding: 18px 30px; background: var(--gold); color: var(--black); font-size: 11px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; border: none; cursor: pointer; white-space: nowrap; transition: background var(--transition); }
.newsletter-btn:hover { background: var(--white); }

@media (max-width: 520px) {
  .newsletter-form { flex-direction: column; }
  .newsletter-input { border-right: 1px solid rgba(255,255,255,0.12); border-bottom: none; }
  .newsletter-btn { padding: 16px; }
}

/* ============================================================
   FOOTER
============================================================ */
.footer { background: var(--black); color: var(--gray-400); padding: 80px 0 0; }
.footer-grid { display: grid; grid-template-columns: 2.2fr 1fr 1fr 1.5fr; gap: 56px; padding-bottom: 60px; border-bottom: 1px solid rgba(255,255,255,0.06); }
.footer-brand-logo { display: flex; align-items: center; gap: 12px; font-family: var(--font-display); font-size: 22px; color: var(--white); margin-bottom: 18px; }
.footer-brand-logo img { height: 40px; width: auto; }
.footer-brand p { font-size: 14px; line-height: 1.75; color: rgba(255,255,255,0.5); max-width: 300px; margin-bottom: 28px; }
.footer-social { display: flex; gap: 10px; flex-wrap: wrap; }
.footer-social a { width: 38px; height: 38px; border-radius: 50%; border: 1px solid rgba(255,255,255,0.12); display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.5); font-size: 14px; transition: all var(--transition); }
.footer-social a:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-2px); }
.footer-col h5 { font-family: var(--font-body); font-size: 11px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--white); margin-bottom: 24px; }
.footer-col ul li { margin-bottom: 12px; }
.footer-col ul li a { font-size: 14px; color: rgba(255,255,255,0.5); transition: color var(--transition); }
.footer-col ul li a:hover { color: var(--gold); }
.footer-contact p { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 14px; font-size: 14px; color: rgba(255,255,255,0.5); line-height: 1.5; }
.footer-contact i { color: var(--gold); font-size: 13px; margin-top: 3px; flex-shrink: 0; }
.footer-bottom { padding: 24px 0; display: flex; align-items: center; justify-content: space-between; font-size: 12.5px; color: rgba(255,255,255,0.28); }
.footer-bottom a { color: var(--gold); }

@media (max-width: 1100px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; } }
@media (max-width: 600px) { .footer-grid { grid-template-columns: 1fr; gap: 32px; .footer-bottom { flex-direction: column; gap: 8px; text-align: center; } } }

/* ============================================================
   SHARED CTA SECTION
============================================================ */
.cta-section { background: linear-gradient(135deg, #1C1510 0%, var(--black) 100%); padding: 70px 0; }
.cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 40px; }
.cta-text h2 { font-family: var(--font-display); font-size: clamp(26px, 3vw, 36px); font-weight: 500; color: var(--white); margin-bottom: 10px; }
.cta-text p { font-size: 15px; color: rgba(255,255,255,0.6); max-width: 460px; }
.cta-buttons { display: flex; gap: 12px; flex-wrap: wrap; }
.cta-btn { display: inline-flex; align-items: center; justify-content: center; gap: 10px; padding: 15px 26px; border-radius: var(--radius-md); font-size: 13px; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; color: var(--white); transition: transform var(--transition), filter var(--transition); }
.cta-btn:hover { transform: translateY(-2px); filter: brightness(1.1); }
.cta-btn-telegram { background: var(--telegram); }
.cta-btn-whatsapp { background: var(--whatsapp); }
.cta-btn-call { background: transparent; color: var(--gold); border: 1.5px solid rgba(201,162,39,0.5); }

@media (max-width: 900px) { .cta-inner { flex-direction: column; text-align: center; } .cta-buttons { justify-content: center; } .cta-text p { margin: 0 auto; } }

/* ============================================================
   UTILITY & MISC POLISH
============================================================ */
.mt-16 { margin-top: 16px; }
.browse-all-wrap { text-align: center; margin-top: 56px; }
p { line-height: 1.75; }

@media (max-width: 1024px) { :root { --section-pad: 80px; } }
@media (max-width: 768px)  {
  :root { --section-pad: 60px; }
  .hero-scroll { display: none; }
  .nav-links, .nav-cta { display: none; }
  .nav-hamburger { display: flex; }
}
@media (max-width: 520px) {
  :root { --section-pad: 50px; }
  .section-title { font-size: 26px; }
  .hero-title { font-size: 38px; }
}

[data-aos] { opacity: 0; transition-property: opacity, transform; will-change: transform, opacity; }
[data-aos="fade-up"] { transform: translateY(30px); }
[data-aos].aos-animate { opacity: 1; transform: none; }

@media (max-width: 768px) {
  .hero-content { padding: 100px 0 80px; max-width: 100%; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .section-header { margin-bottom: 44px; }
}