/* Homepage Specific Styles */

header {
    height: var(--header-height);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 5%;
    position: sticky;
    top: 0;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(15px);
    z-index: 1000;
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

.logo-img {
    height: 48px;
    object-fit: contain;
    transition: var(--transition);
}

/* Banner Slider */
.slider-container {
    width: 100%;
    height: 450px;
    /* Increased for premium feel on desktop */
    overflow: hidden;
    position: relative;
}

@media (max-width: 768px) {
    .slider-container {
        height: 250px;
    }
}

.slider {
    display: flex;
    width: 300%;
    height: 100%;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.slide {
    width: 33.33%;
    height: 100%;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slide-content {
    background: rgba(0, 0, 0, 0.3);
    color: white;
    padding: 20px;
    border-radius: 12px;
    backdrop-filter: blur(5px);
    text-align: center;
}

/* Categories */
.categories {
    display: flex;
    justify-content: center;
    gap: 30px;
    padding: 40px 5%;
    background: var(--brand-black);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.cat-item {
    text-align: center;
    cursor: pointer;
}

.cat-circle {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background: var(--surface-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    color: var(--brand-gold);
    margin: 0 auto 15px;
    transition: var(--transition);
    border: 1px solid rgba(212, 175, 55, 0.1);
    box-shadow: var(--shadow-sm);
    -webkit-tap-highlight-color: transparent;
}

.cat-item:hover .cat-circle {
    background: var(--brand-gold);
    color: var(--brand-black);
    transform: translateY(-5px);
}

/* Delivery Message */
.delivery-bar {
    background: #fff8e6;
    color: #b08d00;
    text-align: center;
    padding: 15px;
    font-weight: 700;
    font-size: 0.95rem;
    border-top: 1px solid #ffecb3;
    border-bottom: 1px solid #ffecb3;
    letter-spacing: 0.2px;
}

/* Product Grid */
.product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    padding: 40px 5%;
}

.wide-banner {
    grid-column: 1 / -1;
    height: 200px;
    border-radius: var(--border-radius);
    margin: 20px 0;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    padding: 0 40px;
    color: white;
}

.wide-banner h2 {
    font-size: 2rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
}

@media (min-width: 769px) {
    header {
        display: none !important;
    }
}

@media (max-width: 1024px) {
    .product-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        padding: 20px 5%;
    }

    .wide-banner h2 {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .product-grid {
        gap: 10px;
    }

    .cat-circle {
        width: 65px;
        height: 65px;
        font-size: 24px;
    }

    .slide-content h2 {
        font-size: 2rem !important;
    }
}