/** Shopify CDN: Minification failed

Line 171:0 Unexpected "}"

**/
/* Container & Layout */
.store-location-page {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
    font-family: "Assistant", sans-serif; /* Standard Shopify font, adjust if needed */
    color: #121212;
    line-height: 1.6;


/* Typography Defaults */
 h1, 
 h2, 
 h3 {
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 400;
    margin-bottom: 0 !important;
}

/* Header Section */
.location-header {
    text-align: center;
    margin-bottom: 80px;

}
   .location-header h1{
            font-size: 2.5rem;
            margin-bottom: 20px !important;
    }
   .location-header p{
        text-align:justify;
    }

.location-intro {
    max-width: 700px;
    margin: 0 auto;
    font-size: 1.1rem;
    color: #555;
}
}

.price-area .theme-money {
    font-weight:600;
}
span.was-price.theme-money {
    color: #ff0101;
    opacity: 0.75;
}
span.current-price.theme-money {
    color: #000;
}


@media screen and (min-width:568px){

    .location-contact-info{
        display: grid;
        grid-template-columns: 1fr 1fr;
        margin-bottom: 80px;
        border-top: 1px solid #e8e8e8;
        padding-top: 60px;
        max-height: 150px;
        left: 40px;
        position: relative;
        span[itemprop="streetAddress"]{
            white-space:nowrap;
        }
        div[itemtype="https://schema.org/JewelryStore"]{
            min-width:180px;
        }
    }
}
.store-name-display {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 15px;
}

.store-hours ul {
    list-style: none;
    padding: 0;
    width:100%;
}

.store-hours li {
    padding: 8px 0;
    border-bottom: 1px solid #f4f4f4;
    display: flex;
    justify-content: space-between;
}

/* Services Section */
.location-services {
    background-color: #f9f9f9;
    padding: 60px;
    text-align: center;
    margin-bottom: 80px;
}
.location-services h2{
    margin-top:0 !important;
}
.location-services ul {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin: 30px 0;
    text-align:left;
}

/* Button Styling (Premiere Style) */


    .location-cta {
        display: inline-block;
        background: #121212;
        color: #fff !important;
        padding: 15px 35px;
        text-decoration: none;
        text-transform: uppercase;
        letter-spacing: 0.2em;
        font-size: 0.9rem;
        transition: background 0.3s ease;
        border: 1px solid #121212;
    }
    
    .location-cta:hover {
        background: transparent;
        color: #121212 !important;
    }

    
/* Map Styling */
.google-map-embed {
    width: 100%;
    height: 450px;
    filter: grayscale(0.2); /* Subtle modern touch */
    margin-top: 20px;
}

.google-map-embed iframe {
    width: 100%;
    height: 100%;
    border-radius: 4px;
}

/* Photo Gallery */
.photo-gallery {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.photo-gallery img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.photo-gallery img:hover {
    transform: scale(1.02);
}
}
/* Responsive Adjustments */
@media (max-width: 768px) {
    .store-location-page{

        .location-contact-info, 
        .photo-gallery {
            grid-template-columns: 1fr;
        }
        
        .location-services {
            padding: 30px 15px;
        }
    }
}

/* Feedback & QR Section */
.location-feedback-qr {
    padding: 80px 20px;
    background-color: #ffffff;
    border-top: 1px solid #e8e8e8;
    margin-bottom: 60px;
}

.feedback-container {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.feedback-text {
    flex: 2;
    text-align: left;
}

.feedback-text h2 {
    margin-bottom: 15px !important;
}

.feedback-text p {
    margin-bottom: 25px;
    color: #555;
}

.qr-code-wrapper {
    flex: 1;
    text-align: center;
    padding: 20px;
    border: 1px solid #f0f0f0;
    background: #fafafa;
}

.review-qr-img {
    max-width: 150px;
    height: auto;
    display: block;
    margin: 0 auto 10px;
}

.qr-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #888;
    margin: 0;
}

/* Review Button Styling */
.google-review-btn {
    display: inline-block;
    background: #121212;
    color: #fff !important;
    padding: 15px 35px;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-size: 0.9rem;
    border: 1px solid #121212;
    transition: all 0.3s ease;
}

.google-review-btn:hover {
    background: transparent;
    color: #121212 !important;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .feedback-container {
        flex-direction: column;
        text-align: center;
    }
    
    .feedback-text {
        text-align: center;
    }
    
    .qr-code-wrapper {
        width: 100%;
        max-width: 200px;
    }
}

/* ============================================================
   Brand defaults (extracted from per-section custom_css blocks)
   Applied sitewide. Section-specific overrides remain in their
   own custom_css if they need different values.
   ============================================================ */

/* Square-cornered brand buttons */
.button {
    border-radius: 0 !important;
}

/* Section headings are centered by default in this brand.
   !important is required because the base theme styles.css loads
   after growin.css and sets justify-content: space-between with
   equal specificity. text-align fallback handles non-flex contexts. */
.section-heading {
    justify-content: center !important;
    text-align: center;
}
