/* Main Section Styling */
#conveniences {
    padding: 2rem 1rem;
    background-color: #f0f0f0;
    color: #E7CE79;
    overflow: hidden;
}

#conveniences h2 {
    font-family: 'Spectral', serif;
    font-weight: 700;
    font-size: 2.5rem;
    text-align: center;
    color: #E7CE79;
}

/* Convenience Categories Wrapper */
.convenience-container {
    overflow: hidden;
    position: relative;
    width: 100%;
}

.convenience-wrapper {
    display: flex;
    gap: 2rem;
    white-space: nowrap;
    will-change: transform;
    animation: scroll-left 15s linear infinite;
    animation-delay: 0.5s;
    width: calc(100% + 2000px);
}

@keyframes scroll-left {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-2000px);
    }
}

/* Convenience Categories */
.convenience-category {
    min-width: 300px;
    max-width: 300px;
    padding: 1.5rem;
    background-color: white;
    border-radius: 0.8rem;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
}

.convenience-category:hover {
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
}

.convenience-category .icon {
    font-size: 4rem;
    color: #E5BC5D;
    margin-bottom: 1rem;
}

.convenience-category h3 {
    font-family: 'Spectral', serif;
    font-weight: 700;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: #333;
}

.convenience-category ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
    font-size: 1rem;
    color: #666;
}

.convenience-category ul li {
    margin: .4rem 0;
}

@media (max-width: 960px) {
    .convenience-category ul li {
        margin: .5rem;
    }
}