.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.section-title {
    text-align: center;
    margin-bottom: 40px;
}

.section-title h2 {
    font-size: 32px;
    margin-bottom: 15px;
    color: #333;
}

.section-description {
    max-width: 700px;
    margin: 0 auto;
    color: #666;
}

/* Exclusive Promos Section */
.exclusive-promos {
    padding: 60px 0;
    background: #f8f9fa;
}

.promo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.promo-card {
    text-align: center;
    padding: 30px 20px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.promo-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0,0,0,0.15);
}

.promo-icon {
    font-size: 40px;
    color: #004AAD;
    margin-bottom: 15px;
}

.promo-title {
    font-size: 20px;
    margin-bottom: 10px;
    color: #333;
}

.promo-desc {
    color: #666;
    font-size: 16px;
}

/* Grid Layout */
.grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
    gap: 10px;
    margin: 0px 0;
}

/* Featerd Stores Section Styles */
.top-banner {
    background: linear-gradient(to right, #004AAD, #326EBD);
    color: white;
    padding: 20px 30px;
    font-size: 2em;
    font-weight: bold;
    border-radius: 6px 6px 0 0;
    margin-top: 40px;
}

.store-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 20px;
}

.featured-stores {
    flex: 1;
    width: 100%;
    background-color: #99b6de;
    padding: 30px;
    border-radius: 6px;
}

.featured-stores h2 {
    font-size: 2em;
    margin-bottom: 10px;
}

.featured-stores p {
    margin: 10px 0 20px;
    font-size: 1.1em;
    color: #333;
    line-height: 1.4;
}

.featured-stores button {
    padding: 10px 20px;
    background: transparent;
    border: 2px solid #000;
    font-size: 1em;
    cursor: pointer;
    transition: all 0.3s ease;
}

.featured-stores button:hover {
    background: #000;
    color: #fff;
}

.latest-stores {
    flex: 2.5;
    width: 100%;
}

.latest-header {
    display: flex;
    justify-content: space-between;
    font-weight: bold;
    margin-bottom: 15px;
    padding-right: 10px;
}

.latest-header a {
    color: #0668B3;
    text-decoration: none;
}

.slider-wrapper {
    position: relative;
    overflow: hidden;
}

.slider-track {
    display: flex;
    transition: transform 0.5s ease;
}

.store-card {
    background: white;
    border: 1px solid #eee;
    border-radius: 4px;
    text-align: center;
    width: 100%;
    flex-shrink: 0;
    box-shadow: 0 0 5px rgba(0,0,0,0.05);
    margin-right: 20px;
    transition: transform 0.3s ease;
}

.store-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.store-card img {
    max-width: 100%;
    padding: 20px;
    height: 100px;
    object-fit: contain;
}

.store-name {
    padding: 15px;
    font-weight: bold;
    background: #fafafa;
    border-top: 1px solid #eee;
}

.slider-controls {
    display: flex;
    justify-content: center;
    margin-top: 15px;
    gap: 10px;
}

.slider-controls button {
    padding: 8px 15px;
    cursor: pointer;
    border: none;
    background: #4c80c5;
    color: #fff;
    font-weight: bold;
    border-radius: 4px;
    transition: background 0.3s ease;
}

.slider-controls button:hover {
    background: #004aad;
}

/* Category Card Styles */
.category-card {
    text-align: center;
    padding: 30px 20px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0,0,0,0.15);
}

.category-icon {
    font-size: 40px;
    color: #004aad;
    margin-bottom: 15px;
}

.card-title {
    font-size: 18px;
    margin-bottom: 10px;
    color: #333;
}


.top-stores-section {
    padding: 30px 0;
    background: #e5ecf6;
}

.store-card a {
    color: #3a4f66;
}

.categories-section {
    padding: 30px 0;
    background: #b2c8e6;
}

.categories-section .container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.category-card h3 {
    margin-bottom: 10px;
    color: #1E293B;
}

.category-card p {
    color: #64748B;
    font-size: 0.9rem;
}

/* Responsive Adjustments */
@media (min-width: 992px) {
    .store-card {
        width: calc((100% - 40px) / 3);
    }
}

@media (max-width: 991px) and (min-width: 768px) {
    .store-card {
        width: calc((100% - 20px) / 2);
    }
}

@media (max-width: 767px) {
    .store-container {
        flex-direction: column;
    }

    .featured-stores {
        text-align: center;
    }

    .slider-track {
        gap: 10px;
    }

    .store-card {
        width: 100%;
        margin-right: 0;
    }

    .slider-controls {
        justify-content: center;
    }

    .grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    }
}

@media (max-width: 768px) {
    .category-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .categories-section {
        padding: 60px 0;
    }
}

@media (max-width: 480px) {
    .category-grid {
        grid-template-columns: 1fr;
    }
}
