/* --------------------------------------------------
   STORE.CSS - FULL REFINED VERSION
   -------------------------------------------------- */

:root {
    --charcoal: #2C3E50;
    --ivory: #F0F4F7;
    --cream: #D1D1D1;
    --white: #ffffff;
    --text-muted: #5B7C99;
}

body { 
    background-color: var(--ivory); 
}

.store-page { 
    min-height: 100vh; 
}

/* --- 1. HERO SECTION --- */
.store-hero {
    padding: 160px 5% 80px;
    background: var(--ivory);
    text-align: center;
    display: flex; 
    justify-content: center;
}

.hero-content-wrapper {
    max-width: 900px;
    display: flex; 
    flex-direction: column; 
    align-items: center;
}

.location-badge {
    color: var(--charcoal);
    background: var(--cream);
    border: 2px solid var(--charcoal);
    padding: 10px 24px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 800;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: inline-block;
}

.store-hero h1 {
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 900;
    margin-bottom: 20px;
    color: var(--charcoal);
    line-height: 1.1;
}

.store-hero h1 span { 
    color: var(--text-muted);
}

.store-hero p {
    font-size: 1.3rem;
    color: var(--text-muted);
    max-width: 650px;
    line-height: 1.6;
    font-weight: 500;
}

/* --- 2. MAP SECTION --- */
.store-map-section {
    background: var(--charcoal);
    color: var(--ivory);
    padding: 100px 5%;
    margin: 40px 20px;
    border-radius: 80px; /* Bold Curve */
    display: flex; 
    justify-content: center;
}

.map-container {
    width: 100%; 
    max-width: 1000px;
    display: flex; 
    flex-direction: column; 
    align-items: center;
    position: relative;
}

.map-frame {
    width: 100%; 
    height: 500px;
    border-radius: 45px; /* Bento Curve */
    overflow: hidden;
    border: 4px solid var(--cream);
    box-shadow: 0 30px 80px rgba(44, 62, 80, 0.4);
}

/* --- 3. ADDRESS CARD (Floating) --- */
.address-card {
    margin-top: -45px; /* Overlap with map */
    background: var(--white);
    padding: 25px 45px;
    border-radius: 45px; /* Bento Curve */
    display: flex; 
    align-items: center; 
    gap: 25px;
    border: 3px solid var(--cream);
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
    z-index: 2;
    flex-wrap: wrap; 
    justify-content: center; 
    text-align: left;
}

/* Refined Small Pin */
.icon-circle {
    background: var(--ivory);
    color: var(--charcoal);
    width: 50px; 
    height: 50px;
    border-radius: 50%;
    display: flex; 
    align-items: center; 
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
    border: 2px solid var(--cream);
}

.address-text h3 {
    font-size: 1.3rem;
    color: var(--charcoal);
    font-weight: 900;
    margin-bottom: 2px;
}

.address-text p {
    font-size: 1.05rem;
    color: var(--text-muted);
    margin: 0;
}

.direction-btn {
    background: var(--charcoal); 
    color: var(--ivory);
    padding: 14px 35px; 
    border-radius: 50px;
    text-decoration: none; 
    font-weight: 800;
    transition: 0.3s;
}

.direction-btn:hover { 
    transform: translateY(-3px); 
    box-shadow: 0 10px 20px rgba(44, 62, 80, 0.3);
    background: var(--text-muted);
}

/* --- 4. REVIEWS SECTION --- */
.store-reviews {
    background: var(--cream);
    padding: 100px 5% 80px;
    margin: 60px 20px 40px;
    border-radius: 80px; /* Bold Curve */
    text-align: center;
    display: flex; 
    justify-content: center;
}

.review-wrapper { 
    max-width: 900px; 
    width: 100%; 
}

.review-header h2 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    color: var(--charcoal);
    margin-bottom: 15px;
    font-weight: 900;
}

.review-header p {
    color: var(--charcoal); 
    opacity: 0.8;
    margin-bottom: 50px; 
    font-size: 1.2rem; 
    font-weight: 600;
}

.review-actions {
    display: flex; 
    align-items: center; 
    justify-content: center; 
    gap: 50px;
    background: var(--white);
    padding: 50px;
    border-radius: 50px; /* Bento Curve */
    border: 3px solid var(--ivory);
    flex-wrap: wrap;
}

.qr-img { 
    width: 130px; 
    border-radius: 15px; 
    mix-blend-mode: multiply; 
}

.qr-block span { 
    font-weight: 800; 
    color: var(--text-muted); 
    display: block; 
    margin-top: 10px; 
}

.divider { 
    font-weight: 900; 
    color: var(--charcoal); 
    opacity: 0.3; 
    font-size: 1.2rem; 
}

.review-btn {
    background: var(--charcoal); 
    color: var(--ivory);
    padding: 18px 45px; 
    border-radius: 50px;
    text-decoration: none; 
    font-weight: 900;
    transition: 0.3s;
    font-size: 1.1rem;
}

.review-btn:hover { 
    transform: scale(1.05); 
    background: var(--text-muted); 
}

/* --- 5. RESPONSIVE QUERIES --- */

@media (max-width: 1024px) {
    .store-hero { padding: 140px 5% 60px; }
    .address-card { padding: 30px; gap: 20px; }
}

@media (max-width: 768px) {
    .store-hero { padding: 120px 5% 40px; }
    .store-hero h1 { font-size: 2.8rem; }
    
    .store-map-section { 
        border-radius: 40px; 
        padding: 40px 20px; 
        margin: 20px 10px; 
    }

    .map-frame { height: 350px; border-radius: 35px; }

    .icon-circle {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }

    .address-card { 
        flex-direction: column; 
        width: 100%; 
        text-align: center; 
        padding: 30px 20px; 
        margin-top: -35px; 
        border-radius: 35px; 
    }

    .address-text h3 { font-size: 1.1rem; }

    .store-reviews { 
        border-radius: 40px; 
        padding: 60px 20px; 
        margin: 20px 10px; 
    }

    .review-actions { 
        flex-direction: column; 
        gap: 30px; 
        padding: 40px 25px; 
        border-radius: 35px; 
    }

    .qr-img { width: 110px; }
}

@media (max-width: 480px) {
    .store-hero h1 { font-size: 2.4rem; }
    .store-hero p { font-size: 1.1rem; }
    .direction-btn, .review-btn { width: 100%; padding: 15px 25px; text-align: center; }
}