/* ============================
   Random Banner Styles
============================ */
.banner-slide {
    height: 300px;
    background-size: cover;
    background-position: center;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
}

@media (min-width: 768px) {
    .banner-slide {
        height: 420px;
    }
}

.banner-content {
    color: #fff;
    text-shadow: 0 3px 10px rgba(0,0,0,0.7);
    animation: fadeUp 1s ease-out;
}

.banner-content h2 {
    font-size: 2rem;
    font-weight: 700;
}

.banner-content p {
    font-size: 1.1rem;
    margin-bottom: 10px;
}

@media (min-width: 768px) {
    .banner-content h2 { font-size: 3rem; }
    .banner-content p { font-size: 1.3rem; }
}

/* Fade-up animation */
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(25px); }
    to   { opacity: 1; transform: translateY(0); }
}



/* ============================
   Category Slider
============================ */
.category-scroll::-webkit-scrollbar {
    height: 6px;
}
.category-scroll::-webkit-scrollbar-thumb {
    background: #cfcfcf;
    border-radius: 20px;
}

.category-card {
    min-width: 130px;
    background: #f8f8f8;
}



/* ============================
   Product Cards
============================ */
.product-img {
    width: 100%;
    height: 160px;
    object-fit: cover;
}

.product-card:hover {
    transform: translateY(-4px);
    transition: 0.2s ease-out;
}
