/* ========================
   SHOP PAGE STYLES
   ======================== */

/* NAV */
.shop-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 48px;
  background: rgba(15, 0, 32, 0.9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  position: sticky;
  top: 0;
  z-index: 100;
}

.nav-logo img {
  height: 32px;
  width: auto;
}

.nav-links {
  display: flex;
  gap: 32px;
}

.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: rgba(240,237,230,0.6);
  text-decoration: none;
  transition: color 0.2s;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--lime);
}

/* SHOP HERO */
.shop-hero {
  padding: 80px 48px 48px;
  text-align: center;
  background: linear-gradient(180deg, var(--bg) 0%, #1A0035 100%);
}

.shop-eyebrow {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--lime);
  margin-bottom: 16px;
}

.shop-title {
  font-family: var(--font-display);
  font-size: clamp(48px, 7vw, 88px);
  font-weight: 900;
  line-height: 1.0;
  color: var(--fg);
  margin-bottom: 16px;
}

.shop-sub {
  font-size: 18px;
  color: rgba(240,237,230,0.6);
  max-width: 400px;
  margin: 0 auto;
}

/* PRODUCT GRID */
.shop-section {
  padding: 64px 48px;
  max-width: 1200px;
  margin: 0 auto;
}

.section-heading {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 8px;
}

.section-sub {
  font-size: 15px;
  color: var(--text-muted);
  margin-bottom: 48px;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}

.product-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s, border-color 0.2s;
}

.product-card:hover {
  transform: translateY(-4px);
  border-color: rgba(200,255,0,0.3);
}

.product-visual {
  background: rgba(255,255,255,0.02);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  padding: 24px;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 220px;
}

.product-jar-svg {
  width: 90px;
  height: 120px;
  filter: drop-shadow(0 8px 24px rgba(0,0,0,0.4));
}

.product-info {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}

.product-tag {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  width: fit-content;
}

.product-tag--blue {
  background: rgba(80,160,255,0.15);
  color: #6ab0ff;
  border: 1px solid rgba(80,160,255,0.3);
}

.product-tag--pink {
  background: rgba(255,45,156,0.15);
  color: var(--pink);
  border: 1px solid rgba(255,45,156,0.3);
}

.product-tag--orange {
  background: rgba(255,140,0,0.15);
  color: #FF8C00;
  border: 1px solid rgba(255,140,0,0.3);
}

.product-name {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--fg);
}

.product-desc {
  font-size: 14px;
  color: rgba(240,237,230,0.65);
  line-height: 1.6;
}

.product-details {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.product-details li {
  font-size: 13px;
  color: var(--text-muted);
  padding-left: 16px;
  position: relative;
}

.product-details li::before {
  content: '·';
  position: absolute;
  left: 0;
  color: var(--lime);
  font-weight: 700;
}

.product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.product-price-row {
  display: flex;
  align-items: baseline;
  gap: 6px;
}

.product-price {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 900;
  color: var(--lime);
}

.product-size {
  font-size: 13px;
  color: var(--text-muted);
}

/* BUNDLE */
.bundle-section {
  padding: 48px 48px 80px;
  background: #1A0035;
}

.bundle-card {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(200,255,0,0.15);
  border-radius: 24px;
  padding: 48px;
}

.bundle-badge {
  display: inline-block;
  padding: 4px 14px;
  background: var(--lime);
  color: #0F0020;
  font-size: 11px;
  font-weight: 700;
  border-radius: 100px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.bundle-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 900;
  color: var(--fg);
  margin-bottom: 12px;
  line-height: 1.15;
}

.bundle-desc {
  font-size: 15px;
  color: rgba(240,237,230,0.65);
  line-height: 1.6;
  margin-bottom: 24px;
}

.bundle-perks {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 32px;
}

.bundle-perks li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: rgba(240,237,230,0.75);
  font-weight: 500;
}

.bundle-pricing {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}

.bundle-price {
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 900;
  color: var(--lime);
}

.bundle-original {
  font-size: 16px;
  color: var(--text-muted);
  text-decoration: line-through;
}

.bundle-save-tag {
  display: inline-block;
  padding: 3px 10px;
  background: rgba(200,255,0,0.1);
  border-radius: 100px;
  font-size: 12px;
  font-weight: 600;
  color: var(--lime);
  margin-left: 8px;
}

.btn-buy-lg {
  padding: 14px 32px;
  font-size: 15px;
}

.bundle-note {
  margin-top: 16px;
  font-size: 13px;
  color: var(--text-muted);
}

.bundle-note a {
  color: var(--lime);
  text-decoration: none;
}

.bundle-note a:hover {
  text-decoration: underline;
}

.bundle-jars {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.bundle-jar-row {
  display: flex;
  gap: 8px;
}

.bundle-jar {
  width: 80px;
  height: 106px;
  filter: drop-shadow(0 8px 24px rgba(0,0,0,0.4));
}

.bundle-jar-label {
  font-size: 12px;
  color: var(--text-muted);
  font-style: italic;
}

/* PACKAGING SECTION */
.packaging-section {
  padding: 80px 48px;
  background: var(--bg);
}

.packaging-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 56px;
}

.packaging-eyebrow {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--lime);
  margin-bottom: 12px;
}

.packaging-title {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 900;
  color: var(--fg);
  margin-bottom: 16px;
}

.packaging-sub {
  font-size: 16px;
  color: rgba(240,237,230,0.65);
  line-height: 1.65;
}

.label-showcase {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 900px;
  margin: 0 auto;
}

.label-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.label-visual {
  background: rgba(255,255,255,0.04);
  border-radius: 16px;
  padding: 24px;
  display: flex;
  justify-content: center;
}

.label-mockup {
  width: 160px;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.4);
}

.label-caption {
  font-size: 13px;
  color: var(--text-muted);
  text-align: center;
  font-style: italic;
}

.packaging-note {
  text-align: center;
  margin-top: 48px;
  font-size: 14px;
  color: var(--text-muted);
}

.packaging-note a {
  color: var(--lime);
  text-decoration: none;
}

.packaging-note a:hover {
  text-decoration: underline;
}

/* LABEL DOWNLOAD */
.labels-download {
  max-width: 700px;
  margin: 48px auto 0;
  padding: 40px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(200,255,0,0.2);
  border-radius: 20px;
  text-align: center;
}

.labels-download-title {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 8px;
}

.labels-download-sub {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 28px;
}

.labels-download-grid {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.label-download-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: transform 0.15s, box-shadow 0.15s;
}

.label-download-btn:hover {
  transform: translateY(-2px);
}

.label-download-btn--blue {
  background: rgba(80,160,255,0.15);
  color: #6ab0ff;
  border: 1px solid rgba(80,160,255,0.35);
}
.label-download-btn--blue:hover {
  box-shadow: 0 4px 16px rgba(80,160,255,0.25);
}

.label-download-btn--pink {
  background: rgba(255,45,156,0.15);
  color: var(--pink);
  border: 1px solid rgba(255,45,156,0.35);
}
.label-download-btn--pink:hover {
  box-shadow: 0 4px 16px rgba(255,45,156,0.25);
}

.label-download-btn--orange {
  background: rgba(255,140,0,0.15);
  color: #FF8C00;
  border: 1px solid rgba(255,140,0,0.35);
}
.label-download-btn--orange:hover {
  box-shadow: 0 4px 16px rgba(255,140,0,0.25);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .shop-nav {
    padding: 16px 24px;
  }

  .shop-hero,
  .shop-section,
  .bundle-section,
  .packaging-section {
    padding-left: 24px;
    padding-right: 24px;
  }

  .bundle-card {
    grid-template-columns: 1fr;
    padding: 32px 24px;
    gap: 32px;
  }

  .bundle-jars {
    order: -1;
  }

  .label-showcase {
    grid-template-columns: 1fr;
    max-width: 300px;
  }

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