/* ==================================================
   STORE PAGE SPECIFIC STYLES (GLASSMORPHISM)
   ================================================== */

.store-hero {
    min-height: 40vh;
    padding-top: 180px;
    padding-bottom: 80px;
}

/* --- SECTION CONTAINERS --- */
.store-section {
    width: 95%; 
    max-width: 95%;
    align-items: center;
    margin-top: -60px;
    padding: 60px;
    border-radius: 50px;
    position: relative;
    z-index: 10;
    overflow: hidden;
    margin-bottom: 50px;
}

.section-title h2 {
    color: white;
    font-size: clamp(1.8rem, 4vw, 2.5rem);
}
/* --- MAP GRID (Container) --- */
.map-grid {
    width: 100%; 
    max-width: 1000px;
    display: flex; 
    flex-direction: column; 
    align-items: center;
    position: relative;
    margin: 40px auto 0 auto;
}

.map-frame {
    width: 100%; 
    height: 500px; /* Increased height to match reference */
    border-radius: 70px; /* Bento Curve */
    overflow: hidden;
    border: 2px solid rgba(255, 255, 255, 0.1); /* Glass border */
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
}

/* --- ADDRESS CARD (Overlapping) --- */
.address-details {
    margin-top: -45px; /* Creates the overlap with the map */
    padding: 25px 45px;
    border-radius: 70px; /* Bento Curve */
    display: flex; 
    align-items: center; 
    gap: 25px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.3);
    z-index: 2;
    flex-wrap: wrap; 
    justify-content: center; 
    text-align: left;
    
    /* Assuming a dark glass background to fit your original theme */
    background: rgba(30, 30, 30, 0.7);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* --- INNER ELEMENTS --- */
.icon-circle {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    width: 50px; 
    height: 50px;
    border-radius: 50%;
    display: flex; 
    align-items: center; 
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.address-text-group {
    display: flex;
    flex-direction: column;
    gap: 8px; /* Adds space between the title and the links */
    flex-grow: 1; /* Pushes the button to the right side */
}

.address-text-group h3 {
    font-size: 1.6rem;
    color: white;
    margin: 0;
    font-weight: 900;
    background: linear-gradient(135deg, #fff, #a0a0a0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.address-text {
    font-size: 1.05rem;
    color: #F5F5F7;
    margin: 0;
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

.address-text:hover {
    opacity: 1;
}

.direction-btn {
    background: white; /* Contrast button for dark mode */
    color: black;
    padding: 14px 35px; 
    border-radius: 50px;
    text-decoration: none; 
    font-weight: 800;
    transition: 0.3s;
    font-size: 1.1rem;
    white-space: nowrap; /* Prevents button text from breaking into two lines */
}

.direction-btn:hover { 
    transform: translateY(-3px); 
    box-shadow: 0 10px 20px rgba(255, 255, 255, 0.2);
}

/* --- MOBILE RESPONSIVENESS --- */
@media (max-width: 768px) {
    .address-details {
        flex-direction: column; /* Stacks icon, text, and button on mobile */
        text-align: center;
        padding: 30px 20px;
        border-radius: 35px;
    }
    .address-text-group {
        align-items: center;
    }
}

/* --- REVIEWS SECTION --- */
.review-actions {
    width: 100%;
    position: relative;
    max-width: 1000px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 50px;
    padding: 50px;
    margin: 20px auto 0 auto;
    flex-wrap: wrap;
    background: rgba(255, 255, 255, 0.03);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
}

.qr-block {
    text-align: center;
}

.qr-img {
    width: 160px;
    border-radius: 20px;
    background: white; /* Keeps QR code highly readable */
    padding: 10px;
    margin-bottom: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    transition: transform 0.3s ease;
}

.qr-img:hover {
    transform: scale(1.05);
}

.qr-block span {
    display: block;
    color: white;
    font-weight: 600;
    font-size: 1.1rem;
    letter-spacing: 1px;
}

.divider {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.2);
    font-weight: 800;
}

.review-btn {
    font-size: 1.2rem;
    padding: 18px 30px;
    border-radius: 50px;
}

/* --- RESPONSIVE QUERIES --- */
@media (max-width: 1024px) {
    .map-grid {
        grid-template-columns: 1.2fr 1fr;
    }
}

@media (max-width: 768px) {
    .store-hero {
        padding-top: 140px;
        padding-bottom: 40px;
    }

    .store-section {
        padding: 40px 20px;
        border-radius: 30px;
    }

    .map-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .map-frame {
        height: 300px;
    }

    .address-details {
        padding: 30px 20px;
        text-align: center;
    }

    .review-actions {
        flex-direction: column;
        gap: 30px;
        padding: 40px 20px;
    }

    .divider {
        display: none; /* Hide OR on mobile for cleaner stacking */
    }
}