/* Coverage Section Styles */
.coverage-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.coverage-content {
    text-align: center;
    display:flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.coverage-header {
    margin-bottom: 60px;
}
.coverage-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
    line-height: 1.2;
}

.coverage-subtitle {
    font-size: 1.2rem;
    color: #666;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

.coverage-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.store-item {
    background-color: #ffffff;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    width: 100%;
    max-width: 147px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

/* Hover state removed */

.store-link {
    display: block;
    width: 100%;
    height: 100%;
    text-decoration: none;
}

.store-logo {
    max-width: 100%;
    max-height: 80px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: grayscale(100%);
    transition: all 0.3s ease;
}

/* Hover state removed */
.coverage-link {
    margin-top: 30px;
}
/* Responsive Design */
@media (max-width: 1200px) {
    .coverage-grid {
        gap: 25px;
    }
    
    .store-item {

        padding: 15px;
    }
    
    .store-logo {
        max-height: 70px;
    }
}

@media (max-width: 768px) {
    .coverage-section {
        padding: 60px 0;
    }
    
    .coverage-title {
        font-size: 2rem;
    }
    
    .coverage-subtitle {
        font-size: 1.1rem;
    }
    
    .coverage-grid {
        gap: 20px;
    }
    
    .store-item {
        height: 90px;
        padding: 12px;
    }
    
    .store-logo {
        max-height: 60px;
    }
}

@media (max-width: 480px) {
    .coverage-title {
        font-size: 1.8rem;
    }
    
    .coverage-subtitle {
        font-size: 1rem;
    }
    
    .coverage-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    .store-item:last-child {
        grid-column: span 2;
    }
    
    .store-item {
        height: 80px;
        padding: 10px;
        width: 100%;
        max-width: 100%;
        
    }
    
    .store-logo {
        max-height: 50px;
    }
}


/* Focus styles for accessibility */
.store-link:focus {
    outline: 2px solid var(--color-primary, #007cba);
    outline-offset: 2px;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .store-item {
        border: 2px solid #333;
    }
    
    .store-logo {
        filter: none;
    }
}

