/* =============================================================
   etsy-hub.css
   Owns: Etsy channel launcher page (/etsy) styles.
   Does NOT own: global theme tokens (theme.css), landing page sections.
   ============================================================= */

/* ---- Header ---- */
.hub-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(13, 13, 13, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(200, 169, 110, 0.12);
  padding: 18px 40px;
}
.hub-header-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.hub-wordmark {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--accent);
  text-decoration: none;
}
.hub-nav {
  display: flex;
  align-items: center;
  gap: 32px;
}
.hub-nav-link {
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.06em;
  color: var(--fg-muted);
  text-decoration: none;
  transition: color 0.2s;
}
.hub-nav-link:hover { color: var(--fg); }
.hub-cta {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--bg);
  background: var(--accent);
  padding: 9px 20px;
  border-radius: 3px;
  text-decoration: none;
  transition: background 0.2s, opacity 0.2s;
}
.hub-cta:hover { background: var(--warm); }

/* ---- Hero ---- */
.hub-hero {
  padding: 80px 40px 60px;
  border-bottom: 1px solid rgba(200, 169, 110, 0.08);
}
.hub-hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 180px;
  gap: 60px;
  align-items: center;
}
.hub-label {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 8px;
}
.hub-headline {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(42px, 5.5vw, 72px);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--fg);
  margin-bottom: 20px;
}
.hub-headline em {
  font-style: italic;
  color: var(--accent);
}
.hub-sub {
  font-size: 17px;
  font-weight: 300;
  color: var(--fg-muted);
  max-width: 480px;
  line-height: 1.7;
  margin-bottom: 32px;
}
.hub-hero-actions {
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
}
.btn-primary {
  display: inline-block;
  background: var(--accent);
  color: var(--bg);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.06em;
  padding: 13px 28px;
  border-radius: 3px;
  text-decoration: none;
  transition: background 0.2s;
}
.btn-primary:hover { background: var(--warm); }
.btn-secondary {
  display: inline-block;
  color: var(--accent);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.06em;
  padding: 13px 0;
  text-decoration: none;
  border-bottom: 1px solid rgba(200, 169, 110, 0.3);
  transition: border-color 0.2s, color 0.2s;
}
.btn-secondary:hover { color: var(--warm); border-color: var(--warm); }

/* Badge */
.hub-hero-badge {
  display: flex;
  align-items: center;
  justify-content: center;
}
.badge-ring {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  border: 1.5px solid rgba(200, 169, 110, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
}
.badge-ring::before {
  content: '';
  position: absolute;
  inset: 8px;
  border-radius: 50%;
  border: 1px solid rgba(200, 169, 110, 0.15);
}
.badge-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 16px;
  font-weight: 600;
  color: var(--accent);
  line-height: 1.4;
  position: relative;
  z-index: 1;
}

/* ---- Product Section ---- */
.product-section {
  padding: 100px 40px;
}
.product-section-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.section-heading {
  margin-bottom: 56px;
}
.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(30px, 4vw, 48px);
  font-weight: 600;
  line-height: 1.15;
  color: var(--fg);
  margin-top: 12px;
}
.section-title em {
  font-style: italic;
  color: var(--accent);
}

/* Product Grid */
.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
}
.product-card {
  background: var(--surface);
  border: 1px solid rgba(200, 169, 110, 0.07);
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  transition: border-color 0.2s, transform 0.2s;
  position: relative;
  overflow: hidden;
}
.product-card:hover {
  border-color: rgba(200, 169, 110, 0.25);
  z-index: 2;
}

/* Product Image Areas */
.product-img {
  height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}
.product-img--mug     { background: linear-gradient(135deg, #1a1a1a 0%, #221d18 100%); }
.product-img--canvas  { background: linear-gradient(135deg, #1a1a1a 0%, #1c201e 100%); }
.product-img--print   { background: linear-gradient(135deg, #1a1a1a 0%, #1e1a1f 100%); }
.product-img--pillow  { background: linear-gradient(135deg, #1a1a1a 0%, #201c1a 100%); }
.product-img--tote    { background: linear-gradient(135deg, #1a1a1a 0%, #1c1e18 100%); }
.product-img--giftset { background: linear-gradient(135deg, #1a1a1a 0%, #1e1a18 100%); }
.product-img--poster  { background: linear-gradient(135deg, #1a1a1a 0%, #181c20 100%); }
.product-img--more    {
  background: var(--surface-2);
  border: 1px dashed rgba(200, 169, 110, 0.2);
}
.product-img-art { position: relative; }

/* Mug illustration */
.mug-shape { display: flex; align-items: center; gap: 0; }
.mug-body {
  width: 70px; height: 80px;
  border-radius: 6px 6px 12px 12px;
  background: linear-gradient(160deg, #2a2520 0%, #1c1814 100%);
  border: 1.5px solid rgba(200, 169, 110, 0.3);
  display: flex; align-items: center; justify-content: center;
  position: relative;
}
.mug-design {
  width: 40px; height: 28px;
  background: repeating-linear-gradient(
    -45deg, transparent, transparent 3px,
    rgba(200, 169, 110, 0.15) 3px, rgba(200, 169, 110, 0.15) 4px
  );
  border-radius: 3px;
}
.mug-handle {
  width: 18px; height: 40px;
  border: 1.5px solid rgba(200, 169, 110, 0.3);
  border-left: none;
  border-radius: 0 20px 20px 0;
  margin-left: -1px;
}

/* Canvas illustration */
.canvas-frame {
  width: 90px; height: 110px;
  background: #141414;
  border: 2px solid rgba(200, 169, 110, 0.35);
  border-radius: 2px;
  padding: 8px;
  box-shadow: 4px 4px 12px rgba(0,0,0,0.4);
}
.canvas-mat {
  width: 100%; height: 100%;
  background: linear-gradient(135deg, #1a1a1a, #222);
  display: flex; align-items: center; justify-content: center;
}
.canvas-art-lines { display: flex; flex-direction: column; gap: 8px; align-items: center; }
.art-line {
  height: 1.5px;
  background: rgba(200, 169, 110, 0.5);
  width: 60px; border-radius: 1px;
}
.art-line.short { width: 36px; }
.art-line.medium { width: 48px; }

/* Print illustration */
.print-frame {
  width: 80px; height: 100px;
  background: #f5f0e8;
  border-radius: 2px;
  padding: 10px;
  box-shadow: 3px 3px 10px rgba(0,0,0,0.4);
}
.print-inner {
  width: 100%; height: 100%;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 8px;
}
.print-motif {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(200, 169, 110, 0.4), rgba(200, 169, 110, 0.1));
  border: 1.5px solid rgba(200, 169, 110, 0.5);
}
.print-text-line {
  height: 2px; width: 44px;
  background: rgba(13, 13, 13, 0.3); border-radius: 1px;
}
.print-text-line.short { width: 28px; }

/* Pillow illustration */
.pillow-shape {
  width: 100px; height: 80px;
  background: linear-gradient(135deg, #2a2520 0%, #1c1814 100%);
  border-radius: 12px;
  border: 1.5px solid rgba(200, 169, 110, 0.25);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 3px 4px 16px rgba(0,0,0,0.3);
}
.pillow-design {
  width: 50px; height: 50px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(200, 169, 110, 0.18) 0%, transparent 70%);
  border: 1px solid rgba(200, 169, 110, 0.2);
}

/* Tote illustration */
.tote-body {
  width: 70px; height: 85px;
  background: linear-gradient(170deg, #2a2520 0%, #1c1814 100%);
  border-radius: 2px 2px 8px 8px;
  border: 1.5px solid rgba(200, 169, 110, 0.25);
  position: relative;
  display: flex; align-items: center; justify-content: center;
}
.tote-handles {
  position: absolute;
  top: -18px; left: 50%;
  transform: translateX(-50%);
  width: 40px; height: 20px;
  border: 2px solid rgba(200, 169, 110, 0.35);
  border-bottom: none;
  border-radius: 20px 20px 0 0;
}
.tote-design {
  width: 36px; height: 36px;
  background: repeating-linear-gradient(
    0deg, transparent, transparent 4px,
    rgba(200, 169, 110, 0.12) 4px, rgba(200, 169, 110, 0.12) 5px
  );
  border-radius: 2px;
}

/* Gift box illustration */
.gift-box { position: relative; }
.gift-base {
  width: 70px; height: 50px;
  background: linear-gradient(170deg, #2a2520 0%, #1c1814 100%);
  border: 1.5px solid rgba(200, 169, 110, 0.3);
  border-radius: 2px;
  position: relative;
  overflow: hidden;
}
.gift-lid {
  width: 76px; height: 20px;
  background: linear-gradient(170deg, #2e2820 0%, #201c14 100%);
  border: 1.5px solid rgba(200, 169, 110, 0.35);
  border-radius: 2px;
  margin-left: -3px;
  margin-bottom: 2px;
}
.gift-ribbon-h, .gift-ribbon-v {
  position: absolute; background: rgba(200, 169, 110, 0.5);
}
.gift-ribbon-h { top: 50%; left: 0; right: 0; height: 1.5px; transform: translateY(-50%); }
.gift-ribbon-v { left: 50%; top: 0; bottom: 0; width: 1.5px; transform: translateX(-50%); }
.gift-bow {
  width: 20px; height: 10px;
  position: absolute;
  top: -20px; left: 50%;
  transform: translateX(-50%);
}

/* Poster illustration */
.poster-frame {
  width: 80px; height: 100px;
  background: #161616;
  border: 2px solid rgba(200, 169, 110, 0.3);
  border-radius: 1px;
  padding: 8px;
}
.poster-content { display: flex; flex-direction: column; gap: 8px; align-items: center; height: 100%; justify-content: center; }
.poster-circle {
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1.5px solid rgba(200, 169, 110, 0.4);
  background: radial-gradient(circle at 35% 35%, rgba(200, 169, 110, 0.08) 0%, transparent 70%);
}
.poster-lines { display: flex; flex-direction: column; gap: 5px; align-items: center; }
.p-line { height: 1.5px; background: rgba(200, 169, 110, 0.4); width: 48px; border-radius: 1px; }
.p-line.medium { width: 36px; }
.p-line.short { width: 24px; }

/* More card */
.more-icon {
  font-size: 36px;
  font-weight: 300;
  color: rgba(200, 169, 110, 0.3);
  font-family: 'Cormorant Garamond', serif;
}

/* Product info */
.product-info {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
}
.product-tag {
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 500;
}
.product-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  font-weight: 600;
  color: var(--fg);
  line-height: 1.2;
}
.product-detail {
  font-size: 12px;
  font-weight: 300;
  color: var(--fg-muted);
  line-height: 1.5;
}
.product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 12px;
  border-top: 1px solid rgba(200, 169, 110, 0.06);
}
.product-price {
  font-size: 14px;
  font-weight: 500;
  color: var(--warm);
}
.product-etsy {
  font-size: 11px;
  color: var(--accent);
  letter-spacing: 0.04em;
  opacity: 0.7;
  transition: opacity 0.2s;
}
.product-card:hover .product-etsy { opacity: 1; }
.product-card--more .product-name { color: var(--fg-muted); }

/* ---- Brand Story ---- */
.brand-story {
  padding: 100px 40px;
  background: var(--surface);
  border-top: 1px solid rgba(200, 169, 110, 0.06);
  border-bottom: 1px solid rgba(200, 169, 110, 0.06);
}
.brand-story-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.story-headline {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 600;
  line-height: 1.15;
  color: var(--fg);
  margin-top: 12px;
  margin-bottom: 24px;
}
.story-headline em { font-style: italic; color: var(--accent); }
.story-body {
  font-size: 15px;
  font-weight: 300;
  color: var(--fg-muted);
  line-height: 1.75;
  margin-bottom: 16px;
}
.story-values {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 24px;
}
.value-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.value-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent);
  margin-top: 6px;
  flex-shrink: 0;
}
.value-item strong {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: var(--fg);
  margin-bottom: 2px;
}
.value-item span {
  font-size: 13px;
  font-weight: 300;
  color: var(--fg-muted);
  line-height: 1.5;
}

/* Stats grid */
.story-stat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  margin-bottom: 24px;
}
.story-stat {
  background: var(--surface-2);
  border: 1px solid rgba(200, 169, 110, 0.07);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 36px;
  font-weight: 600;
  color: var(--accent);
  line-height: 1;
}
.stat-label {
  font-size: 12px;
  font-weight: 300;
  color: var(--fg-muted);
  letter-spacing: 0.05em;
}

/* Quote */
.story-quote {
  padding: 24px;
  border-left: 2px solid var(--accent);
  background: var(--surface-2);
  font-family: 'Cormorant Garamond', serif;
  font-size: 16px;
  font-style: italic;
  color: var(--warm);
  line-height: 1.6;
}
.story-quote cite {
  display: block;
  margin-top: 10px;
  font-style: normal;
  font-size: 12px;
  color: var(--fg-muted);
  letter-spacing: 0.06em;
  font-family: 'DM Sans', sans-serif;
}

/* ---- Connect Section ---- */
.connect-section {
  padding: 100px 40px;
  text-align: center;
}
.connect-inner {
  max-width: 700px;
  margin: 0 auto;
}
.connect-headline {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 600;
  color: var(--fg);
  margin: 16px 0 12px;
}
.connect-sub {
  font-size: 16px;
  font-weight: 300;
  color: var(--fg-muted);
  line-height: 1.65;
  margin-bottom: 48px;
}
.social-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}
.social-card {
  background: var(--surface);
  border: 1px solid rgba(200, 169, 110, 0.07);
  padding: 32px 24px;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  transition: border-color 0.2s;
}
.social-card:hover { border-color: rgba(200, 169, 110, 0.25); }
.social-icon {
  width: 48px; height: 48px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 4px;
}
.social-card--etsy .social-icon { background: rgba(242, 90, 36, 0.1); color: #f25a24; }
.social-card--pinterest .social-icon { background: rgba(230, 0, 35, 0.1); color: #e60023; }
.social-card--instagram .social-icon { background: rgba(200, 169, 110, 0.1); color: var(--accent); }
.social-name {
  font-size: 14px;
  font-weight: 500;
  color: var(--fg);
}
.social-handle {
  font-size: 12px;
  font-weight: 300;
  color: var(--fg-muted);
}

/* ---- Email Capture ---- */
.email-capture {
  padding: 80px 40px;
  background: var(--surface);
  border-top: 1px solid rgba(200, 169, 110, 0.06);
}
.email-capture-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.capture-headline {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 12px;
}
.capture-sub {
  font-size: 15px;
  font-weight: 300;
  color: var(--fg-muted);
  line-height: 1.65;
}
.capture-form { display: flex; flex-direction: column; gap: 12px; }
.capture-field { display: flex; gap: 0; }
.capture-input {
  flex: 1;
  background: var(--surface-2);
  border: 1px solid rgba(200, 169, 110, 0.2);
  border-right: none;
  border-radius: 3px 0 0 3px;
  color: var(--fg);
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 300;
  padding: 13px 18px;
  outline: none;
  transition: border-color 0.2s;
}
.capture-input::placeholder { color: var(--fg-muted); }
.capture-input:focus { border-color: rgba(200, 169, 110, 0.45); }
.capture-btn {
  background: var(--accent);
  color: var(--bg);
  border: none;
  border-radius: 0 3px 3px 0;
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.06em;
  padding: 13px 24px;
  cursor: pointer;
  transition: background 0.2s;
  white-space: nowrap;
}
.capture-btn:hover { background: var(--warm); }
.capture-note {
  font-size: 12px;
  color: var(--fg-muted);
  font-weight: 300;
}

/* ---- Footer ---- */
.hub-footer {
  padding: 48px 40px;
  border-top: 1px solid rgba(200, 169, 110, 0.08);
}
.hub-footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
  text-align: center;
}
.footer-tagline {
  font-size: 13px;
  font-weight: 300;
  color: var(--fg-muted);
  margin-top: 4px;
}
.footer-links {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  justify-content: center;
}
.footer-links a {
  font-size: 13px;
  color: var(--fg-muted);
  text-decoration: none;
  letter-spacing: 0.04em;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--accent); }
.footer-legal {
  font-size: 11px;
  color: var(--fg-muted);
  opacity: 0.5;
  letter-spacing: 0.06em;
}

/* ---- Responsive ---- */
@media (max-width: 1024px) {
  .product-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 900px) {
  .hub-header { padding: 16px 24px; }
  .hub-nav { gap: 20px; }
  .hub-nav-link { display: none; }
  .hub-hero { padding: 60px 24px 40px; }
  .hub-hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hub-hero-badge { display: none; }
  .product-section { padding: 60px 24px; }
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .brand-story { padding: 60px 24px; }
  .brand-story-inner { grid-template-columns: 1fr; gap: 40px; }
  .connect-section { padding: 60px 24px; }
  .social-links { grid-template-columns: 1fr; }
  .email-capture { padding: 60px 24px; }
  .email-capture-inner { grid-template-columns: 1fr; gap: 32px; }
}
@media (max-width: 600px) {
  .product-grid { grid-template-columns: 1fr; }
  .story-stat-grid { grid-template-columns: 1fr 1fr; }
  .social-links { grid-template-columns: 1fr 1fr; }
  .capture-field { flex-direction: column; }
  .capture-input { border-right: 1px solid rgba(200, 169, 110, 0.2); border-bottom: none; border-radius: 3px 3px 0 0; }
  .capture-btn { border-radius: 0 0 3px 3px; }
  .footer-links { gap: 16px; }
}
