@import url('https://fonts.googleapis.com/css2?family=Baloo+2:wght@500;700;800&family=DM+Sans:wght@400;500;600&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --cherry: #ef4444;
    --lime: #84cc16;
    --orange: #f97316;
    --grape: #8b5cf6;
    --bg-dark: #1c1917;
    --bg-card: #292524;
    --text-light: #fafaf9;
    --text-dim: #a8a29e;
}

body {
    font-family: 'DM Sans', sans-serif;
    background: var(--bg-dark);
    color: var(--text-light);
    line-height: 1.7;
}

h1, h2, h3 {
    font-family: 'Baloo 2', cursive;
    font-weight: 700;
}

.fruit-header {
    background: var(--bg-card);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    border-bottom: 3px solid var(--lime);
}

.fruit-header-inner {
    max-width: 1500px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 28px;
}

.fruit-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.fruit-logo {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--cherry), var(--orange));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
}

.fruit-name {
    font-family: 'Baloo 2', cursive;
    font-size: 1.7rem;
    color: var(--lime);
    font-weight: 800;
}

.fruit-nav {
    display: flex;
    gap: 38px;
}

.fruit-nav a {
    color: var(--text-dim);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

.fruit-nav a:hover {
    color: var(--lime);
}

.juice-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
}

.juice-btn span {
    display: block;
    width: 26px;
    height: 3px;
    background: var(--lime);
    margin: 5px 0;
    border-radius: 3px;
    transition: 0.3s;
}

.juice-menu {
    display: none;
    position: fixed;
    top: 78px;
    left: 0;
    right: 0;
    background: var(--bg-dark);
    border-bottom: 3px solid var(--orange);
    padding: 20px;
}

.juice-menu.blended {
    display: block;
}

.juice-menu a {
    display: block;
    color: var(--text-light);
    text-decoration: none;
    padding: 14px;
    font-size: 1.1rem;
    border-bottom: 1px solid rgba(132, 204, 22, 0.2);
    font-weight: 600;
}

.orchard {
    margin-top: 78px;
}

.harvest-hero {
    background: linear-gradient(180deg, var(--bg-card) 0%, var(--bg-dark) 100%);
    padding: 95px 28px 80px;
    text-align: center;
    border-bottom: 4px solid var(--orange);
}

.harvest-hero h1 {
    font-size: clamp(2.3rem, 6vw, 4rem);
    margin-bottom: 22px;
    background: linear-gradient(90deg, var(--cherry), var(--orange), var(--lime));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.harvest-hero p {
    font-size: 1.2rem;
    max-width: 720px;
    margin: 0 auto 38px;
    color: var(--text-dim);
}

.fresh-labels {
    display: flex;
    justify-content: center;
    gap: 22px;
    flex-wrap: wrap;
}

.fresh-label {
    background: var(--bg-card);
    padding: 14px 26px;
    border-radius: 30px;
    border: 2px solid var(--lime);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
}

.label-fruit {
    font-size: 1.4rem;
}

.slot-grove {
    padding: 65px 28px;
}

.slot-grove h2 {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 42px;
    color: var(--orange);
}

.slot-basket {
    max-width: 1080px;
    margin: 0 auto;
    background: var(--bg-card);
    border-radius: 24px;
    overflow: hidden;
    border: 4px solid var(--cherry);
    box-shadow: 0 15px 50px rgba(239, 68, 68, 0.2);
}

.slot-basket iframe {
    width: 100%;
    height: 565px;
    border: none;
    display: block;
}

.vitamin-section {
    padding: 75px 28px;
    background: var(--bg-card);
}

.vitamin-section h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 50px;
    color: var(--lime);
}

.vitamin-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
    gap: 28px;
    max-width: 1320px;
    margin: 0 auto;
}

.vitamin-card {
    background: var(--bg-dark);
    padding: 36px;
    border-radius: 20px;
    text-align: center;
    border-top: 4px solid var(--orange);
    transition: transform 0.3s;
}

.vitamin-card:hover {
    transform: translateY(-6px);
}

.vitamin-icon {
    font-size: 3.2rem;
    margin-bottom: 18px;
}

.vitamin-card h3 {
    color: var(--cherry);
    font-size: 1.4rem;
    margin-bottom: 14px;
}

.vitamin-card p {
    color: var(--text-dim);
}

.smoothie-boxes {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    max-width: 1120px;
    margin: 0 auto;
    padding: 60px 28px;
}

.smoothie-box {
    background: var(--bg-card);
    padding: 32px;
    border-radius: 16px;
    border-left: 5px solid var(--grape);
}

.smoothie-box h3 {
    color: var(--lime);
    margin-bottom: 14px;
    font-size: 1.35rem;
}

.smoothie-box p {
    color: var(--text-dim);
}

.garden-footer {
    background: var(--bg-card);
    padding: 55px 28px;
    border-top: 3px solid var(--lime);
}

.garden-footer-inner {
    max-width: 1120px;
    margin: 0 auto;
    text-align: center;
}

.garden-links {
    display: flex;
    justify-content: center;
    gap: 36px;
    margin-bottom: 32px;
    flex-wrap: wrap;
}

.garden-links a {
    color: var(--text-dim);
    text-decoration: none;
    font-weight: 600;
}

.garden-links a:hover {
    color: var(--lime);
}

.care-section {
    margin-top: 32px;
    padding-top: 32px;
    border-top: 1px solid rgba(132, 204, 22, 0.3);
}

.care-section p {
    color: var(--text-dim);
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.care-links {
    display: flex;
    justify-content: center;
    gap: 28px;
    flex-wrap: wrap;
}

.care-links a {
    color: var(--orange);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
}

.garden-copy {
    margin-top: 28px;
    color: var(--text-dim);
    font-size: 0.85rem;
}

.ripe-check {
    position: fixed;
    inset: 0;
    background: rgba(28, 25, 23, 0.98);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.ripe-check.picked {
    display: none;
}

.ripe-box {
    background: linear-gradient(145deg, var(--bg-card), var(--bg-dark));
    padding: 52px 42px;
    border-radius: 28px;
    text-align: center;
    max-width: 460px;
    margin: 20px;
    border: 3px solid var(--lime);
    box-shadow: 0 20px 60px rgba(132, 204, 22, 0.2);
}

.ripe-icon {
    font-size: 5rem;
    margin-bottom: 22px;
}

.ripe-box h2 {
    font-size: 2rem;
    margin-bottom: 16px;
    color: var(--orange);
}

.ripe-box p {
    color: var(--text-dim);
    margin-bottom: 28px;
}

.ripe-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
}

.btn-fresh {
    padding: 15px 38px;
    border-radius: 30px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    font-family: 'DM Sans', sans-serif;
    border: none;
}

.btn-green {
    background: linear-gradient(135deg, var(--lime), #65a30d);
    color: var(--bg-dark);
}

.btn-green:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 28px rgba(132, 204, 22, 0.4);
}

.btn-plain {
    background: transparent;
    border: 2px solid var(--text-dim);
    color: var(--text-dim);
}

.btn-plain:hover {
    border-color: var(--text-light);
    color: var(--text-light);
}

.produce-header {
    background: var(--bg-card);
    padding: 135px 28px 58px;
    text-align: center;
    border-bottom: 4px solid var(--orange);
}

.produce-header h1 {
    font-size: clamp(2rem, 5vw, 3rem);
    color: var(--lime);
}

.recipe-content {
    padding: 55px 28px;
    max-width: 900px;
    margin: 0 auto;
}

.recipe-content h2 {
    color: var(--orange);
    margin: 38px 0 18px;
    font-size: 1.5rem;
}

.recipe-content p {
    color: var(--text-dim);
    margin-bottom: 18px;
}

.recipe-content ul {
    color: var(--text-dim);
    margin: 18px 0 18px 28px;
}

.recipe-content li {
    margin-bottom: 10px;
}

@media (max-width: 768px) {
    .fruit-nav {
        display: none;
    }
    
    .juice-btn {
        display: block;
    }
    
    .slot-basket iframe {
        height: 380px;
    }
    
    .harvest-hero {
        padding: 65px 20px 55px;
    }
    
    .fresh-labels {
        flex-direction: column;
        align-items: center;
    }
    
    .ripe-buttons {
        flex-direction: column;
    }
}
