/* Store Locator Styles */
.store-locator-container {
    padding: 3rem 0;
    background-color: #f8fafc;
    min-height: calc(100vh - 400px);
}

.store-header {
    margin-bottom: 3rem;
    text-align: center;
}

.store-header h1 {
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 1rem;
}

.store-header p {
    color: #64748b;
    max-width: 600px;
    margin: 0 auto;
}

/* Map Container */
#storeMap {
    height: 600px;
    border-radius: 1.5rem;
    overflow: hidden;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Store Cards */
.store-list {
    height: 600px;
    overflow-y: auto;
    padding-right: 0.5rem;
}

.store-list::-webkit-scrollbar {
    width: 6px;
}

.store-list::-webkit-scrollbar-track {
    background: transparent;
}

.store-list::-webkit-scrollbar-thumb {
    background: #e2e8f0;
    border-radius: 10px;
}

.store-card {
    background: white;
    border-radius: 1rem;
    padding: 1.5rem;
    margin-bottom: 1rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid #e2e8f0;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.store-card:hover {
  /*  transform: translateY(-4px);*/
    box-shadow: 0 12px 20px -5px rgba(0, 0, 0, 0.05);
    border-color: var(--bs-primary) !important;
}

    .store-card.active {
        border-color: var(--bs-primary) !important;
        background-color: #FCEBED;
    }

.store-card h5 {
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #1e293b;
}

.store-card .store-info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    color: #64748b;
}

.store-card .store-info-item i {
    font-size: 1rem;
    color: var(--bs-primary);
    margin-right: 0.75rem;
    margin-top: 0.15rem;
}

.store-card .badge-status {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    font-size: 0.75rem;
    padding: 0.25rem 0.75rem;
    border-radius: 2rem;
}

/* Details Page */
.store-details-header {
    background: linear-gradient(135deg, #4A070A 0%, #2F0407 100%);
    padding: 5rem 0;
    color: white;
    margin-bottom: -3rem;
}

.store-details-card {
    background: white;
    border-radius: 2rem;
    padding: 2.5rem;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    border: 1px solid #e2e8f0;
}

.opening-hours-table {
    border-radius: 1rem;
    overflow: hidden;
    border: 1px solid #e2e8f0;
}

.opening-hours-table th {
    background-color: #f8fafc;
    font-weight: 600;
}

/* Contact icons: true circle, compact size */
.store-detail-contact-icon {
    width: 2.5rem;
    height: 2.5rem;
    min-width: 2.5rem;
    min-height: 2.5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.store-detail-contact-icon i {
    font-size: 1.1rem;
}

.store-image-gallery {
    border-radius: 1.5rem;
    overflow: hidden;
    margin-bottom: 2rem;
}

.store-image-gallery img {
    width: 100%;
/*    height: 400px;*/
    object-fit: cover;
}

@media (max-width: 991.98px) {
    #storeMap {
        height: 400px;
        margin-bottom: 2rem;
    }

    .store-list {
        height: auto;
    }
}
