/* Base Styles */
:root {
    --primary: #1a1a1a;
    --secondary: #d4af37;
    --light: #f8f8f8;
    --gray: #777;
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--primary);
    overflow-x: hidden;
    margin: 0;
    padding: 0;
}

a {
    text-decoration: none;
    color: inherit;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    background: var(--secondary);
    color: var(--primary);
    border: none;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 14px;
    border-radius: 4px;
    position: relative;
    overflow: hidden;
}

.btn:hover {
    background: #c19b2a;
    transform: translateY(-2px);
}

.btn:disabled {
    background: #6c757d;
    cursor: not-allowed;
    transform: none;
}

#cookie-banner {
  font-size: 14px;
  box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
}

/* NAVIGATION STYLES */
/* Header Styles */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    background: #000 !important;
    transition: var(--transition);
}

header.scrolled {
    background: #000 !important;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* Header Layout Adjustments */
.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    padding: 15px 20px;
}

/* Social Media Icons */
.social-media {
    display: flex;
    gap: 15px;
}

.social-media a {
    color: var(--light);
    text-decoration: none;
    font-size: 16px;
    transition: var(--transition);
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.social-media a:hover {
    color: var(--secondary);
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

/* Logo */
.logo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    text-decoration: none;
    color: var(--light);
    font-weight: 700;
    font-size: 24px;
}

.logo-img {
    height: 40px;
    width: auto;
    margin-right: 10px;
    vertical-align: middle;
}

.logo span {
    color: var(--secondary);
}

/* Header Actions (Search and Contact) */
.header-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.search-btn {
    background: none;
    border: none;
    font-size: 18px;
    cursor: pointer;
    color: var(--light);
    transition: var(--transition);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.search-btn:hover {
    color: var(--secondary);
    background: rgba(255, 255, 255, 0.1);
}

.contact-btn {
    background-color: var(--secondary);
    color: var(--primary);
    border: none;
    padding: 10px 20px;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 14px;
}

.contact-btn:hover {
    background: #c19b2a;
    transform: translateY(-2px);
}

/* Navigation Menu */
nav {
    background: rgba(0, 0, 0, 0.9);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

nav ul {
    display: flex;
    justify-content: center;
    list-style: none;
    padding: 15px 0;
    margin: 0;
}

nav ul li {
    margin: 0 20px;
}

.nav-link {
    text-decoration: none;
    color: var(--light);
    font-weight: 500;
    font-size: 16px;
    transition: var(--transition);
    position: relative;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.nav-link:hover,
.nav-link.active {
    color: var(--secondary);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--secondary);
    transition: var(--transition);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

/* Mobile Menu */
.mobile-menu, .close-menu {
    display: none;
    cursor: pointer;
    font-size: 24px;
    color: var(--light);
}

/* Hero Section  */
.hero {
    height: 100vh;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../images/images3.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    color: var(--light);
    position: relative;
    padding-top: 140px;
    margin-top: 0;
}

.hero-content-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

/* Left: Text Content */
.hero-text h1 {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 0;
    color: var(--light);
}

/* Right: Image & Description */
.hero-image-content {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.hero-image {
    text-align: center;
}

.hero-img {
    width: 100%;
    max-width: 250px; 
    height: auto;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: var(--transition);
}

.hero-img:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.hero-description {
    text-align: center;
}

.hero-description p {
    font-size: 1.1rem;
    color: #ddd;
    margin-bottom: 25px;
    line-height: 1.6;
}

/* Services Section */
.services {
    padding: 100px 0;
    background: var(--light);
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 36px;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.section-title h2:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--secondary);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    background: white;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    border-radius: 5px;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.service-icon {
    width: 70px;
    height: 70px;
    background: var(--secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 24px;
    color: var(--primary);
}

.service-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
}

.service-card p {
    color: var(--gray);
}

/* About Section */
.about {
    padding: 100px 0;
    background: var(--primary);
    color: var(--light);
}

.about-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-content h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.about-content p {
    margin-bottom: 20px;
    color: #ddd;
}

.about-image {
    position: relative;
}

.about-image img {
    width: 100%;
    border-radius: 5px;
}

/* About Learn More Popup Specific Styles */
.about-popup-overlay {
    z-index: 2001; 
}

.about-popup-box {
    max-width: 900px !important; 
    padding: 40px;
    width: 90%;
}

.about-popup-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

.about-popup-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.about-popup-text {
    color: var(--primary);
}

.about-popup-text p {
    margin-bottom: 15px;
    line-height: 1.6;
}

.about-popup-text ul {
    margin: 15px 0;
    padding-left: 20px;
}

.about-popup-text li {
    margin-bottom: 8px;
    line-height: 1.5;
}

.about-popup-text strong {
    color: var(--secondary);
}

/* Learn More Button */
.learn-more-btn {
    cursor: pointer;
}

/* Gallery Section Styles */
.gallery-section {
    padding: 80px 20px;
    background: #f8f9fa;
}

.gallery-container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 15px;
}

.section-header p {
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin-bottom: 40px;
}

.gallery-item {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background: white;
    cursor: pointer;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.gallery-img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
}

.gallery-caption {
    padding: 15px;
    text-align: center;
}

.gallery-caption h3 {
    margin: 0 0 8px;
    font-size: 1.2rem;
    color: #333;
}

.gallery-caption p {
    margin: 0;
    color: #666;
    font-size: 0.9rem;
}

/* Lightbox Modal */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 10000;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.lightbox-content {
    max-width: 90%;
    max-height: 70%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.lightbox-img {
    max-width: 100%;
    max-height: 100%;
    border-radius: 8px;
    object-fit: contain;
}

.close-lightbox {
    position: absolute;
    top: 20px;
    right: 30px;
    color: white;
    font-size: 40px;
    cursor: pointer;
    z-index: 10001;
    background: none;
    border: none;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.close-lightbox:hover {
    color: var(--secondary);
}

.lightbox-caption {
    position: absolute;
    bottom: 20px;
    left: 0;
    right: 0;
    text-align: center;
    color: white;
    padding: 20px;
    background: rgba(0, 0, 0, 0.7);
}

/* CTA Section */
.cta {
    padding: 100px 0;
    background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url('../images/images1.jpg');
    background-size: cover;
    background-position: center;
    color: var(--light);
    text-align: center;
}

.cta h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.cta p {
    max-width: 600px;
    margin: 0 auto 30px;
    color: #ddd;
}

/* Store Section Styles */
.store-section {
    padding: 80px 0;
    background: var(--light);
}

.store-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}

/* Slideshow Styles */
.store-slideshow {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.store-slide {
    display: none;
}

.store-slide img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

/* Slideshow navigation */
.prev, .next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    padding: 16px;
    color: white;
    font-weight: bold;
    font-size: 18px;
    transition: 0.3s;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.next {
    right: 15px;
}

.prev {
    left: 15px;
}

.prev:hover, .next:hover {
    background: rgba(0, 0, 0, 0.8);
}

.slideshow-dots {
    text-align: center;
    padding: 20px;
    position: absolute;
    bottom: 0;
    width: 100%;
}

.dot {
    cursor: pointer;
    height: 12px;
    width: 12px;
    margin: 0 5px;
    background-color: #bbb;
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.3s;
}

.dot.active, .dot:hover {
    background-color: var(--secondary);
}

/* Store Info Styles */
.store-info h3 {
    font-size: 24px;
    margin-bottom: 25px;
    color: var(--primary);
}

.store-details > div {
    margin-bottom: 25px;
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.store-details i {
    color: var(--secondary);
    font-size: 20px;
    margin-top: 3px;
}

.store-details strong {
    display: block;
    margin-bottom: 5px;
    color: var(--primary);
}

.store-details p {
    color: var(--gray);
    margin: 0;
}

.store-cta {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-top: 30px;
}


.store-cta .btn {
    background: var(--primary); 
    color: var(--light); 
    border: none;
}

.store-cta .btn:hover {
    background: #000000; 
    transform: translateY(-2px);
}


/* Footer */
footer {
    background: #111;
    color: var(--light);
    padding: 60px 0 30px;
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h3 {
    font-size: 18px;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-col h3:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--secondary);
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    color: #aaa;
    transition: var(--transition);
}

.footer-col ul li a:hover {
    color: var(--secondary);
    padding-left: 5px;
}

.map-embed {
    margin-top: 10px;
}

.map-embed iframe {
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    margin-bottom: 15px;
}

.map-actions {
    text-align: center;
}

.btn-map {
    display: inline-block;
    padding: 8px 16px;
    background: var(--secondary);
    color: var(--primary);
    text-decoration: none;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
    transition: var(--transition);
}

.btn-map:hover {
    background: #c19b2a;
    transform: translateY(-2px);
}

.store-image {
    margin: 15px 0 20px 0;
    text-align: center;
}

.store-img {
    max-width: 250px; 
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    transition: var(--transition);
    border: 2px solid var(--secondary);
}

.store-img:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
}

.store-img:hover {
    transform: scale(1.05); 
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
}

.copyright {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #333;
    color: #aaa;
    font-size: 14px;
}

/* POPUP STYLES */
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.8);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 2000;
    padding: 20px;
}

.popup-box {
    background: white;
    padding: 30px 25px 25px;
    width: 90%;
    max-width: 500px;
    border-radius: 10px;
    color: var(--primary);
    position: relative;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    max-height: 90vh;
    overflow-y: auto;
}

.popup-box h2 {
    text-align: center;
    margin-bottom: 10px;
    color: var(--primary);
    font-size: 24px;
    font-weight: 600;
}

.close-popup {
    position: absolute;
    right: 20px;
    top: 15px;
    font-size: 28px;
    cursor: pointer;
    color: var(--gray);
    background: none;
    border: none;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.close-popup:hover {
    color: var(--primary);
    transform: rotate(90deg);
}

/* Form Styles */
#popupForm label {
    display: block;
    margin: 8px 0 5px 0;
    font-weight: 500;
    color: var(--primary);
    font-size: 14px;
}

#popupForm input,
#popupForm textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: inherit;
    font-size: 14px;
    box-sizing: border-box;
    transition: var(--transition);
    background: white;
    color: var(--primary);
}

#popupForm input:focus,
#popupForm textarea:focus {
    outline: none;
    border-color: var(--secondary);
    box-shadow: 0 0 0 2px rgba(212, 175, 55, 0.1);
}

#popupForm input::placeholder,
#popupForm textarea::placeholder {
    color: #999;
}

#popupForm textarea {
    height: 100px;      
    resize: vertical;
    min-height: 80px;   
}

#popupForm button {
    margin-top: 15px;
    padding: 14px;
    background: var(--secondary);
    color: var(--primary);
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    transition: var(--transition);
    font-weight: 600;
    width: 100%;
    position: relative;
}

#popupForm button:hover:not(:disabled) {
    background: #c19b2a;
    transform: translateY(-2px);
}

/* Form Status Messages */
#formStatus {
    margin-top: 15px;
    padding: 10px 15px;
    border-radius: 5px;
    font-weight: 600;
    text-align: center;
    display: none;
    font-size: 14px;
}

#formStatus[style*="color: green"] {
    background: #d4edda;
    border: 1px solid #c3e6cb;
    color: #155724;
}

#formStatus[style*="color: red"] {
    background: #f8d7da;
    border: 1px solid #f5c6cb;
    color: #721c24;
}

/* Loading Spinner */
#loadingSpinner {
    display: none;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.fa-spin {
    animation: fa-spin 1s infinite linear;
}

@keyframes fa-spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Responsive Styles */
@media (max-width: 992px) {
    .about-container {
        grid-template-columns: 1fr;
    }
    
    .about-image {
        order: -1;
    }
    
    .social-media {
        gap: 10px;
    }
    
    .social-media a {
        width: 30px;
        height: 30px;
        font-size: 14px;
    }
    
    nav ul li {
        margin: 0 15px;
    }
    
    .nav-link {
        font-size: 14px;
    }

    /* Hero Responsive */
    .hero-content-wrapper {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
    }
    
    .hero-text h1 {
        font-size: 2.5rem;
    }
    
    .hero-img {
        max-width: 220px; 
    }
}

@media (max-width: 768px) {
    .header-container {
        flex-wrap: wrap;
        padding: 10px 20px;
    }
    
    .social-media {
        order: 1;
        width: 50%;
    }
    
    .logo {
        position: static;
        transform: none;
        order: 3;
        width: 100%;
        justify-content: center;
        margin-top: 10px;
        font-size: 20px;
    }
    
    .logo-img {
        height: 35px;
    }
    
    .header-actions {
        order: 2;
        width: 50%;
        justify-content: flex-end;
    }
    
    .mobile-menu {
        display: block;
        order: 4;
        width: 100%;
        text-align: center;
        margin-top: 10px;
        padding: 10px 0;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        height: 100vh;
        background: var(--primary);
        transition: var(--transition);
        z-index: 1000;
        border-top: none;
    }
    
    nav.active {
        right: 0;
    }
    
    .nav-container {
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    nav ul {
        flex-direction: column;
        align-items: center;
        padding: 0;
        width: 100%;
    }
    
    nav ul li {
        margin: 15px 0;
    }
    
    .close-menu {
        display: block;
        position: absolute;
        top: 20px;
        right: 20px;
    }
    
    .nav-link {
        font-size: 18px;
        padding: 10px 20px;
    }
    
    /* Hero Responsive */
    .hero {
        padding-top: 200px; 
        height: auto;
        min-height: 100vh;
    }

    .hero-content-wrapper {
        gap: 40px;
    }
    
    .hero-text h1 {
        font-size: 2rem;
    }
    
    .hero-description p {
        font-size: 1rem;
    }
    
    .hero-img {
        max-width: 200px; 
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        grid-template-columns: repeat(1, 1fr);
        gap: 20px;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .close-lightbox {
        top: 10px;
        right: 15px;
        font-size: 30px;
    }
    
    .popup-box {
        padding: 35px 25px 25px;
        margin: 10px;
        overflow-y: auto;
    }
    
    .popup-box h2 {
        font-size: 22px;
    }

    #popupForm textarea {
        height: 90px;   
        min-height: 70px;
    }

    .about-popup-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .about-popup-box {
        padding: 30px 25px;
        margin: 20px;
    }
    
    .about-popup-image {
        order: -1;
    }

    .store-img {
        max-width: 200px;
    }
    .language-switcher {
        margin-right: 10px !important;
    }
    
    .lang-btn span {
        display: none !important; 
    }
    
    .lang-btn {
        padding: 6px 10px !important; 
        font-size: 12px !important;
        gap: 0 !important; 
    }

    .store-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .store-slide img {
        height: 300px;
    }
    
    .store-cta {
        justify-content: center;
    }
    
    .prev, .next {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }

    .map-embed iframe {
        height: 180px;
    }
}

@media (max-width: 480px) {
    .hero {
        padding-top: 190px
    }
    
    .hero-text h1 {
        font-size: 1.6rem;
    }
    
    .hero-description p {
        font-size: 0.95rem;
    }
    
    .hero-img {
        max-width: 160px; 
    }
    
    .btn {
        padding: 10px 20px;
        font-size: 12px;
    }
    
    .service-card {
        padding: 30px 20px;
    }
    
    .social-media {
        gap: 8px;
    }
    
    .social-media a {
        width: 25px;
        height: 25px;
        font-size: 12px;
    }
    
    .header-actions {
        gap: 10px;
    }
    
    .search-btn {
        width: 35px;
        height: 35px;
        font-size: 16px;
    }
    
    .contact-btn {
        padding: 8px 15px;
        font-size: 12px;
    }
    
    .logo {
        font-size: 18px;
    }
    
    .logo-img {
        height: 30px;
    }
    
    .popup-box {
        padding: 30px 20px 20px;
        overflow-y: auto;
        max-height: 95vh;
    }
    
    #popupForm input,
    #popupForm textarea {
        padding: 10px 12px;
        font-size: 13px;
    }
    
    #popupForm button {
        padding: 12px;
        font-size: 14px;
    }

    .about-popup-box {
        padding: 25px 20px;
    }
    
    .about-popup-content {
        gap: 20px;
    }

    .store-img {
        max-width: 180px;
    }

    .gallery-grid {
        grid-template-columns: 1fr; 
    }
    .language-switcher {
        margin-right: 8px !important;
    }
    
    .lang-btn {
        padding: 5px 8px !important;
        font-size: 11px !important;
    }

    .store-cta {
        flex-direction: column;
        align-items: center;
    }
    
    .store-cta .btn {
        width: 100%;
        max-width: 250px;
        text-align: center;
    }

    .map-embed iframe {
        height: 150px;
    }
    
    .btn-map {
        padding: 6px 12px;
        font-size: 12px;
    }
}