/* LeanBloom — editorial “candy lab” v2 */
:root {
  --color-bg: #ede8e2;
  --color-bg-alt: #dff5ee;
  --color-accent: #ff3d5c;
  --color-accent-bright: #ffd166;
  --color-accent-dark: #1a0b12;
  --color-plum: #5c1a4a;
  --color-accent-soft: #7d6b73;
  --color-text: #1a1218;
  --color-text-secondary: #5c5358;
  --color-border: rgba(26, 11, 18, 0.12);
  --color-card-bg: #ffffff;
  --color-footer-bg: #12080e;
  --color-footer-text: #e8e0e4;
  --color-footer-link-hover: #ff8fa3;
  --font-display: 'Syne', system-ui, sans-serif;
  --font-body: 'Outfit', system-ui, sans-serif;
  --shadow-accent: 0 8px 32px rgba(255, 61, 92, 0.35);
  --shadow-accent-lg: 0 24px 60px rgba(26, 11, 18, 0.35);
  --shadow-card: 0 12px 40px rgba(26, 11, 18, 0.08);
}

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

body {
  font-family: var(--font-body);
  line-height: 1.65;
  color: var(--color-text);
  background-color: var(--color-bg);
  position: relative;
  overflow-x: hidden;
}

.page-home,
.page-sub {
  background-image:
    radial-gradient(ellipse 90% 60% at 10% -10%, rgba(255, 61, 92, 0.14), transparent 55%),
    radial-gradient(ellipse 70% 50% at 95% 5%, rgba(72, 209, 204, 0.16), transparent 50%),
    radial-gradient(ellipse 50% 40% at 50% 100%, rgba(255, 209, 102, 0.1), transparent 45%),
    linear-gradient(180deg, #f0ebe5 0%, #e8e2db 100%);
}

h1, h2, .product-title, .section-header h2, .article-content h2,
.hero-content h1, .cta-section h2, .logo span {
  font-family: var(--font-display);
  letter-spacing: -0.02em;
}

/* Background blobs — stronger, softer */
.background-svgs {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
  overflow: hidden;
  opacity: 0.55;
  filter: blur(0.5px);
}

.bg-svg {
  position: absolute;
  opacity: 0.12;
}

.bg-svg-1 {
  top: 5%;
  left: 5%;
  width: 200px;
  height: 200px;
}

.bg-svg-2 {
  top: 15%;
  right: 10%;
  width: 180px;
  height: 180px;
}

.bg-svg-3 {
  top: 40%;
  left: 8%;
  width: 220px;
  height: 220px;
}

.bg-svg-4 {
  top: 60%;
  right: 5%;
  width: 190px;
  height: 190px;
}

.bg-svg-5 {
  top: 25%;
  left: 50%;
  width: 160px;
  height: 160px;
}

.bg-svg-6 {
  top: 70%;
  left: 20%;
  width: 200px;
  height: 200px;
}

.bg-svg-7 {
  top: 10%;
  left: 70%;
  width: 170px;
  height: 170px;
}

.bg-svg-8 {
  top: 50%;
  right: 20%;
  width: 210px;
  height: 210px;
}

main {
  position: relative;
  z-index: 2;
}

article {
  position: relative;
  z-index: 2;
}

.advertorial-mark {
  background: linear-gradient(90deg, var(--color-accent-dark) 0%, #3d1530 50%, var(--color-accent-dark) 100%);
  text-align: center;
  padding: 10px 16px;
  font-size: 11px;
  font-weight: 700;
  color: var(--color-accent-bright);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  position: relative;
  z-index: 10;
  border-bottom: 3px solid var(--color-accent);
}

.header {
  background: rgba(255, 252, 248, 0.88);
  backdrop-filter: blur(16px) saturate(1.2);
  padding: 18px 24px;
  box-shadow: 0 4px 30px rgba(26, 11, 18, 0.06);
  border-bottom: 1px solid var(--color-border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 100;
}

.header--dramatic {
  background: rgba(18, 8, 14, 0.75);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
}

.header--dramatic .logo {
  color: #fff;
}

.header--dramatic .logo-icon {
  background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-plum) 100%);
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.15);
}

.header--dramatic .cart-btn {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.25);
  color: #fff;
  font-weight: 600;
}

.header--dramatic .cart-btn:hover {
  background: var(--color-accent);
  border-color: var(--color-accent);
  color: #fff;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 22px;
  font-weight: 800;
  color: var(--color-accent-dark);
  text-decoration: none;
}

.logo-icon {
  width: 46px;
  height: 46px;
  background: linear-gradient(145deg, var(--color-accent-dark) 0%, var(--color-plum) 100%);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 800;
  font-size: 12px;
  letter-spacing: -0.03em;
  font-family: var(--font-display);
}

.home-btn, .cart-btn {
  padding: 10px 22px;
  background-color: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--color-border);
  border-radius: 999px;
  text-decoration: none;
  color: var(--color-text);
  font-size: 14px;
  font-weight: 600;
  transition: all 0.25s ease;
}

.home-btn:hover, .cart-btn:hover {
  background-color: var(--color-card-bg);
  color: var(--color-accent-dark);
  border-color: rgba(255, 61, 92, 0.4);
  transform: translateY(-1px);
}

.page-shell {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
}

.page-main {
  padding-bottom: 48px;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  background-color: transparent;
  padding: 24px;
  position: relative;
  overflow: visible;
  z-index: 2;
  border-radius: 0;
  box-shadow: none;
  border: none;
}

.legal-page {
  position: relative;
  z-index: 1;
  background: var(--color-card-bg);
  border-radius: 28px;
  padding: 36px 32px;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--color-border);
}

.hero-section {
  background: var(--color-bg-alt);
  padding: 40px 30px;
  border-radius: 12px;
  margin-bottom: 30px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  position: relative;
  overflow: visible;
  border: 1px solid var(--color-border);
}

/* Hero — cinematic split (home) */
.hero-showcase {
  position: relative;
  z-index: 2;
  padding: 40px 0 56px;
  margin-bottom: 8px;
  background:
    radial-gradient(ellipse 90% 70% at 75% 15%, rgba(255, 61, 92, 0.35), transparent 55%),
    linear-gradient(168deg, #0a0508 0%, #1f0d18 28%, #4a1942 62%, #120a0e 100%);
  overflow: hidden;
}

.hero-showcase__noise {
  position: absolute;
  inset: 0;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  pointer-events: none;
}

.hero-showcase__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(28px, 5vw, 56px);
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-eyebrow {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--color-accent-bright);
  margin: 0 0 14px;
}

.hero-showcase .product-title {
  font-size: clamp(2.6rem, 7vw, 4.25rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.02;
  text-shadow: 0 8px 48px rgba(0, 0, 0, 0.45);
}

.hero-showcase .product-subtitle {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.82);
  max-width: 38ch;
  line-height: 1.55;
}

.hero-showcase .stars {
  color: var(--color-accent-bright);
}

.hero-showcase .rating-text {
  color: rgba(255, 255, 255, 0.72);
}

.hero-showcase .price-section {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(14px);
  border-radius: 22px;
}

.hero-showcase .currency {
  color: rgba(255, 255, 255, 0.85);
}

.hero-showcase .price-amount {
  font-size: clamp(2.5rem, 5vw, 3.25rem);
  color: #fff;
}

.hero-showcase .price-period,
.hero-showcase .price-info {
  color: rgba(255, 255, 255, 0.62);
}

.hero-showcase .shipping-info {
  color: #8ef5c0;
}

.hero-showcase .feature-item {
  color: rgba(255, 255, 255, 0.93);
  font-size: 14px;
}

.hero-showcase .feature-icon {
  color: var(--color-accent-bright);
}

.hero-showcase .buy-button {
  background: linear-gradient(135deg, var(--color-accent-bright) 0%, #ff9f1c 100%);
  color: var(--color-accent-dark);
  font-weight: 800;
  box-shadow: 0 16px 48px rgba(255, 209, 102, 0.38);
}

.hero-showcase .buy-button:hover {
  background: #fff;
  color: var(--color-accent-dark);
  transform: translateY(-3px) scale(1.01);
}

.hero-showcase .trust-badge {
  background: rgba(0, 0, 0, 0.28);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.92);
  border-radius: 12px;
}

.hero-showcase .main-product-image {
  transform: rotate(-3deg) scale(1.02);
  background: linear-gradient(160deg, #ffffff 0%, #f2ebe6 100%);
  border: 4px solid rgba(255, 255, 255, 0.95);
  border-radius: 28px;
  box-shadow:
    0 40px 100px rgba(0, 0, 0, 0.5),
    0 0 0 1px rgba(255, 255, 255, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.hero-showcase .main-product-image:hover {
  transform: rotate(-1.5deg) scale(1.03);
  transition: transform 0.4s ease;
}

.hero-showcase .main-product-image .product-badge {
  background: linear-gradient(135deg, var(--color-accent) 0%, #9d1748 100%);
  font-family: var(--font-body);
}

.marketplace-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  padding: 40px 0;
  margin-bottom: 50px;
  border-bottom: 1px solid var(--color-border);
}

.product-gallery {
  position: relative;
}

.main-product-image {
  background: var(--color-card-bg);
  border-radius: 24px;
  padding: 28px;
  box-shadow: var(--shadow-card);
  position: relative;
  border: 1px solid var(--color-border);
  transition: transform 0.35s ease;
}

.main-product-image .product-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: linear-gradient(135deg, var(--color-accent) 0%, #c9184a 100%);
  color: white;
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  box-shadow: var(--shadow-accent);
}

.product-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.product-title {
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 800;
  color: var(--color-text);
  line-height: 1.15;
  margin: 0;
}

.product-subtitle {
  font-size: 18px;
  color: var(--color-text-secondary);
  margin: 0;
}

.product-rating {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 10px 0;
}

.stars {
  color: #f59e0b;
  font-size: 18px;
}

.rating-text {
  color: var(--color-text-secondary);
  font-size: 14px;
}

.price-section {
  background: var(--color-bg);
  padding: 25px;
  border-radius: 12px;
  border: 1px solid var(--color-border);
}

.price-main {
  display: flex;
  align-items: baseline;
  gap: 5px;
  margin-bottom: 10px;
}

.currency {
  font-size: 24px;
  font-weight: 600;
  color: var(--color-text);
}

.price-amount {
  font-size: 48px;
  font-weight: 900;
  color: var(--color-accent-dark);
  line-height: 1;
}

.price-period {
  font-size: 18px;
  color: var(--color-text-secondary);
  font-weight: 500;
}

.price-info {
  font-size: 14px;
  color: var(--color-text-secondary);
  margin-bottom: 8px;
}

.shipping-info {
  font-size: 14px;
  color: var(--color-accent-dark);
  font-weight: 600;
}

.product-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 20px 0;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  color: var(--color-text);
}

.feature-icon {
  color: var(--color-accent);
  font-weight: bold;
  font-size: 18px;
}

.buy-button {
  width: 100%;
  text-align: center;
  padding: 20px 24px;
  font-size: 17px;
  font-weight: 800;
  background: linear-gradient(135deg, var(--color-accent) 0%, #c9184a 100%);
  color: white;
  border: none;
  border-radius: 999px;
  cursor: pointer;
  letter-spacing: 0.04em;
  box-shadow: var(--shadow-accent);
  transition: all 0.3s ease;
  text-decoration: none;
  display: block;
}

.buy-button:hover {
  filter: brightness(1.08);
  transform: translateY(-3px);
  box-shadow: 0 16px 44px rgba(255, 61, 92, 0.45);
}

.trust-badges {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  margin-top: 20px;
}

.trust-badge {
  background: var(--color-card-bg);
  padding: 12px 18px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  font-size: 13px;
  color: var(--color-text);
  font-weight: 500;
  border: 1px solid var(--color-border);
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-content h1 {
  font-size: 36px;
  color: var(--color-accent-dark);
  font-weight: 800;
  margin-bottom: 20px;
  line-height: 1.2;
}

.hero-content .subtitle {
  font-size: 20px;
  color: var(--color-text-secondary);
  margin-bottom: 25px;
  font-weight: 500;
}

.hero-content .price-box {
  background: var(--color-card-bg);
  border-radius: 10px;
  padding: 12px 20px;
  margin: 15px 0;
  display: inline-block;
  border: 1px solid var(--color-border);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.price-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--color-text-secondary);
  font-weight: 600;
  margin-bottom: 3px;
}

.hero-content .price-amount {
  font-size: 28px;
  font-weight: 800;
  color: var(--color-accent-dark);
  line-height: 1;
  margin-bottom: 3px;
}

.price-description {
  font-size: 11px;
  color: var(--color-text-secondary);
  font-weight: 500;
}

.benefits-list {
  list-style: none;
  margin: 25px 0;
}

.benefits-list li {
  padding: 12px 0 12px 35px;
  position: relative;
  font-size: 16px;
  color: var(--color-text);
  font-weight: 500;
}

.benefits-list li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--color-accent);
  font-weight: bold;
  font-size: 22px;
}

.hero-product {
  text-align: center;
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.product-badge {
  background: linear-gradient(135deg, var(--color-accent) 0%, #c73d52 100%);
  color: white;
  padding: 10px 25px;
  border-radius: 50px;
  display: inline-block;
  font-weight: bold;
  font-size: 14px;
  margin-bottom: 20px;
  box-shadow: 0 4px 18px rgba(212, 88, 106, 0.3);
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  z-index: 1;
}

.article-header {
  margin-bottom: 30px;
  position: relative;
  z-index: 1;
}

.article-meta {
  color: #888;
  font-size: 14px;
  margin-bottom: 20px;
}

.hero-image {
  width: 100%;
  max-width: 400px;
  height: auto;
  margin: 0 auto;
  display: block;
  filter: drop-shadow(0 20px 50px rgba(0, 0, 0, 0.25));
  position: relative;
  z-index: 1;
}

.hero-showcase .hero-image {
  filter: drop-shadow(0 24px 60px rgba(0, 0, 0, 0.35));
}

.cta-button {
  background: linear-gradient(135deg, var(--color-accent-bright) 0%, #ffb703 100%);
  color: var(--color-accent-dark);
  border: none;
  padding: 18px 44px;
  border-radius: 999px;
  font-size: 16px;
  font-weight: 800;
  cursor: pointer;
  letter-spacing: 0.04em;
  box-shadow: 0 12px 36px rgba(255, 209, 102, 0.35);
  margin-top: 20px;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
}

.cta-button:hover {
  background: #fff;
  transform: translateY(-3px);
  box-shadow: 0 16px 44px rgba(0, 0, 0, 0.2);
}

.article-content {
  font-size: 17px;
  line-height: 1.8;
  color: var(--color-text);
  position: relative;
  z-index: 1;
}

.article-content p {
  margin-bottom: 20px;
}

.article-content h2 {
  font-size: clamp(1.35rem, 3vw, 1.65rem);
  color: var(--color-plum);
  margin: 35px 0 20px;
  font-weight: 700;
}

.article-content ul {
  margin: 20px 0;
  padding-left: 25px;
}

.article-content li {
  margin-bottom: 12px;
}

.highlight-box {
  background: var(--color-bg-alt);
  border-left: 4px solid var(--color-accent);
  padding: 25px;
  margin: 30px 0;
  border-radius: 8px;
  position: relative;
  z-index: 1;
  clear: both;
  border: 1px solid var(--color-border);
}

.highlight-box h3 {
  color: var(--color-accent-dark);
  font-size: 20px;
  margin-bottom: 15px;
}

.product-showcase {
  background: var(--color-bg-alt);
  padding: 40px;
  border-radius: 12px;
  margin: 40px 0;
  text-align: center;
  position: relative;
  z-index: 1;
  clear: both;
  border: 1px solid var(--color-border);
}

.product-showcase h2 {
  color: var(--color-accent-dark);
  font-size: 28px;
  margin-bottom: 25px;
}

.cta-section {
  background:
    radial-gradient(ellipse 80% 60% at 20% 0%, rgba(255, 61, 92, 0.4), transparent),
    linear-gradient(145deg, #1a0b12 0%, #4a1942 45%, #2d1328 100%);
  padding: 56px 40px;
  border-radius: 28px;
  color: white;
  text-align: center;
  margin: 48px 0;
  box-shadow: var(--shadow-accent-lg);
  position: relative;
  overflow: hidden;
  z-index: 2;
  clear: both;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.cta-section::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
  animation: pulse 3s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 0.5; }
  50% { transform: scale(1.1); opacity: 0.8; }
}

.cta-section h2 {
  font-size: 32px;
  margin-bottom: 15px;
  color: white;
  font-weight: 800;
  position: relative;
  z-index: 1;
}

.cta-section p {
  font-size: 18px;
  margin-bottom: 30px;
  opacity: 0.95;
  position: relative;
  z-index: 1;
}

.cta-section .cta-button {
  position: relative;
  z-index: 2;
}

.order-price-box {
  background: rgba(255, 255, 255, 0.15);
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 12px;
  padding: 20px 30px;
  margin: 25px 0;
  text-align: center;
  backdrop-filter: blur(10px);
  position: relative;
  z-index: 1;
}

.order-price-label {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 600;
  margin-bottom: 8px;
}

.order-price-amount {
  font-size: 42px;
  font-weight: 900;
  color: #f0c4cc;
  line-height: 1;
  margin-bottom: 8px;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.order-price-description {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 500;
}

.order-form {
  position: relative;
  z-index: 1;
}

.form-group {
  margin-bottom: 20px;
  text-align: left;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
  font-size: 15px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  border: 2px solid rgba(255,255,255,0.3);
  border-radius: 10px;
  font-size: 16px;
  background-color: rgba(255,255,255,0.95);
  transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: white;
  background-color: white;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.submit-btn {
  width: 100%;
  padding: 22px;
  background: linear-gradient(135deg, var(--color-accent) 0%, #c73d52 100%);
  color: white;
  border: none;
  border-radius: 999px;
  font-size: 18px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 10px;
  box-shadow: var(--shadow-accent);
}

.submit-btn:hover {
  background: linear-gradient(135deg, #c73d52 0%, var(--color-accent-dark) 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(212, 88, 106, 0.4);
}

.submit-btn:active {
  transform: translateY(0);
}

.disclaimer-box {
  background-color: #fff3cd;
  border: 1px solid #ffc107;
  border-radius: 8px;
  padding: 20px;
  margin: 30px 0;
  font-size: 14px;
  color: #856404;
  position: relative;
  z-index: 1;
  clear: both;
}

.disclaimer-box strong {
  display: block;
  margin-bottom: 10px;
  color: #856404;
}

.ingredient-detail-card {
  background: var(--color-card-bg);
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
  overflow: hidden;
  transition: all 0.3s ease;
  border: 1px solid var(--color-border);
  position: relative;
  z-index: 1;
  height: 100%;
}

.ingredient-detail-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-accent-lg);
  border-color: var(--color-accent);
}

.footer {
  background-color: var(--color-footer-bg);
  color: var(--color-footer-text);
  padding: 56px 30px 32px;
  margin-top: 48px;
  position: relative;
  z-index: 1;
  clear: both;
}

.footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--color-accent), var(--color-accent-bright), #06d6a0);
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-section {
  margin-bottom: 30px;
}

.footer-section h4 {
  color: #fff;
  margin-bottom: 15px;
  font-size: 16px;
}

.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--color-footer-link-hover);
}

.footer-disclosures {
  border-top: 1px solid rgba(255,255,255,0.15);
  padding-top: 30px;
  margin-top: 30px;
  font-size: 12px;
  line-height: 1.6;
}

.footer-disclosures p {
  margin-bottom: 20px;
}

.footer-disclosures strong {
  color: #fff;
  display: block;
  margin-bottom: 8px;
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.15);
  margin-top: 20px;
  font-size: 12px;
  color: rgba(232, 223, 228, 0.75);
}

.ingredients-section {
  margin: 60px 0;
  position: relative;
  z-index: 1;
}

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

.section-header h2 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  color: var(--color-text);
  font-weight: 800;
  margin-bottom: 12px;
  position: relative;
  display: inline-block;
  width: 100%;
}

.section-header h2::after {
  content: "";
  display: block;
  width: 64px;
  height: 5px;
  margin: 16px auto 0;
  border-radius: 4px;
  background: linear-gradient(90deg, var(--color-accent), var(--color-accent-bright));
}

.section-subtitle {
  font-size: 16px;
  color: var(--color-text-secondary);
  margin: 0;
}

.ingredients-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
  margin-top: 40px;
}

.ingredient-card {
  background: var(--color-card-bg);
  border-radius: 22px;
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: all 0.35s ease;
  border: 1px solid var(--color-border);
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
}

.ingredient-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, var(--color-accent), var(--color-accent-bright));
  opacity: 0.9;
}

.ingredient-card:nth-child(1)::before {
  background: linear-gradient(90deg, #ff3d5c, #ff758f);
}

.ingredient-card:nth-child(2)::before {
  background: linear-gradient(90deg, #06d6a0, #48d9cc);
}

.ingredient-card:nth-child(3)::before {
  background: linear-gradient(90deg, #ff9f1c, #ffd166);
}

.ingredient-card:nth-child(4)::before {
  background: linear-gradient(90deg, #9d4edd, #c77dff);
}

.ingredient-card:hover {
  transform: translateY(-8px) rotate(-0.5deg);
  border-color: rgba(255, 61, 92, 0.35);
  box-shadow: 0 20px 50px rgba(26, 11, 18, 0.12);
}

.ingredient-image {
  width: 100%;
  height: 200px;
  overflow: hidden;
  background: var(--color-bg);
}

.ingredient-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.ingredient-card:hover .ingredient-image img {
  transform: scale(1.1);
}

.ingredient-content {
  padding: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.ingredient-content h3 {
  color: var(--color-accent-dark);
  font-size: 18px;
  margin-bottom: 12px;
  font-weight: 700;
}

.ingredient-content p {
  color: var(--color-text-secondary);
  font-size: 14px;
  line-height: 1.6;
  margin: 0;
}

.trust-badges {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  margin: 40px 0;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

.trust-badge {
  background: var(--color-card-bg);
  padding: 20px 30px;
  border-radius: 10px;
  box-shadow: 0 3px 15px rgba(0,0,0,0.06);
  font-weight: 600;
  color: var(--color-accent-dark);
  font-size: 14px;
  text-align: center;
  position: relative;
  z-index: 1;
  border: 1px solid var(--color-border);
}

.legal-page h2 {
  font-size: 22px;
  color: var(--color-accent-dark);
  margin-top: 30px;
  margin-bottom: 15px;
  font-weight: 700;
  clear: both;
}

.legal-page h3 {
  font-size: 18px;
  color: var(--color-accent-dark);
  margin-top: 20px;
  margin-bottom: 10px;
  font-weight: 600;
}

.legal-page ul {
  margin: 15px 0;
  padding-left: 25px;
}

.legal-page li {
  margin-bottom: 8px;
  line-height: 1.6;
}

.legal-page p {
  margin-bottom: 15px;
  line-height: 1.8;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
  align-items: start;
}

/* Product Description Section */
.product-description-section {
  margin: 40px 0 48px;
  padding: 40px 36px;
  background: var(--color-card-bg);
  border-radius: 28px;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-card);
}

.description-content {
  font-size: 16px;
  line-height: 1.8;
  color: var(--color-text);
}

.safety-box, .nutrition-box {
  background: var(--color-card-bg);
  padding: 25px;
  border-radius: 12px;
  margin: 25px 0;
  border: 1px solid var(--color-border);
  border-left: 4px solid var(--color-accent);
}

.safety-box h3, .nutrition-box h3 {
  color: var(--color-accent-dark);
  font-size: 20px;
  margin-bottom: 15px;
  font-weight: 700;
}

.safety-box ul {
  margin: 15px 0;
  padding-left: 25px;
}

.safety-box li {
  margin-bottom: 8px;
  color: var(--color-text-secondary);
}

.warning-text {
  margin-top: 15px;
  padding-top: 15px;
  border-top: 1px solid var(--color-border);
  font-size: 13px;
  color: #b45309;
  font-weight: 500;
}

/* Directions Section */
.directions-section {
  margin: 50px 0;
}

.directions-content {
  background: linear-gradient(145deg, #dff5ee 0%, #f5f0eb 100%);
  padding: 36px 28px;
  border-radius: 24px;
  text-align: center;
  border: 2px dashed rgba(255, 61, 92, 0.35);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.6);
}

.directions-box h3 {
  color: var(--color-accent-dark);
  font-size: 24px;
  margin-bottom: 15px;
  font-weight: 700;
}

.directions-box p {
  font-size: 18px;
  color: var(--color-text);
  margin: 10px 0;
}

.directions-note {
  font-size: 14px;
  color: var(--color-text-secondary);
  font-style: italic;
}

@media (max-width: 968px) {
  .hero-section {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 30px 20px;
  }

  .marketplace-hero,
  .hero-showcase__inner {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .hero-showcase {
    padding-bottom: 48px;
  }

  .hero-showcase .main-product-image {
    transform: rotate(-1deg) scale(1);
    max-width: 400px;
    margin: 0 auto;
  }

  .ingredients-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

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

  .hero-content h1 {
    font-size: 28px;
  }

  .hero-content .subtitle {
    font-size: 18px;
  }

  .hero-image {
    max-width: 300px;
  }

  .container {
    padding: 15px;
  }

  .cta-section {
    padding: 30px 20px;
  }

  .cta-section h2 {
    font-size: 24px;
  }

  .product-showcase {
    padding: 30px 20px;
  }

  .submit-btn,
  .cta-button {
    font-size: 16px;
    padding: 18px;
  }

  .ingredients-section {
    grid-template-columns: 1fr;
  }

  .trust-badges {
    gap: 15px;
    flex-direction: column;
  }

  .trust-badge {
    width: 100%;
    max-width: 300px;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .benefits-list li {
    font-size: 15px;
  }

  .order-price-amount {
    font-size: 36px;
  }

  .product-title {
    font-size: 28px;
  }

  .price-amount {
    font-size: 36px;
  }

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

  /* Reduce SVG size on tablets */
  .bg-svg {
    width: 120px !important;
    height: 120px !important;
    opacity: 0.2;
  }
}

@media (max-width: 480px) {
  .marketplace-hero,
  .hero-showcase {
    padding: 28px 0 40px;
  }

  .product-title {
    font-size: 24px;
  }

  .trust-badges {
    flex-direction: column;
  }

  /* Hide some SVG decorations on mobile */
  .bg-svg {
    width: 100px !important;
    height: 100px !important;
    opacity: 0.15;
  }

  .bg-svg-5,
  .bg-svg-6,
  .bg-svg-7,
  .bg-svg-8 {
    display: none;
  }
}
