﻿* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: #fffaf5;
    font-family: 'Poppins', sans-serif;
    color: #2d3436;
}

/* SkyIT Bar */
.skyit-bar {
    background: #2d3436;
    padding: 8px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    font-size: 0.8rem;
    color: #dfe6e9;
}

    .skyit-bar a {
        color: #74b9ff;
        text-decoration: none;
        margin-left: 15px;
    }

#app {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 5%;
}

/* Header */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    border-bottom: 1px solid #ffeaa7;
    flex-wrap: wrap;
    gap: 20px;
}

.logo h1 {
    font-family: 'Quicksand', sans-serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: #2d3436;
}

.logo span {
    color: #e17055;
}

.logo p {
    font-size: 0.75rem;
    color: #b2bec3;
    letter-spacing: 3px;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.cart-icon {
    position: relative;
    cursor: pointer;
    font-size: 1.3rem;
    color: #2d3436;
}

.cart-count {
    position: absolute;
    top: -10px;
    right: -12px;
    background: #e17055;
    color: white;
    font-size: 0.7rem;
    padding: 3px 7px;
    border-radius: 20px;
    font-weight: 600;
}

.order-btn {
    background: #e17055;
    color: white;
    border: none;
    padding: 12px 28px;
    border-radius: 40px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}

    .order-btn:hover {
        background: #d63031;
    }

/* Navigation */
.nav {
    display: flex;
    justify-content: center;
    gap: 40px;
    padding: 20px 0;
    flex-wrap: wrap;
}

    .nav a {
        text-decoration: none;
        color: #636e72;
        font-weight: 500;
        font-size: 0.95rem;
        padding-bottom: 5px;
        border-bottom: 2px solid transparent;
        transition: all 0.2s;
    }

        .nav a.active {
            color: #e17055;
            border-bottom-color: #e17055;
        }

/* Hero Section */
.hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    padding: 40px 0;
}

.hero-content h2 {
    font-family: 'Quicksand', sans-serif;
    font-size: 3.2rem;
    font-weight: 700;
    line-height: 1.2;
    color: #2d3436;
}

    .hero-content h2 span {
        color: #e17055;
    }

.hero-content p {
    color: #636e72;
    font-size: 1.1rem;
    margin: 20px 0 30px;
}

.hero-buttons {
    display: flex;
    gap: 15px;
}

.btn-primary {
    background: #e17055;
    color: white;
    border: none;
    padding: 14px 32px;
    border-radius: 40px;
    font-weight: 600;
    cursor: pointer;
}

.btn-secondary {
    background: transparent;
    border: 2px solid #e17055;
    color: #e17055;
    padding: 14px 32px;
    border-radius: 40px;
    font-weight: 600;
    cursor: pointer;
}

/* Hero Image - Using Real Juice Images from Unsplash */
.hero-image {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

    .hero-image img {
        width: 100%;
        height: 200px;
        object-fit: cover;
        border-radius: 20px;
        box-shadow: 0 15px 30px rgba(0,0,0,0.1);
    }

    .hero-image .img-large {
        grid-column: span 2;
        height: 180px;
    }

/* Category Pills */
.category-pills {
    display: flex;
    gap: 12px;
    margin: 30px 0;
    flex-wrap: wrap;
    justify-content: center;
}

.pill {
    padding: 10px 24px;
    background: white;
    border: 1px solid #ffeaa7;
    border-radius: 40px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
    color: #636e72;
}

    .pill:hover {
        border-color: #e17055;
    }

    .pill.active {
        background: #e17055;
        color: white;
        border-color: #e17055;
    }

/* Section Header */
.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 50px 0 25px;
}

    .section-header h3 {
        font-family: 'Quicksand', sans-serif;
        font-size: 2rem;
        font-weight: 600;
        color: #2d3436;
    }

        .section-header h3 i {
            color: #e17055;
            margin-right: 10px;
        }

    .section-header a {
        color: #e17055;
        text-decoration: none;
        font-weight: 500;
    }

/* Juice Grid */
.juice-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 25px;
}

.juice-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
    transition: all 0.3s;
    cursor: pointer;
}

    .juice-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 20px 40px rgba(225, 112, 85, 0.15);
    }

.juice-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.juice-info {
    padding: 20px;
}

.juice-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.juice-name {
    font-weight: 600;
    font-size: 1.1rem;
}

.juice-price {
    color: #e17055;
    font-weight: 700;
    font-size: 1.2rem;
}

.juice-desc {
    color: #b2bec3;
    font-size: 0.85rem;
    margin-bottom: 12px;
}

.juice-tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 15px;
}

.tag {
    background: #fdcb6e20;
    color: #e17055;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 500;
}

.add-juice {
    width: 100%;
    padding: 12px;
    background: #fdcb6e20;
    border: none;
    color: #e17055;
    font-weight: 600;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.2s;
}

    .add-juice:hover {
        background: #e17055;
        color: white;
    }

/* Benefits Section */
.benefits {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin: 50px 0;
}

.benefit-card {
    text-align: center;
    padding: 30px 20px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.03);
}

    .benefit-card i {
        font-size: 2.5rem;
        color: #e17055;
        margin-bottom: 15px;
    }

    .benefit-card h4 {
        font-weight: 600;
        margin-bottom: 10px;
    }

    .benefit-card p {
        color: #b2bec3;
        font-size: 0.9rem;
    }

/* Cleanse Banner */
.cleanse-banner {
    background: linear-gradient(135deg, #ffeaa7, #fab1a0);
    border-radius: 30px;
    padding: 40px;
    margin: 40px 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
}

.cleanse-content h3 {
    font-family: 'Quicksand', sans-serif;
    font-size: 2.2rem;
    margin-bottom: 15px;
}

.cleanse-content p {
    color: #2d3436;
    margin-bottom: 25px;
}

.cleanse-image img {
    width: 100%;
    max-width: 400px;
    border-radius: 20px;
}

/* Instagram Feed */
.insta-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    margin: 30px 0;
}

.insta-item {
    aspect-ratio: 1;
    border-radius: 20px;
    overflow: hidden;
}

    .insta-item img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.3s;
    }

    .insta-item:hover img {
        transform: scale(1.05);
    }

/* Footer */
.footer {
    background: #2d3436;
    color: #dfe6e9;
    margin-top: 60px;
    padding: 50px 5%;
    border-radius: 30px 30px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    max-width: 1400px;
    margin: 0 auto;
}

.footer-col h4 {
    color: white;
    margin-bottom: 20px;
    font-family: 'Quicksand', sans-serif;
}

.footer-col ul {
    list-style: none;
}

.footer-col li {
    margin: 10px 0;
}

.footer-col a {
    color: #b2bec3;
    text-decoration: none;
}

.newsletter-box {
    display: flex;
    margin-top: 15px;
}

    .newsletter-box input {
        flex: 1;
        padding: 12px;
        background: #636e72;
        border: none;
        color: white;
        border-radius: 30px 0 0 30px;
        outline: none;
    }

    .newsletter-box button {
        background: #e17055;
        color: white;
        border: none;
        padding: 0 25px;
        border-radius: 0 30px 30px 0;
        cursor: pointer;
    }

.footer-bottom {
    grid-column: 1 / -1;
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid #636e72;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

    .footer-bottom i {
        color: #e17055;
        margin-right: 8px;
    }

/* Responsive */
@media (max-width: 900px) {
    .hero {
        grid-template-columns: 1fr;
    }

    .benefits {
        grid-template-columns: repeat(2, 1fr);
    }

    .cleanse-banner {
        grid-template-columns: 1fr;
    }

    .insta-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 600px) {
    .nav {
        gap: 20px;
    }

    .hero-content h2 {
        font-size: 2.5rem;
    }

    .benefits {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .juice-grid {
        grid-template-columns: 1fr;
    }

    .hero-image {
        grid-template-columns: 1fr;
    }

        .hero-image .img-large {
            grid-column: span 1;
        }
}
