/* ═══════════════════════════════════════════════════════
   home.css — Homepage-specific styles
   ═══════════════════════════════════════════════════════ */

/* ─── HERO ───────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 90vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
}

.hero-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 60px 80px 72px;
  position: relative;
  z-index: 2;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent);
  color: white;
  font-family: var(--font-d);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 100px;
  width: fit-content;
  margin-bottom: 28px;
  animation: fadeUp 0.6s ease both;
}
.hero-tag::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,0.7);
  animation: pulse 1.8s infinite;
}

.hero-headline {
  font-family: var(--font-d);
  font-size: clamp(44px, 5.5vw, 76px);
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: -0.03em;
  color: var(--text-1);
  margin-bottom: 24px;
  animation: fadeUp 0.7s 0.1s ease both;
}
.hero-headline em {
  font-style: italic;
  color: var(--accent);
}

.hero-sub {
  font-size: 17px;
  color: var(--text-2);
  max-width: 380px;
  margin-bottom: 40px;
  font-weight: 300;
  line-height: 1.7;
  animation: fadeUp 0.7s 0.2s ease both;
}

.hero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  animation: fadeUp 0.7s 0.3s ease both;
}

.hero-stats {
  display: flex;
  gap: 40px;
  margin-top: 52px;
  animation: fadeUp 0.7s 0.4s ease both;
}
.stat-item { text-align: left; }
.stat-number {
  font-family: var(--font-d);
  font-size: 28px;
  font-weight: 800;
  color: var(--text-1);
  line-height: 1;
  margin-bottom: 4px;
}
.stat-label {
  font-size: 12px;
  color: var(--text-2);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.hero-right {
  position: relative;
  background: var(--ink);
  overflow: hidden;
}
.hero-right::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 30%, rgba(106,18,190,0.25) 0%, transparent 60%),
              radial-gradient(ellipse at 20% 80%, rgba(212,168,75,0.2) 0%, transparent 50%);
  z-index: 1;
}

.hero-slides { position: absolute; inset: 0; z-index: 0; }
.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.9s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-slide.active { opacity: 1; }
.hero-slide img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.7;
}

.hero-slide-caption {
  position: absolute;
  bottom: 40px; left: 40px;
  z-index: 2;
  color: white;
}
.caption-tag {
  font-family: var(--font-d);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px;
}
.caption-name {
  font-family: var(--font-d);
  font-size: 24px;
  font-weight: 800;
  margin-bottom: 4px;
  letter-spacing: -0.02em;
}
.caption-price { font-size: 14px; color: rgba(255,255,255,0.65); }

.hero-dots {
  position: absolute;
  bottom: 40px; right: 40px;
  z-index: 2;
  display: flex;
  gap: 8px;
  flex-direction: column;
}
.hero-dot {
  width: 4px; height: 20px;
  border-radius: 2px;
  background: rgba(255,255,255,0.3);
  cursor: pointer;
  transition: all var(--t);
  border: none;
}
.hero-dot.active { background: var(--surface-3); height: 32px; }
.hero-corner-tag {
  position: absolute;
  top: 36px; right: 40px;
  z-index: 2;
  color: rgba(255,255,255,0.35);
  font-size: 11px;
  font-family: var(--font-d);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
}

/* ─── COLLECTIONS SECTION ────────────────────────────── */
.collections-section {
  padding: 80px 72px;
  background: var(--surface-2);
  position: relative;
  z-index: 1;
}
.collections-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 20px;
  align-items: stretch;
}
.collection-card {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  cursor: pointer;
  background: var(--ink);
  display: block;
  transition: transform var(--t);
  min-height: 380px;
}
.collection-card:hover { transform: translateY(-4px); }
.collection-card:hover .card-bg-img { transform: scale(1.05); }
.card-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.8;
  transition: transform 0.6s var(--ease);
}
.card-bg {
  position: absolute;
  inset: 0;
}
.card-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.1) 50%, transparent 100%);
}
.card-content {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 28px;
  color: white;
}
.card-tag {
  font-size: 10px;
  font-family: var(--font-d);
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px;
}
.card-title {
  font-family: var(--font-d);
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: 6px;
}
.collection-card.featured .card-title { font-size: 32px; }
.card-subtitle {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  margin-bottom: 16px;
}
.card-action {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-d);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: white;
  border-bottom: 1.5px solid rgba(255,255,255,0.4);
  padding-bottom: 2px;
  transition: border-color var(--t);
}
.card-action:hover { border-color: white; }
.card-corner-badge {
  position: absolute;
  top: 20px; right: 20px;
  background: var(--accent);
  color: white;
  font-family: var(--font-d);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 10px;
  border-radius: 100px;
}

/* ─── ARRIVALS ───────────────────────────────────────── */
.arrivals-section {
  padding: 80px 72px;
  position: relative;
  z-index: 1;
}
.arrivals-carousel { position: relative; overflow: hidden; }
.arrivals-track {
  display: flex;
  gap: 20px;
  transition: transform 0.5s var(--ease);
}
.arrival-card {
  flex: 0 0 calc(25% - 15px);
  background: var(--surface-3);
  border-radius: var(--r-md);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: all var(--t);
  cursor: pointer;
  position: relative;
}
.arrival-card:hover { box-shadow: var(--shadow); transform: translateY(-4px); }
.arrival-img-wrap {
  position: relative;
  background: var(--surface-2);
  overflow: hidden;
  aspect-ratio: 4/5;
}
.arrival-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.arrival-card:hover .arrival-img-wrap img { transform: scale(1.06); }
.arrival-badge {
  position: absolute;
  top: 12px; left: 12px;
  background: var(--accent);
  color: white;
  font-family: var(--font-d);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 100px;
}
.arrival-wishlist {
  position: absolute;
  top: 12px; right: 12px;
  width: 34px; height: 34px;
  background: var(--surface-3);
  border-radius: 50%;
  border: none;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  font-size: 16px;
  opacity: 0;
  transform: scale(0.8);
  transition: all var(--t);
  box-shadow: 0 2px 8px rgba(0,0,0,0.12);
}
.arrival-card:hover .arrival-wishlist { opacity: 1; transform: scale(1); }
.arrival-info { padding: 16px; }
.arrival-category {
  font-size: 11px;
  color: var(--text-2);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 4px;
}
.arrival-name {
  font-family: var(--font-d);
  font-size: 15px;
  font-weight: 700;
  color: var(--text-1);
  margin-bottom: 8px;
  line-height: 1.3;
}
.arrival-pricing {
  display: flex;
  align-items: center;
  gap: 8px;
}

.carousel-controls {
  display: flex;
  gap: 10px;
  margin-top: 32px;
  justify-content: center;
}
.ctrl-btn {
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1.5px solid var(--ink);
  background: transparent;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px;
  transition: all var(--t);
  color: var(--text-1);
  font-family: var(--font-b);
}
.ctrl-btn:hover { background: var(--text-1); color: var(--surface-1); }

/* ─── COMING SOON ────────────────────────────────────── */
.coming-section {
  padding: 80px 72px;
  background: var(--chrome-bg);
  color: white;
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.coming-section::before {
  content: 'COMING SOON';
  position: absolute;
  font-family: var(--font-d);
  font-size: 160px;
  font-weight: 800;
  color: rgba(255,255,255,0.025);
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  white-space: nowrap;
  pointer-events: none;
  letter-spacing: -0.04em;
}
.coming-section .section-eyebrow { color: var(--gold); }
.coming-section .section-eyebrow::before { background: var(--gold); }
.coming-section .section-title { color: white; }
.coming-section .section-link { color: rgba(255,255,255,0.4); border-color: rgba(255,255,255,0.2); }
.coming-section .section-link:hover { color: var(--gold); border-color: var(--gold); }
.coming-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.coming-card {
  border-radius: var(--r-md);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.08);
  display: grid;
  grid-template-columns: 140px 1fr;
  background: rgba(255,255,255,0.04);
  transition: all var(--t);
}
.coming-card:hover { background: rgba(255,255,255,0.07); border-color: rgba(255,255,255,0.14); }
.coming-img {
  background: rgba(255,255,255,0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
  overflow: hidden;
  aspect-ratio: 1;
}
.coming-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.5;
  transition: opacity var(--t);
}
.coming-card:hover .coming-img img { opacity: 0.7; }
.coming-info {
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.coming-available {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-family: var(--font-d);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}
.coming-available::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gold);
}
.coming-name {
  font-family: var(--font-d);
  font-size: 20px;
  font-weight: 800;
  color: white;
  letter-spacing: -0.02em;
  margin-bottom: 6px;
}
.coming-desc {
  font-size: 13px;
  color: rgba(255,255,255,0.45);
  margin-bottom: 16px;
}
.notify-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  border: 1.5px solid rgba(255,255,255,0.25);
  color: white;
  font-family: var(--font-d);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 8px 16px;
  border-radius: 100px;
  cursor: pointer;
  transition: all var(--t);
  width: fit-content;
}
.notify-btn:hover { background: var(--gold); border-color: var(--gold); color: var(--text-1); }

/* ─── HOME RESPONSIVE ────────────────────────────────── */
@media (max-width: 1100px) {
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-right { height: 420px; display: block; }
  .hero-left { padding: 60px 40px; }
  .collections-grid { grid-template-columns: 1fr 1fr; }
  .collections-section, .arrivals-section, .coming-section { padding: 60px 40px; }
  .arrival-card { flex: 0 0 calc(33.333% - 14px); }
}

@media (max-width: 768px) {
  .hero-left { padding: 48px 24px; }
  .hero-stats { gap: 24px; }
  .collections-grid { grid-template-columns: 1fr; }
  .collections-section, .arrivals-section, .coming-section { padding: 48px 24px; }
  .arrival-card { flex: 0 0 calc(50% - 10px); }
  .coming-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .arrival-card { flex: 0 0 calc(80% - 10px); }
  .coming-card { grid-template-columns: 1fr; }
  .coming-img { aspect-ratio: 2/1; }
}
