/* Hotshelf — Custom Landing Page Theme */
/* Typography: Playfair Display (editorial serif) + DM Sans (clean body) */
/* Palette: Warm off-white #F8F6F1 + deep charcoal #0D0D0D + amber #B85C1E */

:root {
  --bg-cream: #F8F6F1;
  --bg-dark: #0D0D0D;
  --bg-darker: #070707;
  --text-light: #F8F6F1;
  --text-dark: #0D0D0D;
  --text-muted: #7A7A7A;
  --text-dim: #A8A49E;
  --accent-amber: #B85C1E;
  --accent-amber-light: #D4783A;
  --accent-sage: #4A7C59;
  --accent-clay: #A0522D;
  --accent-rust: #8B3A1E;
  --border-subtle: rgba(184, 92, 30, 0.15);
  --border-light: rgba(248, 246, 241, 0.12);
}

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: 'DM Sans', system-ui, sans-serif;
  background-color: var(--bg-cream);
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
}

/* HERO */
.hero {
  background-color: var(--bg-dark);
  color: var(--text-light);
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 60%;
  height: 150%;
  background: radial-gradient(ellipse at center, rgba(184, 92, 30, 0.08) 0%, transparent 60%);
  pointer-events: none;
}

.hero-inner {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 80px 48px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.hero-eyebrow {
  display: inline-block;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent-amber-light);
  margin-bottom: 24px;
}

.hero-headline {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2.8rem, 5vw, 4.5rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--text-light);
  margin-bottom: 28px;
}

.hero-sub {
  font-size: 1.05rem;
  color: var(--text-dim);
  line-height: 1.7;
  max-width: 420px;
  font-weight: 300;
}

/* Hero Cards */
.hero-cards {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.product-card {
  background: #161616;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.06);
  padding: 24px;
  display: flex;
  gap: 20px;
  align-items: center;
  position: relative;
  overflow: hidden;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.product-card:hover {
  transform: translateY(-2px);
  border-color: rgba(184, 92, 30, 0.3);
}

.product-card--lg {
  padding: 28px;
}

.card-accent {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  border-radius: 4px 0 0 4px;
}

.card-accent--amber { background: var(--accent-amber); }
.card-accent--sage { background: var(--accent-sage); }
.card-accent--clay { background: var(--accent-clay); }

.card-body {
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

.card-label {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-dim);
}

/* Card visual shapes — CSS representations of products */
.card-visual {
  width: 80px;
  height: 56px;
  border-radius: 10px;
  flex-shrink: 0;
}

.card-visual--headphones {
  background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
  border-radius: 12px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.card-visual--headphones::before {
  content: '';
  width: 48px;
  height: 28px;
  background: #111;
  border: 1.5px solid #333;
  border-radius: 8px 8px 14px 14px;
}

.card-visual--watch {
  background: linear-gradient(135deg, #1c1c1e 0%, #2c2c2e 100%);
  border-radius: 8px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.card-visual--watch::before {
  content: '';
  width: 30px;
  height: 38px;
  background: #111;
  border: 1.5px solid #444;
  border-radius: 6px;
  display: flex;
}

.card-visual--charger {
  background: linear-gradient(135deg, #1a1a1a 0%, #222 100%);
  border-radius: 8px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.card-visual--charger::before {
  content: '';
  width: 40px;
  height: 24px;
  background: #111;
  border: 1px solid #333;
  border-radius: 4px;
}

.card-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.card-name {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-light);
}

.card-desc {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.card-price {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--accent-amber-light);
  margin-top: 2px;
}

/* TRENDING SECTION */
.trending {
  background-color: var(--bg-cream);
  padding: 120px 48px;
}

.trending-inner {
  max-width: 1100px;
  margin: 0 auto;
}

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

.section-eyebrow {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent-amber);
  margin-bottom: 20px;
}

.section-eyebrow--light {
  color: rgba(248, 246, 241, 0.5);
}

.section-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2rem, 3.5vw, 3.2rem);
  font-weight: 400;
  line-height: 1.15;
  color: var(--text-dark);
}

.section-title em {
  font-style: italic;
  color: var(--accent-amber);
}

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

.trend-card {
  background: #FFFFFF;
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 20px;
  padding: 36px 32px;
  position: relative;
  overflow: hidden;
  transition: box-shadow 0.3s ease, transform 0.2s ease;
}

.trend-card:hover {
  box-shadow: 0 20px 60px rgba(0,0,0,0.08);
  transform: translateY(-4px);
}

.trend-badge {
  position: absolute;
  top: 24px;
  right: 24px;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 10px;
  border-radius: 20px;
}

.trend-card--audio .trend-badge { background: #FFF3E0; color: #B85C1E; }
.trend-card--wearables .trend-badge { background: #E8F5E9; color: #2E7D32; }
.trend-card--home .trend-badge { background: #FCE4EC; color: #880E4F; }

.trend-icon {
  color: var(--text-dark);
  margin-bottom: 24px;
}

.trend-name {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--text-dark);
}

.trend-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 24px;
}

.trend-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 20px;
  border-top: 1px solid rgba(0,0,0,0.06);
}

.trend-commission {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--accent-amber);
}

.trend-trending {
  font-size: 0.75rem;
  color: #2E7D32;
  font-weight: 500;
}

.trending-footer {
  margin-top: 64px;
  text-align: center;
}

.trending-note {
  font-size: 0.82rem;
  color: var(--text-dim);
  font-style: italic;
  max-width: 500px;
  margin: 0 auto;
}

/* PHILOSOPHY SECTION */
.philosophy {
  background-color: var(--bg-dark);
  color: var(--text-light);
  padding: 120px 48px;
}

.philosophy-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.philosophy-header {
  text-align: center;
  margin-bottom: 80px;
}

.philosophy-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 400;
  line-height: 1.2;
  color: var(--text-light);
}

.philosophy-title em {
  font-style: italic;
  color: var(--accent-amber-light);
}

.philosophy-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px 64px;
}

.philosophy-card {
  display: flex;
  gap: 20px;
  padding: 32px;
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 16px;
  background: rgba(255,255,255,0.02);
  transition: background 0.2s ease, border-color 0.2s ease;
}

.philosophy-card:hover {
  background: rgba(255,255,255,0.04);
  border-color: rgba(184, 92, 30, 0.2);
}

.philosophy-icon {
  flex-shrink: 0;
  color: var(--accent-amber-light);
  margin-top: 4px;
}

.philosophy-card-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--text-light);
}

.philosophy-card-desc {
  font-size: 0.88rem;
  color: var(--text-dim);
  line-height: 1.7;
}

/* MANIFESTO SECTION */
.manifesto {
  background-color: var(--bg-cream);
  padding: 120px 48px;
}

.manifesto-inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.manifesto-accent {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 56px;
}

.accent-rule {
  width: 80px;
  height: 2px;
  background: var(--accent-amber);
  border-radius: 2px;
}

.accent-rule--short {
  width: 32px;
}

.manifesto-quote {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.3rem, 2.2vw, 1.8rem);
  font-style: italic;
  font-weight: 400;
  line-height: 1.65;
  color: var(--text-dark);
  margin-bottom: 64px;
  position: relative;
}

.manifesto-divider {
  width: 1px;
  height: 48px;
  background: var(--accent-amber);
  margin: 0 auto 56px;
}

.manifesto-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  text-align: center;
}

.stat {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.stat-number {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--accent-amber);
}

.stat-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.5;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* FOOTER */
.site-footer {
  background-color: var(--bg-darker);
  color: var(--text-dim);
  padding: 64px 48px;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 48px;
}

.footer-logo {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--text-light);
  display: block;
  margin-bottom: 12px;
}

.footer-tagline {
  font-size: 0.88rem;
  color: var(--text-dim);
}

.footer-meta {
  text-align: right;
}

.footer-note {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.25);
  line-height: 1.6;
  max-width: 400px;
  margin-bottom: 12px;
}

.footer-copy {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.2);
}

/* MOBILE RESPONSIVE */
@media (max-width: 900px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 48px;
    padding: 60px 24px;
  }

  .hero-sub {
    max-width: 100%;
  }

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

  .philosophy-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .manifesto-stats {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-meta {
    text-align: left;
  }

  .trending, .philosophy, .manifesto {
    padding: 80px 24px;
  }

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

@media (max-width: 600px) {
  .hero-headline {
    font-size: 2.4rem;
  }

  .hero-cards {
    gap: 14px;
  }

  .product-card {
    padding: 18px;
    gap: 14px;
  }

  .card-visual {
    width: 56px;
    height: 40px;
  }

  .card-visual--headphones::before {
    width: 36px;
    height: 22px;
  }

  .card-visual--watch::before {
    width: 22px;
    height: 30px;
  }

  .card-visual--charger::before {
    width: 30px;
    height: 18px;
  }
}

/* Subtle ambient glow on hero */
.hero::after {
  content: '';
  position: absolute;
  bottom: -20%;
  left: -10%;
  width: 40%;
  height: 60%;
  background: radial-gradient(ellipse, rgba(184, 92, 30, 0.05) 0%, transparent 70%);
  pointer-events: none;
}

/* ============================================
   SHOP SECTION
   ============================================ */

.shop {
  background-color: var(--bg-cream);
  padding: 120px 48px;
}

.shop-inner {
  max-width: 1280px;
  margin: 0 auto;
}

.shop .section-header {
  margin-bottom: 64px;
}

.section-title--dark {
  color: var(--text-dark);
}

.shop-featured-label,
.shop-grid-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 24px;
  padding-left: 4px;
}

.shop-featured-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 56px;
}

.shop-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

/* Product Card */
.shop-card {
  background: #fff;
  border: 1px solid rgba(0,0,0,0.07);
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.25s ease, transform 0.2s ease;
}

.shop-card:hover {
  box-shadow: 0 16px 48px rgba(0,0,0,0.1);
  transform: translateY(-3px);
}

.shop-card--featured {
  border: 1px solid rgba(0,0,0,0.1);
}

/* Badge */
.shop-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 20px;
  z-index: 1;
}

.shop-badge--amber { background: var(--accent-amber); color: #fff; }
.shop-badge--sage  { background: var(--accent-sage); color: #fff; }
.shop-badge--clay  { background: var(--accent-clay); color: #fff; }

/* Product visual placeholder */
.shop-visual {
  width: 100%;
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.shop-card-body {
  padding: 18px 18px 16px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
}

.shop-name {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-dark);
  line-height: 1.3;
}

.shop-desc {
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.shop-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 12px;
}

.shop-price {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-dark);
}

.shop-btn {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--accent-amber);
  text-decoration: none;
  padding: 6px 12px;
  border: 1.5px solid var(--accent-amber);
  border-radius: 8px;
  transition: background 0.15s ease, color 0.15s ease;
}

.shop-btn:hover {
  background: var(--accent-amber);
  color: #fff;
}

.shop-btn--primary {
  background: var(--accent-amber);
  color: #fff;
}

.shop-btn--primary:hover {
  background: var(--accent-clay);
  border-color: var(--accent-clay);
}

/* Visual classes — CSS product representations */
.visual--headphones-sm {
  background: linear-gradient(135deg, #1a1a1a 0%, #222 100%);
}
.visual--headphones-sm::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 36px;
  border: 1.5px solid #333;
  border-radius: 10px 10px 16px 16px;
}

.visual--watch-sm {
  background: linear-gradient(135deg, #1c1c1e 0%, #2c2c2e 100%);
}
.visual--watch-sm::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 36px;
  height: 48px;
  border: 1.5px solid #444;
  border-radius: 8px;
}

.visual--earbuds {
  background: linear-gradient(135deg, #181818 0%, #202020 100%);
}
.visual--earbuds::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 40px;
  height: 30px;
  border: 1.5px solid #3a3a3a;
  border-radius: 8px;
}

.visual--watch-lg {
  background: linear-gradient(135deg, #1a1a1e 0%, #2a2a30 100%);
}
.visual--watch-lg::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 42px;
  height: 54px;
  border: 1.5px solid #444;
  border-radius: 10px;
}

.visual--stand {
  background: linear-gradient(135deg, #d8d8d8 0%, #a0a0a0 100%);
}
.visual--stand::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 50px;
  height: 36px;
  border: 1.5px solid #888;
  border-radius: 4px;
  background: #ccc;
}

.visual--bottle {
  background: linear-gradient(135deg, #e8e4de 0%, #c8c0b8 100%);
}
.visual--bottle::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 28px;
  height: 56px;
  border: 1.5px solid #a8a098;
  border-radius: 6px;
}

.visual--mug {
  background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
}
.visual--mug::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 38px;
  height: 32px;
  border: 1.5px solid #444;
  border-radius: 4px;
}

.visual--dock {
  background: linear-gradient(135deg, #1e1e1e 0%, #2e2e2e 100%);
}
.visual--dock::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 56px;
  height: 32px;
  border: 1.5px solid #3a3a3a;
  border-radius: 6px;
}

.visual--keyboard {
  background: linear-gradient(135deg, #1a1a1a 0%, #222 100%);
}
.visual--keyboard::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 58px;
  height: 26px;
  border: 1.5px solid #333;
  border-radius: 4px;
  background: #111;
}

.visual--backpack {
  background: linear-gradient(135deg, #2c2c2c 0%, #1a1a1a 100%);
}
.visual--backpack::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 42px;
  height: 54px;
  border: 1.5px solid #3a3a3a;
  border-radius: 6px 6px 4px 4px;
}

.visual--pouch {
  background: linear-gradient(135deg, #2a2a2a 0%, #1e1e1e 100%);
}
.visual--pouch::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 46px;
  height: 32px;
  border: 1.5px solid #3a3a3a;
  border-radius: 4px;
  background: #111;
}

.visual--charger-sm {
  background: linear-gradient(135deg, #1a1a1a 0%, #222 100%);
}
.visual--charger-sm::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 44px;
  height: 28px;
  border: 1.5px solid #333;
  border-radius: 4px;
}

.visual--lens {
  background: linear-gradient(135deg, #1a1a1a 0%, #222 100%);
}
.visual--lens::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 40px;
  height: 40px;
  border: 1.5px solid #3a3a3a;
  border-radius: 50%;
}

/* Featured card badge positioning */
.shop-card--featured {
  position: relative;
}

/* Disclaimer */
.shop-disclaimer {
  text-align: center;
  margin-top: 64px;
  font-size: 0.78rem;
  color: var(--text-dim);
  font-style: italic;
}

/* ============================================
   SHOP — RESPONSIVE
   ============================================ */

@media (max-width: 1100px) {
  .shop-featured-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .shop-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 900px) {
  .shop-featured-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .shop-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 600px) {
  .shop {
    padding: 80px 20px;
  }
  .shop-featured-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .shop-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }
  .shop-card-body {
    padding: 14px 14px 12px;
  }
  .shop-name {
    font-size: 0.85rem;
  }
  .shop-desc {
    font-size: 0.72rem;
  }
  .shop-price {
    font-size: 0.9rem;
  }
  .shop-btn {
    font-size: 0.68rem;
    padding: 5px 9px;
  }
}
