/* ==========================================
   PINKPLUG — Custom Theme
   ========================================== */

:root {
  --ivory: #FAF7F4;
  --blush: #E8D5CF;
  --rose: #C9868B;
  --mauve: #7D5A6A;
  --charcoal: #2C2825;
  --warm-gray: #8A7F7A;
  --cream: #F0EBE6;
  --deep-rose: #A85C65;
  --gold: #C9A96E;

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;

  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 2rem;
  --space-lg: 4rem;
  --space-xl: 7rem;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--ivory);
  color: var(--charcoal);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ── Navigation ── */
nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 247, 244, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(201, 134, 139, 0.15);
  padding: 1.2rem 2rem;
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: baseline;
  gap: 1rem;
}

.nav-logo {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--mauve);
  letter-spacing: -0.01em;
}

.nav-tagline {
  font-size: 0.8rem;
  color: var(--warm-gray);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* ── Hero ── */
.hero {
  padding: var(--space-xl) 2rem var(--space-lg);
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
  align-items: center;
  min-height: 85vh;
}

.hero-eyebrow {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--rose);
  margin-bottom: 1.5rem;
  font-weight: 500;
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(3rem, 5vw, 4.5rem);
  font-weight: 300;
  line-height: 1.05;
  color: var(--charcoal);
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}

.hero-headline em {
  font-style: italic;
  color: var(--rose);
}

.hero-body {
  font-size: 1.05rem;
  color: var(--warm-gray);
  max-width: 400px;
  line-height: 1.7;
  margin-bottom: 2.5rem;
}

.hero-price {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
}

.price-from {
  font-size: 0.8rem;
  color: var(--warm-gray);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.price-amount {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 600;
  color: var(--mauve);
}

.price-note {
  font-size: 0.85rem;
  color: var(--warm-gray);
}

/* Hero Visual */
.hero-visual {
  position: relative;
  width: 100%;
  max-width: 460px;
  aspect-ratio: 1;
  margin-left: auto;
}

.glass-cup {
  position: absolute;
  top: 5%;
  left: 15%;
  width: 45%;
  aspect-ratio: 0.65;
}

.cup-body {
  width: 100%;
  height: 85%;
  background: linear-gradient(135deg, rgba(255,255,255,0.9) 0%, rgba(200,210,220,0.4) 50%, rgba(180,200,215,0.6) 100%);
  border-radius: 8px 8px 12px 12px;
  border: 1px solid rgba(255,255,255,0.8);
  box-shadow:
    inset -8px 0 20px rgba(255,255,255,0.6),
    inset 4px 0 10px rgba(200,220,240,0.3),
    0 8px 32px rgba(125,90,106,0.15);
  position: relative;
  overflow: hidden;
}

.cup-body::after {
  content: '';
  position: absolute;
  top: 8%;
  left: 10%;
  width: 30%;
  height: 60%;
  background: linear-gradient(180deg, rgba(255,255,255,0.7) 0%, transparent 100%);
  border-radius: 4px;
}

.cup-straw {
  position: absolute;
  top: -15%;
  left: 55%;
  width: 10%;
  height: 40%;
  background: linear-gradient(180deg, var(--rose) 0%, var(--deep-rose) 100%);
  border-radius: 3px 3px 2px 2px;
  transform: rotate(8deg);
  box-shadow: 0 2px 6px rgba(0,0,0,0.15);
}

.cup-lid {
  position: absolute;
  top: 0;
  left: 20%;
  width: 60%;
  height: 12%;
  background: linear-gradient(135deg, #C4A882 0%, #A08060 100%);
  border-radius: 4px 4px 2px 2px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

.beauty-items {
  position: absolute;
  bottom: 15%;
  right: 5%;
  display: flex;
  gap: 0.8rem;
  align-items: flex-end;
}

.item {
  border-radius: 50%;
  box-shadow: 0 4px 12px rgba(0,0,0,0.12);
}

.item-1 {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--rose) 0%, var(--deep-rose) 100%);
}

.item-2 {
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, var(--gold) 0%, #B08A50 100%);
}

.item-3 {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--blush) 0%, var(--rose) 100%);
}

.gift-box {
  position: absolute;
  bottom: 5%;
  left: 5%;
  width: 50%;
  aspect-ratio: 1.2;
  background: linear-gradient(160deg, var(--cream) 0%, var(--blush) 100%);
  border-radius: 6px;
  box-shadow: 0 12px 40px rgba(125,90,106,0.2);
  overflow: hidden;
}

.box-ribbon {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--mauve) 0%, var(--rose) 100%);
}

.box-ribbon::before {
  content: '';
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  width: 20px;
  height: 20px;
  background: var(--rose);
  border-radius: 2px;
  transform: translateX(-50%) rotate(45deg);
}

.hero-badge {
  position: absolute;
  bottom: -1rem;
  right: 0;
  background: var(--mauve);
  color: white;
  padding: 0.6rem 1rem;
  border-radius: 100px;
  font-size: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-weight: 500;
  box-shadow: 0 4px 16px rgba(125,90,106,0.3);
}

/* ── Philosophy ── */
.philosophy {
  background: var(--cream);
  padding: var(--space-xl) 2rem;
}

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

.philosophy-label {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--rose);
  margin-bottom: 1rem;
  font-weight: 500;
}

.philosophy-headline {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 400;
  color: var(--charcoal);
  margin-bottom: var(--space-lg);
  max-width: 600px;
  line-height: 1.25;
}

.philosophy-columns {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
}

.philosophy-col {
  padding: 2rem;
  background: var(--ivory);
  border-radius: 12px;
  border: 1px solid rgba(201, 134, 139, 0.12);
}

.col-num {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 300;
  color: var(--blush);
  margin-bottom: 1rem;
  line-height: 1;
}

.philosophy-col h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--mauve);
  margin-bottom: 0.75rem;
}

.philosophy-col p {
  font-size: 0.9rem;
  color: var(--warm-gray);
  line-height: 1.7;
}

/* ── Bundles ── */
.bundles {
  padding: var(--space-xl) 2rem;
  background: var(--ivory);
}

.bundles-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.section-eyebrow {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--rose);
  margin-bottom: 1rem;
  font-weight: 500;
}

.bundles-headline {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3vw, 3rem);
  font-weight: 400;
  color: var(--charcoal);
  margin-bottom: var(--space-lg);
}

.bundle-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
}

.bundle-card {
  background: var(--cream);
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(201, 134, 139, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.bundle-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(125,90,106,0.12);
}

.bundle-visual {
  height: 200px;
  position: relative;
  overflow: hidden;
}

.b1 { background: linear-gradient(160deg, var(--blush) 0%, var(--rose) 100%); }
.b2 { background: linear-gradient(160deg, #E8D5CF 0%, var(--mauve) 100%); }
.b3 { background: linear-gradient(160deg, var(--cream) 0%, var(--blush) 100%); }

.b-cup, .b-items, .b-gift {
  position: absolute;
  border-radius: 6px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}

.b-cup {
  width: 60px;
  height: 80px;
  background: rgba(255,255,255,0.5);
  border: 1px solid rgba(255,255,255,0.6);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.b-items {
  width: 120px;
  height: 80px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(255,255,255,0.4);
  border-radius: 40px;
  border: 1px solid rgba(255,255,255,0.5);
}

.b-gift {
  width: 80px;
  height: 60px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: linear-gradient(135deg, rgba(255,255,255,0.6) 0%, rgba(201,134,139,0.4) 100%);
}

.bundle-card h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--mauve);
  padding: 1.5rem 1.5rem 0.5rem;
}

.bundle-desc {
  font-size: 0.85rem;
  color: var(--warm-gray);
  padding: 0 1.5rem 1rem;
  line-height: 1.6;
}

.bundle-price {
  padding: 1rem 1.5rem 1.5rem;
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--deep-rose);
}

.bundles-note {
  margin-top: var(--space-md);
  font-size: 0.85rem;
  color: var(--warm-gray);
  text-align: center;
}

/* ── Occasion ── */
.occasion {
  padding: var(--space-xl) 2rem;
  background: var(--cream);
}

.occasion-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
  align-items: center;
}

.occasion-headline {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 400;
  color: var(--charcoal);
  margin-bottom: 1.5rem;
  line-height: 1.25;
}

.occasion-headline em {
  font-style: italic;
  color: var(--rose);
}

.occasion-body {
  font-size: 0.95rem;
  color: var(--warm-gray);
  line-height: 1.75;
  margin-bottom: 2rem;
}

.occasion-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.occasion-tags span {
  padding: 0.5rem 1rem;
  background: var(--ivory);
  border: 1px solid rgba(201, 134, 139, 0.2);
  border-radius: 100px;
  font-size: 0.8rem;
  color: var(--mauve);
  font-weight: 500;
}

.tag-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  justify-content: center;
  align-items: center;
  padding: 2rem;
}

.cloud-item {
  padding: 0.8rem 1.4rem;
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 500;
  transition: transform 0.2s ease;
}

.cloud-item:hover { transform: scale(1.05); }

.c1 { background: var(--blush); color: var(--mauve); }
.c2 { background: var(--rose); color: white; }
.c3 { background: var(--mauve); color: white; }
.c4 { background: var(--cream); color: var(--mauve); border: 1px solid rgba(201,134,139,0.2); }
.c5 { background: var(--gold); color: var(--charcoal); }
.c6 { background: var(--deep-rose); color: white; }
.c7 { background: var(--ivory); color: var(--warm-gray); border: 1px solid rgba(201,134,139,0.15); }
.c8 { background: linear-gradient(135deg, var(--blush), var(--rose)); color: white; }

/* ── Closing ── */
.closing {
  padding: var(--space-xl) 2rem;
  background: var(--mauve);
  color: white;
}

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

.closing-headline {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 300;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.closing-body {
  font-size: 1rem;
  opacity: 0.85;
  line-height: 1.75;
  margin-bottom: 3rem;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

.closing-values {
  display: flex;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
}

.value {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.85rem;
  opacity: 0.9;
}

.value svg { opacity: 0.7; flex-shrink: 0; }

/* ── Footer ── */
footer {
  background: var(--charcoal);
  color: rgba(255,255,255,0.7);
  padding: var(--space-lg) 2rem var(--space-sm);
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 2fr;
  gap: var(--space-lg);
  margin-bottom: var(--space-lg);
}

.footer-logo {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 600;
  color: white;
  margin-bottom: 0.75rem;
}

.footer-tagline {
  font-size: 0.9rem;
  line-height: 1.6;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
}

.footer-col-title {
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--rose);
  margin-bottom: 1rem;
  font-weight: 500;
}

.footer-col a {
  display: block;
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  font-size: 0.85rem;
  margin-bottom: 0.5rem;
  transition: color 0.2s;
}

.footer-col a:hover { color: white; }

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: var(--space-sm);
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex;
  justify-content: space-between;
  font-size: 0.75rem;
  opacity: 0.5;
}

/* ── Responsive ── */
@media (max-width: 768px) {
  .hero {
    grid-template-columns: 1fr;
    padding: var(--space-lg) 1.5rem var(--space-md);
    min-height: auto;
  }

  .hero-visual { max-width: 300px; margin: 0 auto; }

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

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

  .occasion-inner {
    grid-template-columns: 1fr;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: var(--space-md);
  }

  .footer-links {
    grid-template-columns: repeat(2, 1fr);
  }

  .closing-values {
    gap: 1.5rem;
    flex-direction: column;
    align-items: center;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 0.5rem;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .hero-headline { font-size: 2.5rem; }
  .price-amount { font-size: 2.5rem; }
  .footer-links { grid-template-columns: 1fr; }
}