/* ============================================
   STORE LOCATOR PAGE - PROFESSIONAL DESIGN
   ============================================ */

/* Store Locator Section */
.store-locator-section {
    padding: 3rem 0 4rem;
    background: #FFFFFF;
    min-height: 100vh;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Page Header */
.page-header {
    text-align: center;
    margin-bottom: 3rem;
}

.page-header h1 {
    font-size: 2.5rem;
    color: #8B0000;
    margin-bottom: 1rem;
    font-weight: 700;
    letter-spacing: -0.5px;
    position: relative;
    display: inline-block;
}

.page-header h1::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: #D4AF37;
    border-radius: 2px;
}

.subtitle {
    font-size: 1rem;
    color: #666666;
    margin-top: 0.75rem;
    font-weight: 400;
}

/* Store Content Layout */
.store-content {
    display: grid;
    grid-template-columns: 420px 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
}

/* Store Info Section */
.store-info-section {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.info-card {
    background: #FFFFFF;
    border: 1px solid #E8E8E8;
    border-radius: 10px;
    padding: 1.5rem;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.06);
}

.primary-card {
    background: linear-gradient(135deg, #FAFAFA 0%, #FFFFFF 100%);
}

.card-icon {
    width: 52px;
    height: 52px;
    background: #8B0000;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.primary-card h2 {
    font-size: 1.5rem;
    color: #8B0000;
    margin-bottom: 0.4rem;
    font-weight: 700;
}

.tagline {
    font-size: 0.9rem;
    color: #D4AF37;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

/* Info Grid */
.info-grid {
    display: grid;
    gap: 1.25rem;
}

.info-item {
    display: flex;
    gap: 0.875rem;
    align-items: flex-start;
}

.info-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #FFF9E6 0%, #FFFBF0 100%);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #8B0000;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.info-content h3 {
    font-size: 0.875rem;
    color: #8B0000;
    margin-bottom: 0.4rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.info-content p {
    font-size: 0.9rem;
    color: #555555;
    line-height: 1.5;
    margin: 0;
}

.info-content a {
    color: #555555;
    text-decoration: none;
    transition: color 0.3s ease;
}

.info-content a:hover {
    color: #8B0000;
}

/* Hours List */
.hours-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.hours-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
}

.hours-row .day {
    font-weight: 500;
    color: #555555;
}

.hours-row .time {
    color: #27AE60;
    font-weight: 600;
}

.hours-row.sunday .day {
    color: #999999;
}

.hours-row .time.closed {
    color: #E74C3C;
}

/* Quick Actions */
.quick-actions {
    display: grid;
    gap: 0.625rem;
}

.action-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.625rem;
    padding: 0.75rem 1.25rem;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.action-btn.primary {
    background: #8B0000;
    color: #FFFFFF;
    border-color: #8B0000;
}

.action-btn.primary:hover {
    background: #A52A2A;
    border-color: #A52A2A;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(139, 0, 0, 0.25);
}

.action-btn.secondary {
    background: #FFFFFF;
    color: #8B0000;
    border-color: #8B0000;
}

.action-btn.secondary:hover {
    background: #8B0000;
    color: #FFFFFF;
}

/* Store Features */
.store-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
    padding: 1.25rem;
    background: #F9F9F9;
    border-radius: 8px;
    border: 1px solid #EFEFEF;
}

.feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.825rem;
    color: #555555;
}

.feature i {
    color: #D4AF37;
    font-size: 0.95rem;
}

/* Map Section */
.map-section {
    display: flex;
    flex-direction: column;
    background: #FFFFFF;
    border: 1px solid #E8E8E8;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.06);
    height: fit-content;
}

.map-container {
    width: 100%;
    height: 450px;
    position: relative;
}

.map-container iframe {
    width: 100%;
    height: 100%;
}

.map-footer {
    padding: 0.875rem 1.25rem;
    background: #F9F9F9;
    border-top: 1px solid #E8E8E8;
    text-align: center;
}

.map-footer p {
    font-size: 0.825rem;
    color: #666666;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.map-footer i {
    color: #8B0000;
}

/* Additional Info Section */
.additional-info {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}

.info-box {
    background: #F9F9F9;
    padding: 1.5rem;
    border-radius: 10px;
    text-align: center;
    border: 1px solid #E8E8E8;
    transition: all 0.3s ease;
}

.info-box:hover {
    background: #FFFFFF;
    border-color: #D4AF37;
    transform: translateY(-4px);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
}

.info-box i {
    font-size: 2rem;
    color: #8B0000;
    margin-bottom: 0.875rem;
}

.info-box h3 {
    font-size: 1.05rem;
    color: #8B0000;
    margin-bottom: 0.625rem;
    font-weight: 600;
}

.info-box p {
    font-size: 0.875rem;
    color: #666666;
    line-height: 1.5;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .store-content {
        grid-template-columns: 380px 1fr;
        gap: 1.75rem;
    }

    .map-container {
        height: 420px;
    }
}

@media (max-width: 968px) {
    .store-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .map-container {
        height: 400px;
    }

    .additional-info {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.25rem;
    }
}

@media (max-width: 768px) {
    .store-locator-section {
        padding: 2.5rem 0;
    }

    .container {
        padding: 0 1.25rem;
    }

    .page-header {
        margin-bottom: 2.5rem;
    }

    .page-header h1 {
        font-size: 2rem;
    }

    .subtitle {
        font-size: 0.95rem;
    }

    .info-card {
        padding: 1.25rem;
    }

    .primary-card h2 {
        font-size: 1.35rem;
    }

    .store-features {
        grid-template-columns: 1fr;
        gap: 0.625rem;
    }

    .map-container {
        height: 350px;
    }

    .additional-info {
        grid-template-columns: 1fr;
        gap: 1rem;
        margin-top: 2.5rem;
    }

    .info-box {
        padding: 1.25rem;
    }
}

@media (max-width: 480px) {
    .store-locator-section {
        padding: 2rem 0;
    }

    .page-header h1 {
        font-size: 1.75rem;
    }

    .subtitle {
        font-size: 0.9rem;
    }

    .card-icon {
        width: 46px;
        height: 46px;
        font-size: 1.3rem;
    }

    .primary-card h2 {
        font-size: 1.25rem;
    }

    .tagline {
        font-size: 0.85rem;
    }

    .info-grid {
        gap: 1rem;
    }

    .info-icon {
        width: 36px;
        height: 36px;
        font-size: 1rem;
    }

    .info-content h3 {
        font-size: 0.8rem;
    }

    .info-content p {
        font-size: 0.85rem;
    }

    .map-container {
        height: 300px;
    }

    .info-box i {
        font-size: 1.75rem;
    }

    .info-box h3 {
        font-size: 1rem;
    }

    .info-box p {
        font-size: 0.825rem;
    }
}
