/* ============================================
   VITAL EDGE NATURALS - HTML VERSION
   Modern Botanical Elegance Design
   ============================================ */

/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700;800&family=Lato:wght@300;400;500;700&display=swap');

/* ============================================
   ROOT & VARIABLES
   ============================================ */
:root {
  --brand-green: #1B4D3E;
  --brand-gold: #C9A961;
  --brand-cream: #F9F7F4;
  --brand-dark: #2C3E50;
  --brand-light: #FAFAF8;
  --text-dark: #2C3E50;
  --text-light: #F9F7F4;
  --border-color: #E5E5E5;
  --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.15);
}

/* ============================================
   GLOBAL STYLES
   ============================================ */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Lato', sans-serif;
  color: var(--text-dark);
  background-color: #FFFFFF;
  line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  line-height: 1.2;
}

h1 {
  font-size: 3.5rem;
  margin-bottom: 1rem;
}

h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

h3 {
  font-size: 1.75rem;
  margin-bottom: 1rem;
}

p {
  margin-bottom: 1rem;
  line-height: 1.8;
}

a {
  color: var(--brand-green);
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: var(--brand-gold);
}

/* ============================================
   CONTAINER & LAYOUT
   ============================================ */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}

@media (min-width: 640px) {
  .container {
    padding: 0 1.5rem;
  }
}

@media (min-width: 1024px) {
  .container {
    padding: 0 2rem;
  }
}

.section-padding {
  padding: 4rem 0;
}

@media (min-width: 768px) {
  .section-padding {
    padding: 6rem 0;
  }
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  font-weight: 600;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  font-size: 1rem;
}

.btn-primary {
  background-color: var(--brand-green);
  color: white;
}

.btn-primary:hover {
  background-color: #0F3028;
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-secondary {
  background-color: transparent;
  color: var(--brand-green);
  border: 2px solid var(--brand-green);
}

.btn-secondary:hover {
  background-color: var(--brand-green);
  color: white;
}

.btn-gold {
  background-color: var(--brand-gold);
  color: white;
}

.btn-gold:hover {
  background-color: #B89850;
  transform: translateY(-2px);
}

/* ============================================
   HEADER & NAVIGATION
   ============================================ */
header {
  position: sticky;
  top: 0;
  z-index: 50;
  background-color: white;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 5rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  text-decoration: none;
  color: var(--brand-green);
}

.logo-icon {
  width: 2.5rem;
  height: 2.5rem;
  background-color: var(--brand-green);
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
}

.logo-text {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--brand-green);
  display: none;
}

@media (min-width: 640px) {
  .logo-text {
    display: inline;
  }
}

nav {
  display: none;
  gap: 2rem;
}

@media (min-width: 768px) {
  nav {
    display: flex;
  }
}

nav a {
  color: #4B5563;
  font-weight: 500;
  position: relative;
  padding-bottom: 0.25rem;
}

nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 0.25rem;
  background-color: var(--brand-gold);
  transition: width 0.3s ease;
}

nav a:hover::after {
  width: 100%;
}

.nav-cta {
  display: none;
}

@media (min-width: 768px) {
  .nav-cta {
    display: block;
  }
}

.mobile-menu-btn {
  display: block;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1.5rem;
  color: var(--brand-green);
}

@media (min-width: 768px) {
  .mobile-menu-btn {
    display: none;
  }
}

.mobile-menu {
  display: none;
  padding-bottom: 1rem;
  border-top: 1px solid var(--border-color);
}

.mobile-menu.active {
  display: block;
}

.mobile-menu a {
  display: block;
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  margin-bottom: 0.5rem;
  color: #4B5563;
}

.mobile-menu a:hover {
  background-color: #F5F5F5;
  color: var(--brand-green);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  position: relative;
  overflow: hidden;
  background-color: #FAFAF8;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .hero-content {
    grid-template-columns: 1fr 1fr;
  }
}

.hero-text h1 {
  color: var(--brand-green);
  margin-bottom: 1.5rem;
}

.hero-text p {
  font-size: 1.125rem;
  color: #4B5563;
  margin-bottom: 2rem;
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

@media (min-width: 640px) {
  .hero-buttons {
    flex-direction: row;
  }
}

.gold-line {
  height: 0.25rem;
  width: 3rem;
  background-color: var(--brand-gold);
  border-radius: 9999px;
  margin-bottom: 1rem;
}

.hero-image {
  position: relative;
  height: 24rem;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

@media (min-width: 768px) {
  .hero-image {
    height: 31rem;
  }
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ============================================
   TRUST BADGES
   ============================================ */
.trust-section {
  background-color: var(--brand-cream);
  padding: 3rem 0;
}

.trust-badges {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .trust-badges {
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
  }
}

.badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.75rem;
}

.badge-icon {
  font-size: 1.75rem;
  color: var(--brand-gold);
}

.badge p {
  font-size: 0.875rem;
  font-weight: 500;
  color: #2C3E50;
  margin: 0;
}

/* ============================================
   PRODUCTS GRID
   ============================================ */
.products-section {
  background-color: white;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-header h2 {
  color: var(--brand-green);
}

.section-header p {
  font-size: 1.125rem;
  color: #4B5563;
  max-width: 32rem;
  margin: 1rem auto 0;
}

.products-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .products-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.product-card {
  background-color: white;
  border-radius: 0.5rem;
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  cursor: pointer;
}

.product-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.product-image {
  width: 100%;
  height: 16rem;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.product-card:hover .product-image {
  transform: scale(1.05);
}

.product-info {
  padding: 1.5rem;
}

.product-info h3 {
  font-size: 1.25rem;
  color: var(--brand-green);
  margin-bottom: 0.5rem;
}

.product-subtitle {
  color: var(--brand-gold);
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.product-description {
  color: #666;
  font-size: 0.875rem;
  margin-bottom: 1rem;
}

.product-link {
  color: var(--brand-green);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: gap 0.3s ease;
}

.product-link:hover {
  gap: 0.75rem;
}

/* ============================================
   BRAND PHILOSOPHY SECTION
   ============================================ */
.philosophy-section {
  background-color: var(--brand-green);
  color: white;
}

.philosophy-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .philosophy-content {
    grid-template-columns: 1fr 1fr;
  }
}

.philosophy-image {
  position: relative;
  height: 24rem;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

@media (min-width: 768px) {
  .philosophy-image {
    height: 28rem;
  }
}

.philosophy-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.philosophy-text h2 {
  color: white;
}

.philosophy-text p {
  color: #E5E5E5;
  font-size: 1.125rem;
}

.values-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 2rem;
}

.value-item {
  display: flex;
  gap: 1rem;
}

.value-icon {
  width: 1.5rem;
  height: 1.5rem;
  color: var(--brand-gold);
  flex-shrink: 0;
  margin-top: 0.25rem;
}

.value-content h3 {
  font-size: 1rem;
  color: white;
  margin-bottom: 0.25rem;
}

.value-content p {
  font-size: 0.875rem;
  color: #D0D0D0;
  margin: 0;
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials-section {
  background-color: var(--brand-cream);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .testimonials-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.testimonial-card {
  background-color: white;
  border-radius: 0.5rem;
  padding: 2rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  transition: box-shadow 0.3s ease;
}

.testimonial-card:hover {
  box-shadow: var(--shadow-lg);
}

.stars {
  color: var(--brand-gold);
  margin-bottom: 1rem;
  font-size: 1.125rem;
}

.testimonial-text {
  color: #4B5563;
  font-style: italic;
  margin-bottom: 1rem;
}

.testimonial-author {
  color: var(--brand-green);
  font-weight: 600;
}

/* ============================================
   EMAIL SUBSCRIPTION
   ============================================ */
.newsletter-section {
  background-color: var(--brand-green);
  color: white;
  text-align: center;
}

.newsletter-content {
  max-width: 32rem;
  margin: 0 auto;
}

.newsletter-content h2 {
  color: white;
}

.newsletter-content p {
  color: #D0D0D0;
  font-size: 1.125rem;
}

.newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 2rem;
}

@media (min-width: 640px) {
  .newsletter-form {
    flex-direction: row;
  }
}

.newsletter-form input {
  flex: 1;
  padding: 0.75rem 1rem;
  border: none;
  border-radius: 0.5rem;
  font-size: 1rem;
}

.newsletter-form input:focus {
  outline: none;
  ring: 2px solid var(--brand-gold);
}

.newsletter-form button {
  white-space: nowrap;
}

.newsletter-privacy {
  font-size: 0.875rem;
  color: #D0D0D0;
  margin-top: 1rem;
}

/* ============================================
   FOOTER
   ============================================ */
footer {
  background-color: var(--brand-green);
  color: white;
}

.footer-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  padding: 4rem 0 2rem;
}

@media (min-width: 768px) {
  .footer-content {
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
  }
}

.footer-section h4 {
  font-size: 1.125rem;
  margin-bottom: 1rem;
  color: white;
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 0.75rem;
}

.footer-section a {
  color: #D0D0D0;
  transition: color 0.3s ease;
}

.footer-section a:hover {
  color: var(--brand-gold);
}

.footer-brand p {
  color: #D0D0D0;
  font-size: 0.875rem;
  margin-bottom: 1rem;
}

.footer-brand .tagline {
  color: var(--brand-gold);
  font-weight: 600;
  margin-top: 0.75rem;
}

.footer-contact {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.footer-contact-icon {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--brand-gold);
  flex-shrink: 0;
  margin-top: 0.125rem;
}

.footer-contact a {
  color: #D0D0D0;
  font-size: 0.875rem;
}

.footer-divider {
  border-top: 1px solid #2D5A4D;
  padding-top: 2rem;
  margin-top: 2rem;
}

.footer-social {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.footer-social a {
  color: #D0D0D0;
  transition: color 0.3s ease;
}

.footer-social a:hover {
  color: var(--brand-gold);
}

.footer-bottom {
  border-top: 1px solid #2D5A4D;
  padding-top: 2rem;
  text-align: center;
  color: #999;
  font-size: 0.875rem;
}

.footer-bottom-links {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 1rem;
  flex-wrap: wrap;
}

.footer-bottom-links button {
  background: none;
  border: none;
  color: #999;
  cursor: pointer;
  transition: color 0.3s ease;
}

.footer-bottom-links button:hover {
  color: var(--brand-gold);
}

/* ============================================
   PAGE HEADER (About, Shop, etc.)
   ============================================ */
.page-header {
  background-color: var(--brand-green);
  color: white;
  padding: 4rem 0;
}

.page-header h1 {
  color: white;
  margin-bottom: 1rem;
}

.page-header p {
  color: #D0D0D0;
  font-size: 1.125rem;
  max-width: 32rem;
}

/* ============================================
   ABOUT PAGE STYLES
   ============================================ */
.about-section {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .about-section {
    grid-template-columns: 1fr 1fr;
  }
}

.about-image {
  position: relative;
  height: 24rem;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

@media (min-width: 768px) {
  .about-image {
    height: 28rem;
  }
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.values-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.value-card {
  background-color: white;
  border-radius: 0.5rem;
  padding: 2rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  transition: box-shadow 0.3s ease;
}

.value-card:hover {
  box-shadow: var(--shadow-lg);
}

.value-card h3 {
  color: var(--brand-green);
  margin-bottom: 0.75rem;
}

.value-card p {
  color: #4B5563;
  font-size: 0.875rem;
  margin: 0;
}

/* ============================================
   CONTACT PAGE STYLES
   ============================================ */
.contact-info-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 4rem;
}

@media (min-width: 768px) {
  .contact-info-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .contact-info-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.contact-card {
  background-color: var(--brand-cream);
  border-radius: 0.5rem;
  padding: 2rem;
  text-align: center;
}

.contact-card-icon {
  font-size: 1.75rem;
  color: var(--brand-gold);
  margin-bottom: 1rem;
}

.contact-card h3 {
  color: var(--brand-green);
  margin-bottom: 0.5rem;
}

.contact-card p {
  color: #4B5563;
  margin: 0;
}

.contact-form-section {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

@media (min-width: 1024px) {
  .contact-form-section {
    grid-template-columns: 1fr 1fr;
  }
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  font-weight: 600;
  color: var(--brand-green);
  margin-bottom: 0.5rem;
  font-size: 0.875rem;
}

.form-group input,
.form-group textarea,
.form-group select {
  padding: 0.75rem 1rem;
  border: 1px solid var(--border-color);
  border-radius: 0.5rem;
  font-family: 'Lato', sans-serif;
  font-size: 1rem;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--brand-green);
  box-shadow: 0 0 0 3px rgba(27, 77, 62, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 150px;
}

.form-success {
  background-color: #F0FDF4;
  border: 1px solid #86EFAC;
  color: #166534;
  padding: 1rem;
  border-radius: 0.5rem;
  margin-top: 1rem;
}

.faq-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

@media (min-width: 768px) {
  .faq-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.faq-item {
  background-color: white;
  border-radius: 0.5rem;
  padding: 1.5rem;
  cursor: pointer;
  border: 1px solid var(--border-color);
  transition: all 0.3s ease;
}

.faq-item:hover {
  box-shadow: var(--shadow);
}

.faq-question {
  font-weight: 600;
  color: var(--brand-green);
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0;
}

.faq-toggle {
  color: var(--brand-gold);
  transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle {
  transform: rotate(180deg);
}

.faq-answer {
  display: none;
  margin-top: 1rem;
  color: #4B5563;
  font-size: 0.875rem;
}

.faq-item.active .faq-answer {
  display: block;
}

/* ============================================
   BLOG PAGE STYLES
   ============================================ */
.blog-featured {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
  margin-bottom: 4rem;
}

@media (min-width: 1024px) {
  .blog-featured {
    grid-template-columns: 1fr 1fr;
  }
}

.blog-featured-image {
  position: relative;
  height: 24rem;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

@media (min-width: 768px) {
  .blog-featured-image {
    height: 28rem;
  }
}

.blog-featured-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.featured-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background-color: var(--brand-gold);
  color: var(--brand-green);
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 600;
}

.blog-featured-content h2 {
  color: var(--brand-green);
}

.blog-meta {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  color: #666;
  font-size: 0.875rem;
  margin: 1rem 0;
}

.blog-posts-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .blog-posts-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .blog-posts-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.blog-card {
  background-color: white;
  border-radius: 0.5rem;
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.blog-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.blog-card-image {
  position: relative;
  height: 12rem;
  overflow: hidden;
}

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

.blog-card:hover .blog-card-image img {
  transform: scale(1.05);
}

.category-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background-color: var(--brand-gold);
  color: var(--brand-green);
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 600;
}

.blog-card-content {
  padding: 1.5rem;
}

.blog-card-content h3 {
  font-size: 1.25rem;
  color: var(--brand-green);
  margin-bottom: 0.75rem;
}

.blog-card-excerpt {
  color: #666;
  font-size: 0.875rem;
  margin-bottom: 1rem;
}

.blog-card-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: #999;
  font-size: 0.75rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border-color);
}

.category-filter {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  margin: 2rem 0;
}

.category-btn {
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  border: none;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s ease;
  background-color: white;
  color: var(--brand-green);
  border: 2px solid var(--brand-green);
}

.category-btn.active {
  background-color: var(--brand-green);
  color: white;
}

.category-btn:hover {
  background-color: var(--brand-green);
  color: white;
}

/* ============================================
   SHOP PAGE STYLES
   ============================================ */
.shop-features {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .shop-features {
    grid-template-columns: repeat(3, 1fr);
  }
}

.feature-card {
  background-color: var(--brand-cream);
  border-radius: 0.5rem;
  padding: 2rem;
  text-align: center;
}

.feature-icon {
  font-size: 2.5rem;
  color: var(--brand-gold);
  margin-bottom: 1rem;
}

.feature-card h3 {
  color: var(--brand-green);
  margin-bottom: 0.75rem;
}

.feature-card p {
  color: #4B5563;
  font-size: 0.875rem;
  margin: 0;
}

/* ============================================
   PRODUCT DETAIL PAGE
   ============================================ */
.breadcrumb {
  padding: 1rem 0;
  font-size: 0.875rem;
  color: #666;
}

.breadcrumb a {
  color: var(--brand-green);
}

.product-hero {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

@media (min-width: 1024px) {
  .product-hero {
    grid-template-columns: 1fr 1fr;
  }
}

.product-hero-image {
  position: relative;
  height: 24rem;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

@media (min-width: 768px) {
  .product-hero-image {
    height: 31rem;
  }
}

.product-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-details {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.product-header h1 {
  color: var(--brand-green);
  margin-bottom: 0.5rem;
}

.product-subtitle {
  color: var(--brand-gold);
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.product-rating {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.stars {
  color: var(--brand-gold);
}

.product-price {
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--brand-green);
}

.product-actions {
  display: flex;
  gap: 1rem;
}

@media (min-width: 640px) {
  .product-actions {
    flex-direction: row;
  }
}

.product-actions button {
  flex: 1;
}

.product-trust {
  background-color: var(--brand-cream);
  padding: 1rem;
  border-radius: 0.5rem;
  font-size: 0.875rem;
  text-align: center;
  color: #4B5563;
}

.benefits-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.benefit-icon {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--brand-gold);
  flex-shrink: 0;
  margin-top: 0.25rem;
}

.benefit-text {
  color: #4B5563;
}

.product-details-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

@media (min-width: 1024px) {
  .product-details-grid {
    grid-template-columns: 2fr 1fr;
  }
}

.details-section h3 {
  color: var(--brand-green);
  margin-bottom: 1rem;
}

.details-box {
  background-color: white;
  border-left: 4px solid var(--brand-gold);
  padding: 1.5rem;
  border-radius: 0.5rem;
  margin-bottom: 2rem;
}

.details-box p {
  margin: 0;
  color: #4B5563;
}

.ingredients-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

@media (min-width: 768px) {
  .ingredients-list {
    grid-template-columns: repeat(3, 1fr);
  }
}

.ingredient-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #4B5563;
  font-size: 0.875rem;
}

.ingredient-icon {
  color: var(--brand-gold);
}

.product-details-sidebar {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.details-card {
  background-color: white;
  border-radius: 0.5rem;
  padding: 1.5rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.details-card h3 {
  font-size: 1rem;
  color: var(--brand-green);
  margin-bottom: 1rem;
}

.detail-row {
  display: flex;
  justify-content: space-between;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--border-color);
  color: #4B5563;
  font-size: 0.875rem;
}

.detail-row:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.guarantee-card {
  background-color: var(--brand-green);
  color: white;
  border-radius: 0.5rem;
  padding: 1.5rem;
}

.guarantee-card h4 {
  margin-bottom: 0.75rem;
}

.guarantee-card p {
  font-size: 0.875rem;
  color: #D0D0D0;
  margin: 0;
}

/* ============================================
   RESPONSIVE UTILITIES
   ============================================ */
@media (max-width: 767px) {
  h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 1.75rem;
  }

  h3 {
    font-size: 1.25rem;
  }
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in-up {
  animation: fadeInUp 0.6s ease-out;
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.slide-in-left {
  animation: slideInLeft 0.6s ease-out;
}
