/* ============================================================
   GLOBAL
============================================================ */
body {
    margin: 0;
    font-family: "Varela Round", sans-serif;
    color: #fff;

    background: linear-gradient(to bottom, #161616 0%, #1c1c1c 40%, #212121 100%);
    background-attachment: fixed;
}

section {
    padding: 100px 8%;
}

h1, h2, h3, h4 {
    background: linear-gradient(90deg, #fff, #ffffff, #ffffff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.fade-up {
    opacity: 0;
    transform: translateY(40px);
    transition: 1s ease;
}
.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Buttons */
.btn {
    padding: 14px 34px;
    border-radius: 60px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.25s;
}
.btn.primary {
    background: linear-gradient(90deg, #ff7b3f, #ffb48a);
    color: #000;
}
.btn.primary:hover {
    transform: translateY(-3px);
    filter: brightness(1.1);
}

/* ============================================================
   HERO — OPTION A
============================================================ */
.hero-section {
    position: relative;
    text-align: center;
    padding: 100px 8% 160px;
}
.hero-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 1;
    z-index: 1;
    margin-top: -75px;
}
.hero-content {
    position: relative;
    z-index: 3;
        padding-bottom: 160px;
}
.hero-content h1 {
    font-size: 52px;
}
.hero-content p {
    max-width: 600px;
    margin: 20px auto 40px;
    font-size: 19px;
    opacity: 0.9;
}
.hero-gummies img {
    width: 260px;
    margin-top: 20px;
}
.hero-discover {
    margin-top: 30px;
    opacity: 0.55;
}

/* Curve divider */
.curve-divider {
    width: 100%;
    height: 80px;
    background: url('../images/curve-divider.svg');
    background-repeat: no-repeat;
    background-size: cover;
    margin-top: -40px;
}

/* ============================================================
   MINI INTRO
============================================================ */
.mini-intro {
    text-align: center;
}
.intro-logo {
    width: 170px;
    margin-bottom: 18px;
}
.mini-intro p {
    max-width: 650px;
    margin: auto;
    font-size: 18px;
    opacity: .7;
}

/* ============================================================
   CIRCLE GALLERY
============================================================ */
.circle-h2{
    font-size: 35px;
}
.subtitle{
    font-size: 25px;
}

.circle-gallery {
    text-align: center;
    position: relative;
}

.circle-row {
    position: relative;
    height: 200px;
}

.circle {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid rgba(255,255,255,0.08);
    position: absolute;
    transition: .4s;
    animation: floatUpDown 6s ease-in-out infinite;
}
.circle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.circle-c6{
     width: 180px;
    height: 180px;
    border-radius: 50%;
    border: none!important;
}

/* TOP ROW (matches screenshot layout) */
.c1 { left: 10%; top: 20px; }
.c2 { left: 45%; top: 0;   transform: scale(1.15); }
.c3 { right: 10%; top: 40px; }

/* BOTTOM ROW */
.c4 { left: 20%; top: 10px; }
.c5 { left: 45%; top: 30px; transform: scale(1.2); }
.c6 { right: 20%; top: 30px; }

/* Each circle moves differently (randomized timing + direction) */
.c1 { animation-duration: 7s; animation-delay: 0s; transform: translateY(0); }
.c2 { animation-duration: 6.2s; animation-delay: 0.4s; }
.c3 { animation-duration: 7.4s; animation-delay: 0.8s; }

.c4 { animation-duration: 6.6s; animation-delay: 0.2s; }
.c5 { animation-duration: 7.8s; animation-delay: 0.5s; }
.c6 { animation-duration: 6s; animation-delay: 1s; }

/* Keyframes — smooth premium float */
@keyframes floatUpDown {
    0%   { transform: translateY(0px); }
    50%  { transform: translateY(-18px); }
    100% { transform: translateY(0px); }
}

/* Optional subtle breathing scale */
.circle img {
    animation: breathe 6s ease-in-out infinite;
}

@keyframes breathe {
    0%   { transform: scale(1); }
    50%  { transform: scale(1.03); }
    100% { transform: scale(1); }
}

/* Hover effect upgrade */
.circle:hover {
    transform: scale(1.1) translateY(-8px) !important;
    box-shadow: 0 0 35px rgba(255,123,63,0.4);
}

/* ============================================================
   HOMEPAGE PRODUCTS — Same Style As SHOP PAGE
============================================================ */

.products h2 {
    text-align: center;
    font-size: 48px;
    margin-bottom: 60px;
    font-weight: 700;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 45px;
    padding: 0 0 20px;
}

/* SAME PRODUCT CARD FROM SHOP */
.product-card {
    position: relative;
    text-align: center;
    padding: 42px 28px 38px;

    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 22px;
    backdrop-filter: blur(20px);

    box-shadow: 0 0 30px rgba(0,0,0,0.35);
    transition: 0.35s cubic-bezier(.22,.61,.36,1);
}

/* Hover — SAME AS SHOP */
.product-card:hover {
    transform: translateY(-12px);
    border-color: rgba(255,180,138,0.45);
    box-shadow: 0 18px 55px rgba(255,180,138,0.25);
}

/* Image — SAME AS SHOP */
.product-card img {
    width: 170px;
    margin-bottom: 24px;
    filter: drop-shadow(0 22px 25px rgba(0,0,0,0.45));
    transition: 0.35s ease;
}

.product-card:hover img {
    transform: translateY(-8px);
    filter: drop-shadow(0 32px 35px rgba(255,180,138,0.28));
}

/* Title — EXACT */
.product-card h4 {
    font-size: 20px;
    margin-bottom: 12px;
}

/* Description — EXACT */
.product-card p {
    opacity: .75;
    font-size: 15px;
    margin-bottom: 22px;
}


/* ============================================================
   PRODUCT COLOR TONES — Same as SHOP
============================================================ */

/* Multivitamin (Orange) */
.p-title.mv {
       background: linear-gradient(90deg, #eaa94d, #e3a243);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.product-card.mv:hover {
    border-color: rgba(255,123,63,0.45);
    box-shadow: 0 18px 50px rgba(255,123,63,0.25);
}

/* Apple Cider (Red Tone Updated) */
.p-title.acv {
    background: linear-gradient(90deg, #c8503d, #c74f3d);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.product-card.acv:hover {
    border-color: rgba(202, 81, 62, 0.55);
    box-shadow: 0 18px 50px rgba(201, 80, 62, 0.35);
}

/* Snoozzz (Blue) */
.p-title.snooz {
    background: linear-gradient(90deg, #7AC8FF, #4AA0FF);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.product-card.snooz:hover {
    border-color: rgba(120,180,255,0.45);
    box-shadow: 0 18px 55px rgba(120,180,255,0.28);
}

/* 7-Day Cleanse (Orange Updated) */
.p-title.cleanse {
    background: linear-gradient(90deg, #d6783f, #d4763d);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.product-card.cleanse:hover {
    border-color: rgba(214, 119, 62, 0.55);
    box-shadow: 0 18px 55px rgba(220, 125, 70, 0.32);
}

/* Reboot Liver (Pink) */
.p-title.liver {
        background: linear-gradient(90deg, #a75f3c, #a65e3c);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.product-card.liver:hover {
        border-color: rgb(169 96 60);
    box-shadow: 0 18px 55px rgb(167 95 60);
}


/* Base Button */
.btn-prod {
    display: inline-block;
    margin-top: 15px;
    padding: 10px 22px;
    border-radius: 40px;
    font-weight: 700;
    text-decoration: none;
    color: #000;
    transition: 0.35s ease;
    font-size: 15px;
}

/* Multivitamin (Orange) */
.mv-btn {
    background: linear-gradient(90deg, #FFA35C, #FF7B3F);
}
.mv-btn:hover {
    box-shadow: 0 0 18px rgba(255,123,63,0.55);
    transform: translateY(-3px);
}

/* Apple Cider (Red-Brown) */
.acv-btn {
    background: linear-gradient(90deg, #c8503d, #c74f3d);
    color: #000000;
}
.acv-btn:hover {
    box-shadow: 0 0 18px rgba(200,80,60,0.55);
    transform: translateY(-3px);
}

/* Snoozzz (Blue) */
.snooz-btn {
    background: linear-gradient(90deg, #7AC8FF, #4AA0FF);
}
.snooz-btn:hover {
    box-shadow: 0 0 18px rgba(120,180,255,0.55);
    transform: translateY(-3px);
}

/* Cleanse (Orange-Brown) */
.cleanse-btn {
    background: linear-gradient(90deg, #d6783f, #d4763d);
}
.cleanse-btn:hover {
    box-shadow: 0 0 18px rgba(214,119,62,0.55);
    transform: translateY(-3px);
}

/* Reboot Liver (Pink) */
.liver-btn {
    background: linear-gradient(90deg, #a75f3c, #a65e3c);
}
.liver-btn:hover {
    box-shadow: 0 0 18px rgba(255,100,150,0.55);
    transform: translateY(-3px);
}

/* ============================================================
   WHY CHOOSE US — PREMIUM GLASS CARDS (RESPONSIVE)
============================================================ */

.why-choose {
    text-align: center;
    padding: 130px 8%;
}

.why-choose h2 {
    font-size: 48px;
    margin-bottom: 60px;
}

/* Desktop Grid */
.why-grid {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

/* Card container */
.why-item {
    width: 260px;
    padding: 35px 25px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 22px;
    backdrop-filter: blur(10px);
    transition: .45s ease;
    position: relative;
    overflow: hidden;
}

/* Glow background */
.why-item::before {
    content: "";
    position: absolute;
    inset: -30px;
    background: radial-gradient(circle, rgba(255,123,63,0.32), transparent 70%);
    opacity: 0;
    transition: .5s;
}

.why-item:hover {
    transform: translateY(-10px) scale(1.03);
    border-color: rgba(255,123,63,0.45);
    box-shadow: 0 10px 40px rgba(255,123,63,0.35);
}
.why-item:hover::before { opacity: 1; }

/* ICONS */
.why-item img {
    width: 70px;
    margin-bottom: 18px;
    transition: .45s ease;
}
.why-item:hover img {
    transform: translateY(-6px) scale(1.1);
    filter: drop-shadow(0 0 12px rgba(255,123,63,0.35));
}

/* TEXT */
.why-item p {
    font-size: 15px;
    opacity: .8;
    line-height: 1.45;
}

/* Floating animation */
@keyframes whyFloat {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-6px); }
    100% { transform: translateY(0px); }
}

.why-item:nth-child(1) { animation: whyFloat 6s ease-in-out infinite; }
.why-item:nth-child(2) { animation: whyFloat 7s ease-in-out infinite; }
.why-item:nth-child(3) { animation: whyFloat 5.5s ease-in-out infinite; }


/* ============================================================
   MOBILE RESPONSIVE FIX
============================================================ */
@media (max-width: 900px) {

    .why-choose {
        padding: 80px 5%;
    }

    .why-choose h2 {
        font-size: 36px;
        margin-bottom: 40px;
    }

    /* Stack items vertically */
    .why-grid {
        flex-direction: column;
        align-items: center;
        gap: 22px;
        margin-bottom: 25px;
    }

    .why-item {
        width: 90%;
        padding: 28px 15px;
    }

    .why-item img {
        width: 55px;
        margin-bottom: 14px;
    }

    .why-item p {
        font-size: 14px;
        line-height: 1.4;
    }
}



/* ============================================================
   TESTIMONIALS
============================================================ */
.testimonials {
    text-align: center;
}
.test-row {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}
.test-card {
    width: 280px;
    padding: 30px;
    border-radius: 18px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,.08);
    backdrop-filter: blur(8px);
    transition: .3s;
}
.test-card:hover {
    transform: translateY(-6px);
    border-color: rgba(255,123,63,.4);
}

/* ============================================================
   RESPONSIVE FIXES
============================================================ */
@media (max-width: 900px) {

    .circle-row { height: auto; }

    .circle {
        position: static;
        margin: 12px auto;
        width: 140px;
        height: 140px;
        transform: none !important;
    }

    .hero-content h1 {
        font-size: 38px;
    }

    .hero-section {
        padding-top: 120px;
    }
}


/* ============================================================
   SCROLL DOWN BUTTON
============================================================ */
.scroll-down-btn {
    position: absolute;
    bottom: -30%;
    left: 50%;
    transform: translateX(-50%);
    width: 32px;
    height: 55px;
    border: 2px solid rgba(255,255,255,0.45);
    border-radius: 25px;
    cursor: pointer;
    z-index: 10;
    opacity: 0.75;
    transition: 0.3s;
}

.scroll-down-btn:hover {
    opacity: 1;
    border-color: #ff7b3f;
}

.scroll-down-btn span {
    display: block;
    width: 8px;
    height: 8px;
    background: #ff7b3f;
    border-radius: 50%;
    margin: 10px auto;
    animation: scrollBounce 1.4s infinite ease-in-out;
}

@keyframes scrollBounce {
    0% { transform: translateY(0); opacity: 1; }
    50% { transform: translateY(16px); opacity: 0.4; }
    100% { transform: translateY(0); opacity: 1; }
}


/* ==========================================================
   PREMIUM CLEAN FADE-UP (NO BLUR)
   Apple-style smooth motion
========================================================== */

.fade-up {
    opacity: 0;
    transform: translateY(50px) scale(0.98);
    transition:
        opacity 0.9s cubic-bezier(0.22, 0.61, 0.36, 1),
        transform 1s cubic-bezier(0.22, 0.61, 0.36, 1);
    will-change: opacity, transform;
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.fade-left   { transform: translateX(-40px) translateY(40px); }
.fade-right  { transform: translateX(40px) translateY(40px); }

.fade-left.visible,
.fade-right.visible {
    transform: translateX(0) translateY(0);
}

/* PREMIUM RED FUN HIGHLIGHT */
.fun-highlight {
    position: relative;
    font-weight: 800;
    background: linear-gradient(90deg, #ff3b3b, #ff6a4c);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
    padding-bottom: 6px;
    font-family: cursive;
}

/* Curved underline */
.fun-highlight::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 100%;
    height: 8px;

    /* CURVED brush-like underline */
    background: radial-gradient(
        ellipse at center,
        rgba(255, 70, 70, 0.8) 0%,
        rgba(255, 70, 70, 0.5) 40%,
        rgba(255, 70, 70, 0) 80%
    );

    border-radius: 50%;
    transform: scaleX(1.2) translateY(4px);
    opacity: 0.9;
    pointer-events: none;
}

/* Optional: subtle bounce animation */
.fun-highlight {
    animation: funPop 1.6s ease-in-out infinite alternate;
}

@keyframes funPop {
    0% { transform: translateY(0); }
    100% { transform: translateY(-2px); }
}
.btn-ochico {
    display: inline-block;
    padding: 14px 34px;
    font-size: 17px;
    font-weight: 600;
    color: #fff;
    text-decoration: none;
    background: linear-gradient(90deg, #ff403d, #e56148);
    border-radius: 40px;
    box-shadow: 0 0 18px rgb(230 30 30 / 45%);
    transition: .25s ease;
}

.btn-ochico:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 0 24px rgba(255, 136, 80, 0.65);
}
