/* ===========================
   GLOBAL STYLES & VARIABLES
   =========================== */

:root {
    --primary-green: #a4ff00;
    --dark-bg: #0f0f0f;
    --light-gray: #f5f5f5;
    --dark-gray: #1a1a1a;
    --text-dark: #1a1a1a;
    --text-light: #ffffff;
    --text-muted: #666666;
    --border-light: #e0e0e0;
    --accent-green: #8fcc00;
    --shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    --shadow-dark: 0 8px 24px rgba(0, 0, 0, 0.2);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    background-color: #ffffff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}


/* ===========================
   HERO SECTION
   =========================== */

.hero-section {
    background: linear-gradient(135deg, #f9f9f9 0%, #f0f0f0 100%);
    padding: 80px 0;
    min-height: 600px;
    display: flex;
    align-items: center;
}

.hero-section .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.tagline {
    color: var(--primary-green);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.hero-content h1 {
    font-size: 56px;
    font-weight: 800;
    line-height: 1.2;
    color: var(--text-dark);
}

.hero-content h1 .highlight {
    color: var(--primary-green);
}

.hero-content .description {
    font-size: 16px;
    color: var(--text-muted);
    line-height: 1.8;
    max-width: 500px;
}

.servings-info {
  /* margin: 5px 0 10px; */
  font-size: 2rem;
  font-weight: 500;
  color: #333;
  display: flex;
  align-items: center;
  gap: 8px;
  justify-content: start;
}
.servings-info .green-icon{
    font-size: 2rem;
    margin-left: 5px;
  
}

.feature-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin: 20px 0;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-dark);
}

.green-icon {
    color: var(--primary-green);
    font-size: 18px;
}

.cta-buttons {
    display: flex;
    gap: 15px;
    margin: 20px 0;
}

.btn {
    padding: 12px 28px;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
    text-align: center;
}

.btn-primary {
    background: linear-gradient(90deg, #9CFF2E 0%, #39B500 100%);
    color: var(--text-light);
}

.btn-primary:hover {
    background-color: var(--accent-green);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(164, 255, 0, 0.3);
}

.btn-secondary {
    background-color: transparent;
    color: var(--primary-green);
    border: 2px solid var(--primary-green);
}

.btn-secondary:hover {
    background-color: var(--primary-green);
    color: var(--text-dark);
}

.btn-secondary-outline {
    background-color: transparent;
    color: var(--primary-green);
    border: 2px solid var(--primary-green);
    padding: 10px 24px;
    margin-top: 20px;
}

.btn-secondary-outline:hover {
    background-color: var(--primary-green);
    color: var(--text-dark);
}

.social-proof {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: var(--text-muted);
    margin-top: 20px;
}

.social-proof i {
    color: var(--primary-green);
    font-size: 16px;
}

.social-proof .filled {
    color: var(--primary-green);
}

.hero-image {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.image-container {
    position: relative;
    width: 100%;
    height: 400px;
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: visible;
}

@media (max-width: 768px) {
    .image-container{
        
        height: 295px;
    }
}


.product-img {
    width: 80%;
    height: auto;
    object-fit: contain;
}

.badge {
    position: absolute;
      padding: 8px 18px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.5px;
    z-index: 10;
}

.new-badge {
      top: -15px;
      right: -15px;
      background: var(--primary-green);
      color: #000;
}

.guarantee-badge {
    bottom: 20px;
    left: 20px;
    /* background-color: rgba(255, 255, 255, 0.9); */
    color: var(--text-light);
}

/* ===========================
   WHY CHOOSE US SECTION
   =========================== */

.why-choose-us-section {
    padding: 80px 0;
    background-color: #ffffff;
}

.why-choose-us-section h2 {
    font-size: 42px;
    font-weight: 800;
    text-align: center;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.why-choose-us-section h2 .highlight {
    color: var(--primary-green);
}

.subtitle {
    text-align: center;
    color: var(--text-muted);
    font-size: 16px;
    margin-bottom: 50px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.feature-card {
    background-color: #ffffff;
    border: 1px solid var(--border-light);
    border-radius: 12px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s ease;
}

.feature-card:hover {
    box-shadow: var(--shadow);
    transform: translateY(-5px);
}

.icon-circle {
    width: 80px;
    height: 80px;
    background: linear-gradient(90deg, #9CFF2E 0%, #39B500 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 36px;
    color: var(--text-dark);
}

.feature-card h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.feature-card p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.8;
}

.why-choose-us-section .btn-secondary-outline {
    display: block;
    margin: 0 auto;
}

/* ===========================
   FEATURED PRODUCTS SECTION
   =========================== */

.products-section {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.products-section h2 {
    font-size: 42px;
    font-weight: 800;
    text-align: center;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.products-section h2 .highlight {
    color: var(--primary-green);
}

.product-image-display {
    margin: 50px 0;
    text-align: center;
}

.main-product-shot {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin: 50px 0;
}

.product-card {
    background-color: #ffffff;
    border-radius: 12px;
    padding: 25px;
    position: relative;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.product-card:hover {
    box-shadow: var(--shadow);
    transform: translateY(-5px);
}

.bestseller-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: var(--primary-green);
    color: var(--text-dark);
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.product-card h3 {
    font-size: 18px;
    font-weight: 700;
    margin: 20px 0 10px;
    color: var(--text-dark);
}

.product-desc {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 15px;
}

.rating {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 15px;
    font-size: 12px;
    color: var(--text-muted);
}

.rating i {
    color: var(--primary-green);
    font-size: 14px;
}

.price-info {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 15px 0;
    flex-wrap: wrap;
}

.current-price {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-dark);
}

.old-price {
    font-size: 16px;
    color: var(--text-muted);
    text-decoration: line-through;
}

.discount {
    background-color: var(--primary-green);
    color: var(--text-dark);
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 700;
}

.add-to-cart {
    width: 100%;
    justify-content: center;
    padding: 12px;
}

.more-products-btn {
    display: block;
    margin: 40px auto 0;
}

/* ===========================
   TESTIMONIALS SECTION
   =========================== */

.testimonials-section {
    background-color: var(--dark-bg);
    color: var(--text-light);
    padding: 80px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 80px;
    text-align: center;
}

.stat-item {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.stat-number {
    font-size: 42px;
    font-weight: 800;
    color: var(--primary-green);
}

.stat-label {
    font-size: 14px;
    color: #999999;
    letter-spacing: 0.5px;
}

.testimonials-section h2 {
    font-size: 42px;
    font-weight: 800;
    text-align: center;
    margin-bottom: 15px;
    color: var(--text-light);
}

.testimonials-section h2 .highlight {
    color: var(--primary-green);
}

.testimonials-section .subtitle {
    color: #999999;
    margin-bottom: 50px;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

.testimonial-card {
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 30px;
    position: relative;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    background-color: rgba(255, 255, 255, 0.08);
    border-color: rgba(164, 255, 0, 0.3);
}

.verified-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: var(--primary-green);
    color: var(--text-dark);
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.testimonial-card .rating {
    margin-bottom: 20px;
}

.testimonial-card .rating i {
    font-size: 16px;
}

.quote {
    font-size: 15px;
    font-style: italic;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #cccccc;
}

.author {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-light);
    margin-bottom: 5px;
}

.role {
    font-size: 12px;
    color: #999999;
}

.featured-in {
    text-align: center;
    padding: 40px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.featured-in p {
    font-size: 14px;
    color: #999999;
    margin-bottom: 20px;
}

.logos {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.logos span {
    font-size: 13px;
    color: #666666;
    font-weight: 500;
}

/* ===========================
   NEWSLETTER SECTION
   =========================== */

.newsletter-section {
    background-color: var(--dark-bg);
    color: var(--text-light);
    padding: 60px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.newsletter-section h2 {
    font-size: 36px;
    font-weight: 800;
    text-align: center;
    margin-bottom: 15px;
}

.newsletter-section h2 .highlight {
    color: var(--primary-green);
}

.newsletter-section .subtitle {
    color: #999999;
    margin-bottom: 30px;
}

.newsletter-form {
    display: flex;
    gap: 10px;
    max-width: 500px;
    margin: 0 auto 20px;
    justify-content: center;
}

.newsletter-form input {
    flex: 1;
    max-width: 300px;
    padding: 12px 16px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 6px;
    background-color: rgba(255, 255, 255, 0.05);
    color: var(--text-light);
    font-size: 14px;
    font-family: 'Poppins', sans-serif;
}

.newsletter-form input::placeholder {
    color: #999999;
}

.newsletter-form input:focus {
    outline: none;
    border-color: var(--primary-green);
    background-color: rgba(255, 255, 255, 0.08);
}

.newsletter-form button {
    padding: 12px 28px;
}

.disclaimer {
    text-align: center;
    font-size: 12px;
    color: #999999;
}

/* ===========================
   FOOTER
   =========================== */

.footer {
    background-color: #0a0a0a;
    color: var(--text-light);
    padding: 60px 0 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-col h4 {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--text-light);
    letter-spacing: 0.5px;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col a {
    color: #999999;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-col a:hover {
    color: var(--primary-green);
}

.footer-brand p {
    font-size: 14px;
    color: #999999;
    line-height: 1.8;
    margin: 15px 0;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999999;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background-color: var(--primary-green);
    color: var(--text-dark);
    border-color: var(--primary-green);
}

.footer-bottom {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 30px;
    padding: 20px 0;
    font-size: 13px;
    color: #666666;
    text-align: center;
}

.contact-info,
.made-in-usa,
.disclaimers {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.contact-info p,
.made-in-usa p {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.disclaimers p {
    font-size: 12px;
}

.disclaimers i {
    color: var(--primary-green);
    font-size: 12px;
}

/* ===========================
   RESPONSIVE DESIGN
   =========================== */

@media (max-width: 768px) {
    .hero-section .container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-content h1 {
        font-size: 36px;
    }

    .feature-list {
        grid-template-columns: 1fr;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .feature-grid {
        grid-template-columns: 1fr;
    }

    .product-grid {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .testimonial-grid {
        grid-template-columns: 1fr;
    }

    .nav ul {
        gap: 15px;
        font-size: 12px;
    }

    .footer-top {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        grid-template-columns: 1fr;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .newsletter-form input {
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 28px;
    }

    .why-choose-us-section h2,
    .products-section h2 {
        font-size: 28px;
    }

    .stat-number {
        font-size: 28px;
    }

    .nav ul {
        display: none;
    }

    .header-icons {
        gap: 10px;
    }
}

.price-display {
  margin: 10px 0;
  display: flex;
  align-items: baseline;
  gap: 10px;
  flex-wrap: wrap;
}

.price-display .current-price {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary-green); /* لون مائل للأخضر */
}

.price-display .old-price {
  font-size: 1.2rem;
  color: #999;
  text-decoration: line-through;
}

.price-display .discount {
  font-size: 1rem;
  font-weight: 600;
  color: #e74c3c; /* لون أحمر للتخفيض */
  background-color: rgba(231, 76, 60, 0.1);
  padding: 3px 8px;
  border-radius: 6px;
}

/* gallery section */
.gallery-section {
  background-color: #ffffff;
  padding: 90px 20px;
  font-family: "Poppins", sans-serif;
  text-align: center;
  color: #222;
}

.gallery-section .container {
  max-width: 2000px;
  margin: 0 auto;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
  margin-top: 40px;
  justify-items: center;
}

.gallery-item {
  width: 90%;          /* ثابت العرض */
  height: 400px;         /* ثابت الطول */
  overflow: hidden;
  border-radius: 20px;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.gallery-item:hover {
  transform: scale(1.05);
}

.gallery-image {
  width: 100%;
  height: 100%;
  object-fit: cover;      /* تضمن أن الصورة تملأ المربع بدون تشويه */
  border-radius: 20px;
}

/* Fullscreen viewer */
.fullscreen-viewer {
  display: none;
  position: fixed;
  z-index: 9999;
  inset: 0;
  background: rgba(0, 0, 0, 0.9);
  justify-content: center;
  align-items: center;
}

.fullscreen-viewer img {
  max-width: 90%;
  max-height: 90%;
  border-radius: 20px;
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
  cursor: zoom-out;
}



/* Section Base */
.description-section {
  background: linear-gradient(180deg, #f6fff1 0%, var(--primary-green) 100%);
  padding: 90px 20px;
  font-family: "Poppins", sans-serif;
  text-align: center;
  color: #222;
}

/* Container */
.description-section .container {
  max-width: 2000px;
  margin: 0 auto;
}
.description-section .last-container{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.description-section .last-container .hero-content{
    text-align: start;
}
@media (max-width: 768px) {
    .description-section .last-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

}


/* Title */
.section-title {
  font-size: 2.3rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 10px;
}

/* Subtitle */
.section-subtitle {
  color: #6b6b6b;
  font-size: 1rem;
  margin-bottom: 50px;
}
.description-section-image {
    border-radius: 20px;
    margin-bottom: 30px;
    height: 500px;
    overflow: hidden;
    position: relative;
}

.description-section-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;   /* يجعل الصورة تغطي العنصر بالكامل */
    object-position: center; /* يركّز الصورة في المنتصف */
    border-radius: inherit; /* يرث الزوايا المستديرة من العنصر الأب */
}

/* Each Story Block */
.story-block {
 position: relative;
  background: #fff;
  border-radius: 20px;
  padding: 40px;
  text-align: center;
  margin-bottom: 30px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
  overflow: hidden; /* حتى لا يخرج الـ overlay عن الحدود */
}



/* Icon Circle */
.icon-circle {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #a9ff37;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #1a1a1a;
  font-size: 20px;
  margin-bottom: 15px;
  box-shadow: 0 0 12px rgba(169, 255, 55, 0.5);
}

/* Headings */
.story-block h3 {
  font-size: 1.4rem;
  font-weight: 600;
  color: #9ae32d;
  margin-bottom: 15px;
}

/* Paragraphs */
.story-block p {
  color: var(--text-dark);
  line-height: 1.8;
  font-size: 0.98rem;
}

/* Responsive */
@media (max-width: 768px) {
  .story-block {
    padding: 25px;
  }
  .section-title {
    font-size: 1.9rem;
  }
}
