﻿* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Plus Jakarta Sans', 'Inter', sans-serif;
}

body {
    background: #ffffff;
    color: #1a1a1a;
}

.skyit-bar {
    background: #1a1a2e;
    padding: 8px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    font-size: 0.8rem;
    color: #e0d5c0;
}

    .skyit-bar a {
        color: #c4a882;
        text-decoration: none;
        margin-left: 15px;
    }

.shipping-banner {
    background: #f5f0eb;
    text-align: center;
    padding: 10px;
    font-size: 0.85rem;
}

#app {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 5%;
}

.header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 30px 0;
    border-bottom: 1px solid #eee;
    flex-wrap: wrap;
    gap: 20px;
}

.logo {
    font-size: 2rem;
    font-weight: 300;
}

    .logo strong {
        font-weight: 700;
        color: #8b7355;
    }

.header-right {
    display: flex;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}

.search-wrapper {
    position: relative;
}

    .search-wrapper i {
        position: absolute;
        left: 15px;
        top: 50%;
        transform: translateY(-50%);
        color: #999;
    }

    .search-wrapper input {
        padding: 12px 20px 12px 45px;
        border: 1px solid #e0e0e0;
        border-radius: 30px;
        width: 280px;
        font-size: 0.9rem;
        outline: none;
    }

.header-icons {
    display: flex;
    gap: 20px;
}

    .header-icons a {
        color: #1a1a1a;
        text-decoration: none;
        font-size: 1.2rem;
        position: relative;
    }

.cart-badge {
    position: absolute;
    top: -8px;
    right: -10px;
    background: #8b7355;
    color: white;
    font-size: 0.65rem;
    padding: 3px 7px;
    border-radius: 20px;
}

.nav {
    display: flex;
    justify-content: center;
    gap: 50px;
    padding: 20px 0;
    flex-wrap: wrap;
}

    .nav a {
        text-decoration: none;
        color: #666;
        font-weight: 500;
        font-size: 0.9rem;
        text-transform: uppercase;
        letter-spacing: 1px;
    }

        .nav a.active {
            color: #1a1a1a;
            border-bottom: 2px solid #8b7355;
        }

.hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 20px;
    margin: 30px 0;
}

.hero-main {
    background: linear-gradient(135deg, #faf6f0 0%, #efe5d9 100%);
    border-radius: 30px;
    padding: 60px 50px;
}

    .hero-main h1 {
        font-size: 3.5rem;
        font-weight: 300;
        line-height: 1.2;
    }

        .hero-main h1 strong {
            font-weight: 700;
            color: #8b7355;
        }

.btn {
    background: #1a1a1a;
    color: white;
    border: none;
    padding: 14px 35px;
    border-radius: 40px;
    font-weight: 500;
    cursor: pointer;
}

.hero-secondary {
    background: #e8e0d5;
    border-radius: 30px;
    padding: 40px;
    background-size: cover;
    background-position: center;
}

.category-scroll {
    display: flex;
    gap: 12px;
    margin: 40px 0;
    overflow-x: auto;
    padding-bottom: 10px;
}

.category-pill {
    padding: 10px 24px;
    background: #f5f5f5;
    border-radius: 40px;
    font-size: 0.9rem;
    font-weight: 500;
    white-space: nowrap;
    cursor: pointer;
}

    .category-pill.active {
        background: #1a1a1a;
        color: white;
    }

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin: 50px 0 25px;
}

    .section-header h2 {
        font-size: 1.8rem;
        font-weight: 300;
    }

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 30px;
}

.product-card {
    cursor: pointer;
    transition: transform 0.3s;
}

    .product-card:hover {
        transform: translateY(-5px);
    }

.product-image {
    aspect-ratio: 3/4;
    background: #f8f6f3;
    border-radius: 20px;
    margin-bottom: 15px;
    overflow: hidden;
    position: relative;
}

    .product-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.quick-add {
    position: absolute;
    bottom: -50px;
    left: 0;
    right: 0;
    background: rgba(255,255,255,0.95);
    padding: 12px;
    text-align: center;
    font-weight: 500;
    transition: bottom 0.3s;
    border: none;
    cursor: pointer;
}

.product-card:hover .quick-add {
    bottom: 0;
}

.product-brand {
    font-size: 0.8rem;
    color: #999;
    text-transform: uppercase;
}

.product-name {
    font-weight: 500;
    margin: 5px 0;
}

.product-price {
    font-weight: 600;
}

.footer {
    background: #1a1a1a;
    color: #e0e0e0;
    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;
}

.footer-col ul {
    list-style: none;
}

.footer-col a {
    color: #b0b0b0;
    text-decoration: none;
}

.footer-bottom {
    grid-column: 1 / -1;
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid #333;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

@media (max-width: 900px) {
    .hero-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .header {
        flex-direction: column;
    }

    .search-wrapper {
        width: 100%;
    }

        .search-wrapper input {
            width: 100%;
        }
}

@media (max-width: 600px) {
    .nav {
        gap: 25px;
    }

    .hero-main {
        padding: 40px 25px;
    }

        .hero-main h1 {
            font-size: 2.5rem;
        }

    .product-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 400px) {
    .product-grid {
        grid-template-columns: 1fr;
    }
}
