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

:root {
  --orange: #FF6B2C;
  --orange-dark: #E85A1A;
  --dark: #0F0F0F;
  --ink: #1A1A1A;
  --ink-soft: #6B6B6B;
  --line: #E9E9E9;
  --bg-soft: #F5F5F5;
  --white: #ffffff;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: 'Space Grotesk', 'Inter', sans-serif;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--ink);
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
button { font-family: inherit; cursor: pointer; }

.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 32px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 13px 26px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 14px;
  border: none;
  transition: transform 0.15s ease, opacity 0.15s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-sm { padding: 10px 20px; font-size: 13px; }

.btn-dark { background: var(--dark); color: #fff; }
.btn-orange { background: var(--orange); color: #fff; }
.btn-white { background: #fff; color: var(--ink); }

/* ============ HEADER ============ */
.site-header {
  border-bottom: 1px solid var(--line);
  padding: 20px 0;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo-mark { font-size: 22px; color: var(--orange); font-weight: 700; }

.main-nav { display: flex; gap: 32px; }
.main-nav a { font-size: 14px; font-weight: 500; color: var(--ink); }
.main-nav a:hover { color: var(--orange); }

/* ============ HERO ============ */
.hero { padding: 24px 0; }
.hero-card {
  background: var(--bg-soft);
  border-radius: 24px;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  align-items: center;
  overflow: hidden;
  min-height: 280px;
}
.hero-copy { padding: 40px 48px; }
.hero-copy h1 {
  font-size: 30px;
  line-height: 1.2;
  margin-bottom: 14px;
  text-transform: uppercase;
}
.hero-copy p {
  font-size: 14px;
  color: var(--ink-soft);
  max-width: 340px;
  margin-bottom: 24px;
}
.hero-btns { display: flex; gap: 12px; }

.hero-visual { height: 100%; display: flex; align-items: center; }
.hero-visual img { width: 100%; height: 280px; object-fit: cover; }

/* ============ SECTION HEAD ============ */
.section-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 28px;
}
.section-head h2 { font-size: 22px; }

.head-actions { display: flex; gap: 10px; }
.chip {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 8px 14px;
  font-size: 13px;
  color: var(--ink-soft);
  display: flex;
  align-items: center;
  gap: 6px;
}
.chip.icon-only { padding: 8px 12px; }

.view-all { font-size: 13px; font-weight: 600; color: var(--orange); }

/* ============ TOP SELLERS ============ */
.top-sellers { padding: 48px 0; }
.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.product-card {
  cursor: pointer;
}
.product-img {
  background: var(--bg-soft);
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 1;
  margin-bottom: 12px;
}
.product-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.3s ease; }
.product-card:hover .product-img img { transform: scale(1.05); }
.product-card h3 { font-size: 14px; font-weight: 600; margin-bottom: 4px; }
.product-price { font-size: 14px; font-weight: 700; color: var(--orange); margin-bottom: 2px; }
.product-sizes { font-size: 12px; color: var(--ink-soft); }

/* ============ FEATURED COLLECTIONS ============ */
.featured-collections { padding: 48px 0; }
.collections-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 20px;
}
.collection-large {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  min-height: 420px;
}
.collection-large img { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; }
.collection-badge {
  position: absolute;
  top: 20px; left: 20px;
  background: var(--orange);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 6px 12px;
  border-radius: 999px;
  z-index: 2;
}
.collection-copy {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 28px;
  background: linear-gradient(0deg, rgba(0,0,0,0.65) 0%, rgba(0,0,0,0) 70%);
  z-index: 2;
}
.collection-copy p { color: #fff; font-size: 18px; font-weight: 700; margin-bottom: 6px; max-width: 320px; }
.collection-sub { display: block; color: rgba(255,255,255,0.8); font-size: 12px; margin-bottom: 16px; max-width: 300px; }

.collections-stack { display: flex; flex-direction: column; gap: 20px; }
.collection-small { border-radius: 20px; overflow: hidden; height: 200px; }
.collection-small img { width: 100%; height: 100%; object-fit: cover; }

/* ============ BRANDS ============ */
.brands-section { padding: 40px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.brands-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
}
.brands-row span {
  font-size: 20px;
  font-weight: 700;
  color: var(--ink-soft);
  opacity: 0.5;
  font-family: 'Space Grotesk', sans-serif;
}

/* ============ EXPERIENCE ============ */
.experience-section { padding: 64px 0; }
.experience-section h2 { font-size: 26px; margin-bottom: 40px; max-width: 500px; }
.experience-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.exp-icon {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--bg-soft);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
  margin-bottom: 16px;
}
.experience-item h4 { font-size: 15px; margin-bottom: 8px; }
.experience-item p { font-size: 13px; color: var(--ink-soft); }

/* ============ PROMO SECTION ============ */
.promo-section { padding: 24px 0 64px; }
.promo-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 20px;
}
.promo-large {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  min-height: 340px;
  background: var(--ink);
}
.promo-large img { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; opacity: 0.9; }
.promo-tag {
  position: absolute;
  top: 20px; left: 20px;
  background: var(--orange);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 6px 12px;
  border-radius: 999px;
  z-index: 2;
}
.promo-copy {
  position: absolute;
  bottom: 24px; left: 24px;
  z-index: 2;
}
.promo-copy h3 { color: #fff; font-size: 20px; margin-bottom: 14px; max-width: 260px; }

.promo-stack { display: flex; flex-direction: column; gap: 20px; }
.promo-small {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  height: 160px;
  background: var(--bg-soft);
}
.promo-small img { width: 100%; height: 100%; object-fit: cover; }
.promo-copy-inline { position: absolute; bottom: 20px; left: 20px; }
.promo-copy-inline h4 { font-size: 16px; }

/* ============ TESTIMONIALS ============ */
.testimonials-section { padding: 64px 0; background: var(--bg-soft); }
.carousel-arrows { display: flex; gap: 8px; }
.carousel-arrows button {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid var(--line);
  font-size: 14px;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.testimonial-card {
  background: #fff;
  border-radius: 16px;
  padding: 24px;
}
.testimonial-card.faded { opacity: 0.4; }
.stars { color: var(--orange); font-size: 14px; margin-bottom: 12px; }
.testimonial-card h4 { font-size: 14px; margin-bottom: 10px; display: flex; align-items: center; gap: 6px; }
.verified { color: #22C55E; font-size: 12px; }
.testimonial-card p { font-size: 13px; color: var(--ink-soft); line-height: 1.6; }

/* ============ NEWSLETTER ============ */
.newsletter-section { background: var(--orange); padding: 48px 0; }
.newsletter-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
}
.newsletter-inner h2 { color: #fff; font-size: 24px; max-width: 320px; }

.newsletter-form { display: flex; gap: 12px; flex-wrap: wrap; }
.input-wrap {
  position: relative;
  background: #fff;
  border-radius: 999px;
  padding: 4px 4px 4px 16px;
  display: flex;
  align-items: center;
  min-width: 280px;
}
.mail-icon { color: var(--ink-soft); margin-right: 8px; }
.input-wrap input {
  border: none;
  outline: none;
  flex: 1;
  padding: 8px 0;
  font-size: 13px;
  font-family: inherit;
}

/* ============ FOOTER ============ */
.site-footer { padding: 64px 0 24px; background: var(--bg-soft); }
.footer-inner {
  display: grid;
  grid-template-columns: 1.6fr repeat(4, 1fr);
  gap: 24px;
  padding-bottom: 40px;
}
.footer-brand h3 { font-size: 22px; margin-bottom: 16px; }
.footer-brand p { font-size: 13px; color: var(--ink-soft); margin-bottom: 20px; max-width: 260px; }
.social-icons { display: flex; gap: 10px; }
.social-icons a {
  width: 30px; height: 30px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid var(--line);
  display: flex; align-items: center; justify-content: center;
  font-size: 12px;
}

.footer-col h4 { font-size: 13px; font-weight: 700; margin-bottom: 18px; letter-spacing: 0.03em; }
.footer-col a { display: block; font-size: 13px; color: var(--ink-soft); margin-bottom: 12px; }
.footer-col a:hover { color: var(--orange); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  font-size: 12px;
  color: var(--ink-soft);
}
.payment-icons { display: flex; gap: 12px; font-weight: 600; }

/* ============ RESPONSIVE ============ */
@media (max-width: 1024px) {
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .collections-grid, .promo-grid { grid-template-columns: 1fr; }
  .experience-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonial-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 720px) {
  .container { padding: 0 20px; }
  .main-nav { display: none; }
  .hero-card { grid-template-columns: 1fr; }
  .hero-copy { padding: 32px 24px; }
  .hero-visual img { height: 200px; }
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .experience-grid { grid-template-columns: 1fr; }
  .testimonial-grid { grid-template-columns: 1fr; }
  .newsletter-inner { flex-direction: column; align-items: flex-start; }
  .newsletter-form { width: 100%; flex-direction: column; }
  .input-wrap { width: 100%; }
  .footer-inner { grid-template-columns: repeat(2, 1fr); }
  .footer-bottom { flex-direction: column; gap: 12px; align-items: flex-start; }
}
