/* ==========================================================================
   Stores Section Styles - Modern, Responsive & Professional
   ========================================================================== */
.stores-section {
    padding: 75px 0 70px;
    background: #ffffff;
    font-family: 'Poppins', sans-serif;
    position: relative;
    border-top: 1px solid #f1f5f9;
}

.stores-section .stores-header-wrap {
    text-align: center;
    max-width: 750px;
    margin: 0 auto 40px;
    padding: 0 16px;
}

.stores-section .section-title {
    text-align: center;
    font-size: 2.3rem;
    font-weight: 800;
    margin-bottom: 8px;
    color: #1e293b;
    letter-spacing: -0.5px;
    line-height: 1.25;
}

.stores-section .section-title span {
    background: linear-gradient(135deg, #5682B1 0%, #3b82f6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stores-section .section-subtitle {
    text-align: center;
    font-size: 0.98rem;
    color: #64748b;
    line-height: 1.6;
    margin: 0 auto;
}

.stores-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.store-card {
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    border: 1px solid #e2e8f0;
    display: flex;
    flex-direction: column;
    position: relative;
}

.store-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 35px rgba(86, 130, 177, 0.16);
    border-color: #cbd5e1;
}

.store-image {
    position: relative;
    height: 220px;
    overflow: hidden;
    background: #f8fafc;
}

.store-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.store-card:hover .store-image img {
    transform: scale(1.06);
}

.store-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 23, 42, 0.65);
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.store-card:hover .store-overlay {
    opacity: 1;
}

.store-direction {
    color: white;
    text-decoration: none;
    padding: 11px 22px;
    background: linear-gradient(135deg, #5682B1 0%, #3b82f6 100%);
    border-radius: 30px;
    font-size: 0.88rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 6px 16px rgba(59, 130, 246, 0.35);
}

.store-direction:hover {
    transform: scale(1.05);
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
}

.store-info {
    padding: 22px 20px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.store-info h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: #1e293b;
    line-height: 1.3;
}

.store-location, .store-phone {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 10px;
    color: #64748b;
    font-size: 0.88rem;
    line-height: 1.45;
}

.store-location i, .store-phone i {
    color: #5682B1;
    font-size: 0.95rem;
    margin-top: 3px;
    flex-shrink: 0;
}

.store-phone a {
    color: #1e293b;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.25s ease;
}

.store-phone a:hover {
    color: #5682B1;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .stores-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .stores-section {
        padding: 38px 0 32px;
    }

    .stores-section .stores-header-wrap {
        margin-bottom: 22px;
    }

    .stores-section .section-title {
        font-size: 1.6rem;
    }

    .stores-section .section-subtitle {
        font-size: 0.84rem;
    }

    .stores-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .store-image {
        height: 180px;
    }

    .store-info {
        padding: 16px 16px 14px;
    }

    .store-info h3 {
        font-size: 1.12rem;
        margin-bottom: 8px;
    }

    .store-location, .store-phone {
        font-size: 0.82rem;
        margin-bottom: 8px;
    }
}

@media (max-width: 480px) {
    .stores-section {
        padding: 30px 0 24px;
    }

    .stores-section .section-title {
        font-size: 1.4rem;
    }

    .store-image {
        height: 160px;
    }
}
