@import url('https://fonts.googleapis.com/css2?family=Pacifico&family=Poppins:wght@300;400;500;600;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(135deg, #1a2f1a 0%, #0d170d 100%);
    color: #f0fff0;
    min-height: 100vh;
    line-height: 1.75;
}

.fruit-header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(13, 23, 13, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 3px solid #ff6b35;
}

.header-flex {
    max-width: 1500px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 28px;
}

.fruit-logo {
    font-family: 'Pacifico', cursive;
    font-size: 2rem;
    color: #ff6b35;
    text-decoration: none;
    text-shadow: 2px 2px 0 #cc5529;
}

.fruit-nav ul {
    display: flex;
    gap: 35px;
    list-style: none;
}

.fruit-nav a {
    color: #c5e8c5;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: color 0.3s;
}

.fruit-nav a:hover {
    color: #ff6b35;
}

.juice-toggle {
    display: none;
    cursor: pointer;
    padding: 5px;
}

.juice-toggle span {
    display: block;
    width: 28px;
    height: 3px;
    background: #ff6b35;
    margin: 5px 0;
    border-radius: 2px;
    transition: 0.3s;
}

.juice-toggle.squeezed span:first-child {
    transform: rotate(45deg) translate(5px, 5px);
}

.juice-toggle.squeezed span:nth-child(2) {
    opacity: 0;
}

.juice-toggle.squeezed span:last-child {
    transform: rotate(-45deg) translate(6px, -6px);
}

.main-area {
    padding-top: 88px;
}

.fresh-intro {
    padding: 95px 28px;
    text-align: center;
    background: 
        radial-gradient(circle at 30% 40%, rgba(255, 107, 53, 0.12) 0%, transparent 45%),
        radial-gradient(circle at 70% 60%, rgba(76, 175, 80, 0.1) 0%, transparent 40%);
}

.fresh-intro h1 {
    font-family: 'Pacifico', cursive;
    font-size: 3.8rem;
    color: #ff6b35;
    margin-bottom: 28px;
    text-shadow: 3px 3px 0 #cc5529;
}

.intro-blurb {
    font-size: 1.2rem;
    color: #c5e8c5;
    max-width: 780px;
    margin: 0 auto 45px;
}

.fresh-badges {
    display: flex;
    justify-content: center;
    gap: 22px;
    flex-wrap: wrap;
}

.fresh-badge {
    background: rgba(255, 107, 53, 0.15);
    border: 2px solid #ff6b35;
    padding: 14px 26px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
}

.fresh-badge span {
    margin-right: 10px;
}

.slot-garden {
    padding: 75px 28px;
    max-width: 1200px;
    margin: 0 auto;
}

.garden-title {
    font-family: 'Pacifico', cursive;
    font-size: 2.4rem;
    text-align: center;
    color: #ff6b35;
    margin-bottom: 45px;
}

.garden-box {
    background: linear-gradient(145deg, #1f3d1f, #1a2f1a);
    border-radius: 25px;
    padding: 28px;
    border: 3px solid rgba(255, 107, 53, 0.3);
    box-shadow: 0 0 50px rgba(255, 107, 53, 0.15);
}

.garden-frame {
    width: 100%;
    height: 560px;
    border: none;
    border-radius: 15px;
}

.juicy-features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
    max-width: 1500px;
    margin: 0 auto;
    padding: 75px 28px;
}

.juicy-card {
    background: rgba(31, 61, 31, 0.8);
    padding: 38px 25px;
    border-radius: 20px;
    text-align: center;
    border-bottom: 4px solid #ff6b35;
    transition: transform 0.3s;
}

.juicy-card:hover {
    transform: translateY(-8px);
}

.juicy-icon {
    font-size: 3.5rem;
    margin-bottom: 18px;
}

.juicy-card h3 {
    font-family: 'Pacifico', cursive;
    color: #ff6b35;
    font-size: 1.3rem;
    margin-bottom: 12px;
}

.juicy-card p {
    color: #a8d4a8;
    font-size: 0.95rem;
}

.info-baskets {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 38px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 50px 28px;
}

.info-basket {
    background: rgba(26, 47, 26, 0.9);
    padding: 40px;
    border-radius: 18px;
    border-left: 5px solid #ff6b35;
}

.info-basket h3 {
    font-family: 'Pacifico', cursive;
    color: #ff6b35;
    font-size: 1.4rem;
    margin-bottom: 16px;
}

.info-basket p {
    color: #a8d4a8;
    line-height: 1.9;
}

.orchard-footer {
    background: #091009;
    padding: 58px 28px 32px;
    margin-top: 85px;
}

.footer-orchard {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.help-basket {
    margin-bottom: 38px;
}

.help-basket h4 {
    font-family: 'Pacifico', cursive;
    color: #ff6b35;
    font-size: 1.2rem;
    margin-bottom: 18px;
}

.help-basket a {
    color: #a8d4a8;
    margin: 0 20px;
    text-decoration: none;
    transition: color 0.3s;
}

.help-basket a:hover {
    color: #ff6b35;
}

.footer-nav {
    margin-bottom: 28px;
}

.footer-nav a {
    color: #5a8a5a;
    text-decoration: none;
    margin: 0 15px;
    font-size: 0.9rem;
    transition: color 0.3s;
}

.footer-nav a:hover {
    color: #ff6b35;
}

.footer-legal {
    color: #3a5a3a;
    font-size: 0.85rem;
}

.age-basket {
    position: fixed;
    inset: 0;
    background: rgba(9, 16, 9, 0.98);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.age-basket.picked {
    display: none;
}

.basket-card {
    background: linear-gradient(145deg, #1f3d1f, #1a2f1a);
    padding: 52px;
    border-radius: 25px;
    text-align: center;
    max-width: 510px;
    border: 3px solid #ff6b35;
    box-shadow: 0 0 70px rgba(255, 107, 53, 0.3);
}

.basket-card h2 {
    font-family: 'Pacifico', cursive;
    color: #ff6b35;
    font-size: 1.9rem;
    margin-bottom: 24px;
}

.basket-card p {
    color: #a8d4a8;
    margin-bottom: 15px;
    line-height: 1.8;
}

.basket-card .ripe {
    color: #ff6b35;
    font-weight: 700;
}

.basket-buttons {
    margin-top: 35px;
    display: flex;
    gap: 20px;
    justify-content: center;
}

.basket-btn {
    padding: 15px 42px;
    border-radius: 25px;
    font-family: 'Pacifico', cursive;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s;
    border: none;
}

.basket-btn.ripe {
    background: linear-gradient(135deg, #ff6b35, #cc5529);
    color: #fff;
}

.basket-btn.unripe {
    background: transparent;
    border: 2px solid #5a8a5a;
    color: #a8d4a8;
}

.basket-btn:hover {
    transform: scale(1.05);
}

.inner-top {
    padding: 125px 28px 58px;
    text-align: center;
    background: radial-gradient(ellipse at top, rgba(255, 107, 53, 0.12) 0%, transparent 55%);
}

.inner-top h1 {
    font-family: 'Pacifico', cursive;
    font-size: 2.8rem;
    color: #ff6b35;
}

.page-body {
    max-width: 900px;
    margin: 0 auto;
    padding: 52px 28px;
}

.page-body h2 {
    font-family: 'Pacifico', cursive;
    color: #ff6b35;
    font-size: 1.5rem;
    margin: 45px 0 18px;
}

.page-body h2:first-of-type {
    margin-top: 0;
}

.page-body p {
    color: #a8d4a8;
    margin-bottom: 16px;
}

.page-body ul {
    color: #a8d4a8;
    margin: 18px 0;
    padding-left: 28px;
}

.page-body li {
    margin-bottom: 12px;
}

.tip-basket {
    background: rgba(255, 107, 53, 0.12);
    border-left: 4px solid #ff6b35;
    padding: 24px;
    border-radius: 12px;
    margin-bottom: 40px;
}

@media (max-width: 1024px) {
    .juicy-features {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .info-baskets {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .juice-toggle {
        display: block;
    }

    .fruit-nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #0d170d;
        padding: 25px;
        display: none;
        border-bottom: 3px solid #ff6b35;
    }

    .fruit-nav.fresh {
        display: block;
    }

    .fruit-nav ul {
        flex-direction: column;
        gap: 18px;
    }

    .fresh-intro h1 {
        font-size: 2.4rem;
    }

    .fresh-badges {
        flex-direction: column;
        align-items: center;
    }

    .garden-frame {
        height: 390px;
    }

    .juicy-features {
        grid-template-columns: 1fr;
    }

    .basket-card {
        margin: 20px;
        padding: 38px 25px;
    }

    .basket-buttons {
        flex-direction: column;
    }
}
