/* Shipping Locations Styles */
.shipping-locations-section {
    padding: 80px 0;
    background-color: #f8f8f8;
}

.shipping-locations-section .container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
.shipping-locations-header {
    text-align: center;
    margin-bottom: 60px;
}

.shipping-locations-header h2 {
    font-size: 36px;
    font-weight: 700;
    margin: 0 0 15px 0;
    color: #333;
}

.shipping-locations-header .sub-header {
    font-size: 18px;
    color: #666;
    margin: 0;
}

/* Grid Layout */
.shipping-locations-grid {
    background: #ffffff;
    border-radius: 10px;
    padding: 40px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    text-align: center;
}

.flag-row {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 30px;
}

.flag-item {
    flex: 0 0 auto;
    width: calc(12.5% - 30px);
    min-width: 80px;
}

.flag-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
}

.flag-inner:hover {
    transform: translateY(-5px);
    text-decoration: none !important;
}

.shipping-locations-section a.flag-inner {
    text-decoration: none;
    border-bottom: none;
}

.flag-inner img {
    width: 60px;
    height: 40px;
    object-fit: cover;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    margin-bottom: 10px;
}

.country-name {
    font-size: 16px;
    color: #666;
    text-align: center;
}

/* Button Styles */
.view-locations-button {
    margin-top: 40px;
    display: none; /* Hide the Our Locations button */
}

.view-locations-link {
    display: inline-block;
    padding: 12px 30px;
    background-color: transparent;
    color: #333;
    border: 1px solid #ccc;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
}

.view-locations-link:hover {
    background-color: #f0f0f0;
    border-color: #999;
}

/* No Locations Message */
.no-locations {
    padding: 20px;
    color: #666;
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .flag-item {
        width: calc(12.5% - 20px);
    }
    
    .flag-row {
        gap: 20px;
    }
}

@media (max-width: 992px) {
    .flag-item {
        width: calc(25% - 20px);
    }
    
    .flag-row:nth-child(1) {
        margin-bottom: 20px;
    }
    
    .flag-row:nth-child(2) {
        margin-bottom: 30px;
    }
}

@media (max-width: 768px) {
    .shipping-locations-section {
        padding: 60px 0;
    }
    
    .shipping-locations-header h2 {
        font-size: 30px;
    }
    
    .shipping-locations-header .sub-header {
        font-size: 16px;
    }
    
    .shipping-locations-grid {
        padding: 30px 20px;
    }
    
    .flag-item {
        width: calc(33.333% - 20px);
    }
}

@media (max-width: 480px) {
    .shipping-locations-section {
        padding: 40px 0;
    }
    
    .shipping-locations-header h2 {
        font-size: 24px;
    }
    
    .flag-item {
        width: calc(50% - 10px);
    }
    
    .flag-row {
        gap: 10px;
        margin-bottom: 10px;
    }
} 