/* ========================= */
/* NUTRITION HERO SECTION */
/* ========================= */
:root {
    --section-sm: 60px;
    --section-md: 80px;
    --section-lg: 100px;

    --font-heading: 'Lato', sans-serif;
    --font-body: 'Open Sans', sans-serif;

    --text-h1: 44px;
    --text-h2: 36px;
    --text-h3: 28px;
    --text-h4: 20px;

    --text-body-lg: 16px;
    --text-body: 15px;
    --text-body-sm: 13px;

    --weight-regular: 400;
    --weight-medium: 500;
    --weight-semibold: 600;
    --weight-bold: 700;
    --weight-extrabold: 800;
}

body {
    font-family: var(--font-body);
    font-size: var(--text-body);
    line-height: 1.7;
    color: #374151;
}

h1,
h2,
h3,
h4 {
    font-family: var(--font-heading);
    color: #111827;
}

h1 {
    font-size: var(--text-h1);
    font-weight: var(--weight-extrabold);
}

h2 {
    font-size: var(--text-h2);
    font-weight: var(--weight-bold);
}

h3 {
    font-size: var(--text-h3);
    font-weight: var(--weight-bold);
}

h4 {
    font-size: var(--text-h4);
    font-weight: var(--weight-semibold);
}


small,
.badge,
.tag,
.hero-mini-badge {
    font-size: var(--text-body-sm);
    font-weight: var(--weight-medium);
}

html {
    scroll-behavior: smooth;
}


/**/
.nutrition-hero {
    background: #f8f6eb;
    padding: var(--section-lg) 0;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    align-items: center;
    gap: 60px;
}

/* LEFT CONTENT */
.hero-text h1 {
    margin-bottom: 16px;
}


.hero-text p {
    font-size: var(--text-body);
    line-height: 1.7;
    color: #555;
    max-width: 480px;
    margin-bottom: 30px;
}

/* BADGES */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #e9f7ef;
    color: #20ba68;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 18px;
}

.hero-mini-badge {
    display: inline-block;
    background: #fff;
    border: 1px solid #eee;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 18px;
}

.hero-mini-badge span {
    color: #999;
    font-weight: 400;
    margin-left: 4px;
}

/* BUTTONS */
.hero-buttons {
    display: flex;
    gap: 15px;
}

/* IMAGE */
.hero-image img {
    width: 100%;
    border-radius: 22px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
}



.hero {
  padding: 90px 20px;
}

.hero-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;  background: #f8f6eb;

}

/* Left content */
.hero-content h1 {
  line-height: 1.2;
  margin-bottom: 24px;
}

.hero-content p {
  font-size: 16px;
  line-height: 1.7;
  color: #4b5563;
  max-width: 520px;
  margin-bottom: 36px;
}

/* Decorative pill */
.hero-pill {
  display: inline-block;
  width: 120px;
  height: 22px;
  background: #e6f7f1;
  border-radius: 999px;
  margin-bottom: 24px;
}

.hero-actions {
  display: flex;
  gap: 20px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 26px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-green {
  background: #3eb489;
  color: #ffffff;
  box-shadow: 0 10px 25px rgba(62, 180, 137, 0.35);
}

.btn-green:hover {
  background: #34a77f;
}

.btn-pink {
  background: #ec008c;
  color: #ffffff;
  box-shadow: 0 10px 25px rgba(236, 0, 140, 0.35);
}

.btn-pink:hover {
  background: #d4007e;
}

.btn-primary {
  background: #3eb489;
  color: #ffffff;
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 8px 20px rgba(62, 180, 137, 0.35);
}

.btn-primary:hover {
  background: #34a77f;
    transform: translateY(-2px);
}


/* Outline button */
.btn-outline {
  background: transparent;
  border: 2px solid #00adef;
  color: #00adef;
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 600;
  text-decoration: none;
}


.btn-outline:hover {
  background: #f9c80e;
  color: #ffffff;
  transform: translateY(-2px);
}

/* Right image */
.hero-image img {
  width: 100%;
  border-radius: 20px;
  object-fit: cover;
  box-shadow: 0 30px 60px rgba(0,0,0,0.15);
}

/* =========================
   HERO RESPONSIVE
========================= */

/* Tablets */
@media (max-width: 1024px) {
  .hero-container {
    grid-template-columns: 1fr;
    gap: 50px;
    text-align: center;
  }

  .hero-content p {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }

  .hero-actions {
    justify-content: center;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .hero {
    padding: 60px 20px;
  }

  .hero-content h1 {
    font-size: 28px;
    line-height: 1.25;
  }

  .hero-content p {
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 28px;
  }

  .hero-pill {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-actions {
    flex-direction: column;
    gap: 14px;
  }

  .hero-actions a {
    width: 100%;
    justify-content: center;
  }

  .hero-image img {
    border-radius: 16px;
  }
}

/* Small phones */
@media (max-width: 480px) {
  .hero-content h1 {
    font-size: 24px;
  }

  .hero {
    padding: 60px 16px;
  }
}


/* ============================= */
/* TABLET (≤ 1024px) */
/* ============================= */
@media (max-width: 1024px) {

    .hero-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .hero-text p {
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }

    .hero-buttons {
        justify-content: center;
        flex-wrap: wrap;
    }

    .hero-image img {
        max-width: 520px;
        margin: 0 auto;
        display: block;
    }
}

/* ============================= */
/* MOBILE (≤ 768px) */
/* ============================= */
@media (max-width: 768px) {

    /* Remove image */
    .hero-image {
        display: none;
    }

    /* Replace grid ONLY on mobile */
    .hero-grid {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .hero-text {
        max-width: 360px;
        text-align: center;
        align-items: center;
        display: flex;
        flex-direction: column;
    }

    .hero-text p {
        max-width: 320px;
        margin-left: auto;
        margin-right: auto;
    }

    .hero-buttons {
        justify-content: center;
        width: 100%;
    }

    .hero-buttons a {
        width: 100%;
        max-width: 260px;
    }
}

/* ============================= */
/* SMALL MOBILE (≤ 480px) */
/* ============================= */
@media (max-width: 480px) {

    .hero-text h1 {
        font-size: 1.9rem;
    }

    .hero-badge,
    .hero-mini-badge {
        font-size: 11px;
        padding: 5px 10px;
    }

    .hero-buttons a {
        font-size: 14px;
        padding: 12px;
    }
}



/* ========================= */
/* SIGNATURE JUICES */
/* ========================= */

.signature-juices {

    background: #fff;
}

.signature-juices,
.our-values {
    padding: var(--section-sm) 0;
}

.section-header {
    text-align: center;
    max-width: 620px;
    margin: 0 auto 60px;
}

.section-header h2 {
    margin-bottom: 10px;
}

.section-header p {
    font-size: var(--text-body-sm);
    color: #666;
    line-height: 1.6;
}

/* GRID */
.juice-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
}

/* CARD */
.juice-card {
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
    overflow: hidden;
    transition: 0.3s ease;
}

.juice-card:hover {
    transform: translateY(-6px);
}

.juice-card img {
    width: 100%;
    height: 240px;
    object-fit: cover;
}

.juice-content {
    padding: 20px;
}

.juice-content h4 {
    margin-bottom: 10px;
}

/* TAGS */
.tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 15px;
}

.tags span {
    background: #f3f6f3;
    color: #666;
    font-size: 11px;
    padding: 4px 10px;
    border-radius: 20px;
}

/* PRICE + CART */
.price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.price {
    font-weight: 700;
    font-size: 15px;
}

.btn-cart {
    background: #20ba68;
    color: #fff;
    font-size: 12px;
    padding: 6px 12px;
    border-radius: 6px;
    text-decoration: none;
}

.btn-cart:hover {
    background: #159c5c;
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .juice-grid {
        grid-template-columns: 1fr;
    }
}

/* ========================= */
/* WHY CHOOSE SECTION */
/* ========================= */

.why-use {
    background: linear-gradient(135deg, #eef7f1, #f5f0fa);
}

.why-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 70px;
    align-items: center;
}

/* TEXT */
.why-text h2 {
    margin-bottom: 12px;
}

.why-subtitle {
    font-size: var(--text-body);
    color: #555;
    max-width: 480px;
    margin-bottom: 40px;
    line-height: 1.6;
}

/* LIST */
.why-list {
    display: flex;
    flex-direction: column;
    gap: 26px;
}

.why-item {
    display: flex;
    gap: 16px;
}

.why-item h4 {
    margin-bottom: 4px;
}

.why-item p {
    font-size: 13px;
    color: #666;
    line-height: 1.6;
}

/* ICON */
.why-icon {
    width: 42px;
    height: 42px;
    background: #fff;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #20ba68;
    font-size: 16px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

/* IMAGE */
.why-image {
    position: relative;
}

.why-image img {
    width: 100%;
    border-radius: 24px;
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.2);
}

/* BADGE */
.organic-badge {
    position: absolute;
    top: -18px;
    right: -18px;
    width: 78px;
    height: 78px;
    background: #20ba68;
    color: #fff;
    border-radius: 50%;
    font-size: 11px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}
/* ============================= */
/* TABLET (≤ 1024px) */
/* ============================= */
@media (max-width: 1024px) {

    .why-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .why-image {
        max-width: 520px;
        margin: 0 auto;
    }

    .why-subtitle {
        max-width: 100%;
    }
}

/* ============================= */
/* MOBILE (≤ 768px) */
/* ============================= */
@media (max-width: 768px) {

    .why-use {
        padding: 70px 0;
    }

    .why-text {
        text-align: center;
    }

    .why-text h2 {
        font-size: 1.9rem;
    }

    .why-subtitle {
        font-size: 15px;
        margin-left: auto;
        margin-right: auto;
    }

    .why-list {
        gap: 22px;
    }

    .why-item {
        align-items: flex-start;
        text-align: left;
        max-width: 420px;
        margin: 0 auto;
    }

    .why-icon {
        width: 38px;
        height: 38px;
        font-size: 15px;
        border-radius: 10px;
    }

    .why-image {
        max-width: 420px;
    }

    .organic-badge {
        width: 64px;
        height: 64px;
        font-size: 10px;
        top: -14px;
        right: -14px;
    }
}

/* ============================= */
/* SMALL MOBILE (≤ 480px) */
/* ============================= */
@media (max-width: 480px) {

    .why-text h2 {
        font-size: 1.7rem;
    }

    .why-subtitle {
        font-size: 14px;
        margin-bottom: 30px;
    }

    .why-item {
        gap: 14px;
    }

    .why-item p {
        font-size: 13px;
    }

    .why-image {
        max-width: 100%;
    }

    .organic-badge {
        width: 56px;
        height: 56px;
        font-size: 9px;
    }
}

/* ========================= */
/* ABOUT USE NATURALS */
/* ========================= */

.about-use {

    background: #fff;
}

/* HEADER */
.about-header {
    text-align: center;
    max-width: 650px;
    margin: 0 auto 50px;
}

.about-header h2 {
    margin-bottom: 10px;
}

.about-header p {
    font-size: var(--text-body-sm);
    color: #666;
    line-height: 1.6;
}

/* STATS */
.about-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-bottom: 80px;
}

.stat-box {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 14px;
    padding: 28px 20px;
    text-align: center;
    transition: 0.3s ease;
}

.stat-box:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.stat-box h3 {
    font-size: 26px;
    font-weight: 800;
    color: #ff3ea5;
    margin-bottom: 6px;
}

.stat-box span {
    font-size: 13px;
    color: #777;
}

/* CONTENT */
.about-content {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 70px;
    align-items: center;
}

.about-text h4 {
    margin-bottom: 15px;
}

.about-text p {
    font-size: 14px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 14px;
}

/* IMAGE */
.about-image img {
    width: 100%;
    border-radius: 22px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.2);
}
/* ============================= */
/* TABLET (≤ 1024px) */
/* ============================= */
@media (max-width: 1024px) {

    .about-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        margin-bottom: 60px;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .about-image {
        max-width: 520px;
        margin: 0 auto;
    }
}

/* ============================= */
/* MOBILE (≤ 768px) */
/* ============================= */
@media (max-width: 768px) {

    .about-header {
        margin-bottom: 40px;
        padding: 0 16px;
    }

    .about-header h2 {
        font-size: 1.9rem;
    }

    .about-header p {
        font-size: 14px;
    }

    .about-stats {
        grid-template-columns: 1fr;
        gap: 18px;
        margin-bottom: 50px;
    }

    .stat-box {
        padding: 24px 18px;
    }

    .stat-box h3 {
        font-size: 24px;
    }

    .about-content {
        gap: 40px;
    }

    .about-text {
        text-align: center;
    }

    .about-text p {
        max-width: 520px;
        margin-left: auto;
        margin-right: auto;
    }

    .about-image {
        max-width: 420px;
    }
}

/* ============================= */
/* SMALL MOBILE (≤ 480px) */
/* ============================= */
@media (max-width: 480px) {

    .about-header h2 {
        font-size: 1.7rem;
    }

    .about-text h4 {
        font-size: 1.1rem;
    }

    .about-text p {
        font-size: 13.5px;
        line-height: 1.7;
    }

    .stat-box h3 {
        font-size: 22px;
    }

    .stat-box span {
        font-size: 12px;
    }

    .about-image {
        max-width: 100%;
    }
}


/* ========================= */
/* OUR VALUES */
/* ========================= */

.our-values {
    background: #fff;
}

/* HEADER */
.values-header {
    text-align: center;
    margin-bottom: 50px;
}

/* GRID */
.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
}

/* CARD */
.value-card {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 14px;
    padding: 30px 22px;
    text-align: center;
    transition: 0.3s ease;
}

.value-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.value-card h4 {
    margin-bottom: 8px;
}

.value-card p {
    font-size: 13px;
    color: #666;
    line-height: 1.6;
}

/* ICON */
.value-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    font-size: 18px;
}

/* ICON COLORS */
.value-icon.quality {
    background: #fff6e5;
    color: #f5a623;
}

.value-icon.local {
    background: #eafaf1;
    color: #20ba68;
}

.value-icon.fresh {
    background: #fff1eb;
    color: #ff7a18;
}

.value-icon.health {
    background: #ffeef3;
    color: #ff3e6c;
}
/* ============================= */
/* TABLET (≤ 1024px) */
/* ============================= */
@media (max-width: 1024px) {

    .values-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
}

/* ============================= */
/* MOBILE (≤ 768px) */
/* ============================= */
@media (max-width: 768px) {

    .values-header {
        margin-bottom: 40px;
        padding: 0 16px;
    }

    .values-header h2 {
        font-size: 1.9rem;
    }

    .values-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .value-card {
        padding: 26px 20px;
    }

    .value-card p {
        max-width: 360px;
        margin-left: auto;
        margin-right: auto;
    }
}

/* ============================= */
/* SMALL MOBILE (≤ 480px) */
/* ============================= */
@media (max-width: 480px) {

    .values-header h2 {
        font-size: 1.7rem;
    }

    .value-icon {
        width: 46px;
        height: 46px;
        font-size: 16px;
        border-radius: 12px;
    }

    .value-card h4 {
        font-size: 15px;
    }

    .value-card p {
        font-size: 13.5px;
        line-height: 1.5;
    }
}

/* ============================= */
/* TOUCH DEVICES */
/* ============================= */
@media (hover: none) {
    .value-card:hover {
        transform: none;
        box-shadow: none;
    }
}

.value-icon {
    transition: transform 0.25s ease;
}

@media (hover: hover) {
    .value-card:hover .value-icon {
        transform: scale(1.05);
    }
}




/* ========================= */
/* CONTACT SECTION */
/* ========================= */

.contact-section {
    background: #f8f6eb;
}

.why-use,
.about-use,
.contact-section {
    padding: var(--section-sm) 0;
}

/* HEADER */
.contact-header {
    text-align: center;
    margin-bottom: 60px;
}

.contact-header h2 {
    margin-bottom: 8px;
}

.contact-header p {
    font-size: var(--text-body-sm);
    color: #666;
}

/* GRID */
.contact-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 50px;
}

/* FORM */
.contact-form {
    background: #fff;
    border-radius: 16px;
    padding: 35px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}

.contact-form h4 {
    margin-bottom: 22px;
}

.form-row {
    display: flex;
    gap: 18px;
}

.form-group {
    display: flex;
    flex-direction: column;
    margin-bottom: 18px;
    flex: 1;
}

.form-group label {
    font-size: 12px;
    margin-bottom: 6px;
    color: #555;
}

.form-group input,
.form-group textarea {
    padding: 10px 12px;
    border-radius: 6px;
    border: 1px solid #ddd;
    font-size: 13px;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #20ba68;
}

/* INFO */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.info-card {
    background: #fff;
    border-radius: 14px;
    padding: 20px;
    display: flex;
    gap: 14px;
    align-items: flex-start;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
}

.info-card i {
    font-size: 18px;
    color: #20ba68;
    margin-top: 4px;
}

.info-card h5 {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 4px;
}

.info-card p {
    font-size: 13px;
    color: #666;
    line-height: 1.6;
}
/* ============================= */
/* TABLET (≤ 1024px) */
/* ============================= */
@media (max-width: 1024px) {

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-form {
        padding: 30px;
    }

    .contact-info {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 20px;
    }


}

/* ============================= */
/* MOBILE (≤ 768px) */
/* ============================= */
@media (max-width: 768px) {

    .contact-header {
        margin-bottom: 40px;
        padding: 0 16px;
    }

    .contact-header h2 {
        font-size: 1.9rem;
    }

    .contact-header p {
        font-size: 14px;
    }

    .contact-form {
        padding: 24px;
    }


    .contact-info {
        flex-direction: column;
    }

    .info-card {
        width: 100%;
    }

    .btn-primary {
        width: 100%;
        text-align: center;
        padding: 12px;
    }
}

/* ============================= */
/* SMALL MOBILE (≤ 480px) */
/* ============================= */
@media (max-width: 480px) {

    .contact-form {
        padding: 20px;
        border-radius: 12px;
    }

    .form-group input,
    .form-group textarea {
        font-size: 14px;
        padding: 12px;
    }

    .info-card {
        padding: 18px;
    }

    .info-card i {
        font-size: 16px;
    }

    .info-card h5 {
        font-size: 13px;
    }

    .info-card p {
        font-size: 12.5px;
    }
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .form-row {
        flex-direction: column;
    }
}
