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

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #f8f9fa;
  position: relative;
  overflow-x: hidden;
}

/* Background SVG Decorations */
.background-svgs {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
  overflow: hidden;
}

.bg-svg {
  position: absolute;
  opacity: 0.4;
  animation: float 20s ease-in-out infinite;
}

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

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

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

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

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

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

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

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

@keyframes float {
  0%, 100% {
    transform: translateY(0px) rotate(0deg);
  }
  33% {
    transform: translateY(-20px) rotate(5deg);
  }
  66% {
    transform: translateY(10px) rotate(-5deg);
  }
}

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

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

.advertorial-mark {
  background-color: #fff;
  text-align: center;
  padding: 8px 0;
  border-bottom: 1px solid #e0e0e0;
  font-size: 12px;
  color: #666;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  z-index: 10;
}

.header {
  background-color: #fff;
  padding: 15px 20px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  z-index: 10;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 24px;
  font-weight: bold;
  color: #2d8659;
  text-decoration: none;
}

.logo-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #2d8659, #5cb85c);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: bold;
}

.home-btn, .cart-btn {
  padding: 8px 20px;
  background-color: #f0f0f0;
  border: 1px solid #ddd;
  border-radius: 6px;
  text-decoration: none;
  color: #333;
  font-size: 14px;
  transition: all 0.3s ease;
}

.home-btn:hover, .cart-btn:hover {
  background-color: #e0e0e0;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  background-color: #fff;
  padding: 20px;
  position: relative;
  overflow: visible;
  z-index: 2;
}

.hero-section {
  background: linear-gradient(135deg, #e8f5e9 0%, #f1f8e9 100%);
  padding: 40px 30px;
  border-radius: 20px;
  margin-bottom: 30px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  position: relative;
  overflow: visible;
}

/* Marketplace Hero Section */
.marketplace-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  padding: 40px 0;
  margin-bottom: 50px;
  border-bottom: 1px solid #e0e0e0;
}

.product-gallery {
  position: relative;
}

.main-product-image {
  background: #fff;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  position: relative;
}

.main-product-image .product-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: linear-gradient(135deg, #ff6b6b, #ee5a6f);
  color: white;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 2px 10px rgba(255, 107, 107, 0.3);
}

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

.product-title {
  font-size: 36px;
  font-weight: 800;
  color: #1a1a1a;
  line-height: 1.2;
  margin: 0;
}

.product-subtitle {
  font-size: 18px;
  color: #666;
  margin: 0;
}

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

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

.rating-text {
  color: #666;
  font-size: 14px;
}

.price-section {
  background: #f8f9fa;
  padding: 25px;
  border-radius: 12px;
  border: 2px solid #e0e0e0;
}

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

.currency {
  font-size: 24px;
  font-weight: 600;
  color: #333;
}

.price-amount {
  font-size: 48px;
  font-weight: 900;
  color: #2d8659;
  line-height: 1;
}

.price-period {
  font-size: 18px;
  color: #666;
  font-weight: 500;
}

.price-info {
  font-size: 14px;
  color: #666;
  margin-bottom: 8px;
}

.shipping-info {
  font-size: 14px;
  color: #2d8659;
  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: #333;
}

.feature-icon {
  color: #2d8659;
  font-weight: bold;
  font-size: 18px;
}

.buy-button {
  width: 100%;
  text-align: center;
  padding: 20px;
  font-size: 20px;
  font-weight: 900;
  background: linear-gradient(135deg, #2d8659, #5cb85c);
  color: white;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 8px 25px rgba(45, 134, 89, 0.3);
  transition: all 0.3s ease;
  text-decoration: none;
  display: block;
}

.buy-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(45, 134, 89, 0.4);
}

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

.trust-badge {
  background: white;
  padding: 12px 18px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  font-size: 13px;
  color: #333;
  font-weight: 500;
}

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

.hero-content h1 {
  font-size: 36px;
  color: #1b5e20;
  font-weight: 800;
  margin-bottom: 20px;
  line-height: 1.2;
}

.hero-content .subtitle {
  font-size: 20px;
  color: #2d6a2f;
  margin-bottom: 25px;
  font-weight: 500;
}

.hero-content .price-box {
  background: #ffffff;
  border-radius: 10px;
  padding: 12px 20px;
  margin: 15px 0;
  display: inline-block;
  border: 2px solid #e0e0e0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

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

.price-amount {
  font-size: 28px;
  font-weight: 800;
  color: #2d8659;
  line-height: 1;
  margin-bottom: 3px;
}

.price-description {
  font-size: 11px;
  color: #888;
  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: #2d6a2f;
  font-weight: 500;
}

.benefits-list li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #2d8659;
  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, #ff6b6b, #ee5a6f);
  color: white;
  padding: 10px 25px;
  border-radius: 50px;
  display: inline-block;
  font-weight: bold;
  font-size: 14px;
  margin-bottom: 20px;
  box-shadow: 0 4px 15px rgba(255, 107, 107, 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 10px 30px rgba(0,0,0,0.2));
  position: relative;
  z-index: 1;
}

.cta-button {
  background: linear-gradient(135deg, #ffd700, #ffed4e);
  color: #1b5e20;
  border: none;
  padding: 18px 40px;
  border-radius: 50px;
  font-size: 18px;
  font-weight: 900;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 2px;
  box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4);
  margin-top: 20px;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(255, 215, 0, 0.6);
}

.article-content {
  font-size: 17px;
  line-height: 1.8;
  color: #444;
  position: relative;
  z-index: 1;
}

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

.article-content h2 {
  font-size: 24px;
  color: #2d8659;
  margin: 35px 0 20px;
  font-weight: 600;
}

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

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

.highlight-box {
  background: linear-gradient(135deg, #e8f5e9, #f1f8e9);
  border-left: 4px solid #2d8659;
  padding: 25px;
  margin: 30px 0;
  border-radius: 8px;
  position: relative;
  z-index: 1;
  clear: both;
}

.highlight-box h3 {
  color: #2d8659;
  font-size: 20px;
  margin-bottom: 15px;
}

.product-showcase {
  background: linear-gradient(135deg, #f0f9f4, #e8f5e9);
  padding: 40px;
  border-radius: 16px;
  margin: 40px 0;
  text-align: center;
  position: relative;
  z-index: 1;
  clear: both;
}

.product-showcase h2 {
  color: #2d8659;
  font-size: 28px;
  margin-bottom: 25px;
}

.cta-section {
  background: linear-gradient(135deg, #1b5e20, #2d8659, #5cb85c);
  padding: 50px 40px;
  border-radius: 20px;
  color: white;
  text-align: center;
  margin: 40px 0;
  box-shadow: 0 10px 40px rgba(45, 134, 89, 0.3);
  position: relative;
  overflow: hidden;
  z-index: 2;
  clear: both;
}

.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: #ffd700;
  line-height: 1;
  margin-bottom: 8px;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.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, #ffd700, #ffed4e);
  color: #1b5e20;
  border: none;
  border-radius: 50px;
  font-size: 20px;
  font-weight: 900;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-top: 10px;
  box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4);
}

.submit-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(255, 215, 0, 0.6);
}

.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: #ffffff;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  transition: all 0.3s ease;
  border: 2px solid #e8f5e9;
  position: relative;
  z-index: 1;
  height: 100%;
}

.ingredient-detail-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 25px rgba(45, 134, 89, 0.15);
  border-color: #2d8659;
}

.footer {
  background-color: #2c2c2c;
  color: #ccc;
  padding: 50px 30px 30px;
  margin-top: 60px;
  position: relative;
  z-index: 1;
  clear: both;
}

.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: #5cb85c;
}

.footer-disclosures {
  border-top: 1px solid #444;
  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 #444;
  margin-top: 20px;
  font-size: 12px;
  color: #888;
}

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

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

.section-header h2 {
  font-size: 32px;
  color: #1a1a1a;
  font-weight: 800;
  margin-bottom: 10px;
}

.section-subtitle {
  font-size: 16px;
  color: #666;
  margin: 0;
}

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

.ingredient-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border: 2px solid #e8f5e9;
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
}

.ingredient-card:hover {
  transform: translateY(-8px);
  border-color: #2d8659;
  box-shadow: 0 8px 25px rgba(45, 134, 89, 0.15);
}

.ingredient-image {
  width: 100%;
  height: 200px;
  overflow: hidden;
  background: #f8f9fa;
}

.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: #2d8659;
  font-size: 18px;
  margin-bottom: 12px;
  font-weight: 700;
}

.ingredient-content p {
  color: #555;
  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: white;
  padding: 20px 30px;
  border-radius: 10px;
  box-shadow: 0 3px 15px rgba(0,0,0,0.1);
  font-weight: 600;
  color: #2d8659;
  font-size: 14px;
  text-align: center;
  position: relative;
  z-index: 1;
}

.legal-page {
  position: relative;
  z-index: 1;
}

.legal-page h2 {
  font-size: 22px;
  color: #1b5e20;
  margin-top: 30px;
  margin-bottom: 15px;
  font-weight: 700;
  clear: both;
}

.legal-page h3 {
  font-size: 18px;
  color: #2d8659;
  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: 50px 0;
  padding: 40px;
  background: #f8f9fa;
  border-radius: 12px;
}

.description-content {
  font-size: 16px;
  line-height: 1.8;
  color: #444;
}

.safety-box, .nutrition-box {
  background: white;
  padding: 25px;
  border-radius: 12px;
  margin: 25px 0;
  border-left: 4px solid #2d8659;
}

.safety-box h3, .nutrition-box h3 {
  color: #2d8659;
  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: #555;
}

.warning-text {
  margin-top: 15px;
  padding-top: 15px;
  border-top: 1px solid #e0e0e0;
  font-size: 13px;
  color: #856404;
  font-weight: 500;
}

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

.directions-content {
  background: linear-gradient(135deg, #e8f5e9, #f1f8e9);
  padding: 30px;
  border-radius: 12px;
  text-align: center;
}

.directions-box h3 {
  color: #2d8659;
  font-size: 24px;
  margin-bottom: 15px;
  font-weight: 700;
}

.directions-box p {
  font-size: 18px;
  color: #333;
  margin: 10px 0;
}

.directions-note {
  font-size: 14px;
  color: #666;
  font-style: italic;
}

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

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

  .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 {
    padding: 20px 0;
  }

  .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;
  }
}
