@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&display=swap');

:root {
    /* Brand Colors */
    --primary: #3f3f3f;
    --primary-dark: #2a2a2a;
    --secondary: #000000;
    --secondary-hover: #1a1a1a;
    
    /* Surfaces - Dark Mode (Blackish) */
    --bg-body: #0A0A0A;
    --bg-glass: rgba(20, 20, 20, 0.95);
    --bg-card: #1A1A1A;
    --bg-toolbar: rgba(40, 40, 40, 0.95);
    
    /* Text Colors - Dark Mode */
    --text-primary: #FFFFFF;
    --text-secondary: #E5E5E5;
    --text-muted: #A0A0A0;
    
    /* Spacing */
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 1.5rem;
    --space-lg: 2rem;
    --space-xl: 3rem;
    --space-2xl: 4rem;
    
    /* Effects */
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
    --shadow-2xl: 0 25px 50px -12px rgb(0 0 0 / 0.25);
    
    /* Border Radius */
    --radius-sm: 0.5rem;
    --radius-md: 0.75rem;
    --radius-full: 9999px;
    
    /* Borders */
    --border-light: 1px solid rgba(255, 255, 255, 0.1);
    --border-medium: 1px solid rgba(255, 255, 255, 0.15);
    --border-hover: 1px solid rgba(255, 255, 255, 0.2);
    
    /* Overlays */
    --overlay-light: rgba(255, 255, 255, 0.08);
    --overlay-medium: rgba(255, 255, 255, 0.12);
    --overlay-strong: rgba(255, 255, 255, 0.15);
    --overlay-stronger: rgba(255, 255, 255, 0.18);
    --overlay-nav: rgba(255, 255, 255, 0.1);
    
    /* Transitions */
    --ease-out: cubic-bezier(0, 0, 0.2, 1);
    --ease-elastic: cubic-bezier(0.68, -0.55, 0.265, 1.55);
    
    /* Layout */
    --max-width: 1400px;
    --header-height: 80px;
}

/* =========================================
   RESET & BASE
   ========================================= */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: calc(var(--header-height) + var(--space-lg) + var(--space-md));
    -webkit-font-smoothing: antialiased;
}

body {
    font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
    background-color: var(--bg-body);
    color: var(--text-primary);
    line-height: 1.6;
    padding-bottom: 120px;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
    background-color: var(--bg-card);
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.2s var(--ease-out);
}

ul {
    list-style: none;
}

/* =========================================
   COMPONENT: CARD
   ========================================= */
.card {
    background: var(--bg-card);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-xl);
    border: var(--border-light);
    overflow: hidden;
}


/* =========================================
   COMPONENT: BUTTON
   ========================================= */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 0.875rem;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.3s var(--ease-out);
    white-space: nowrap;
    text-decoration: none;
    gap: 0.5rem;
}

.btn-secondary {
    background: var(--secondary) !important;
    color: var(--text-primary) !important;
    border-color: transparent !important;
}

.btn-secondary:hover {
    background: var(--secondary-hover) !important;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* =========================================
   HERO SLIDER
   ========================================= */
.hero {
    background: var(--bg-card);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-xl);
    border: var(--border-light);
    overflow: hidden;
    position: relative;
    height: 500px;
    min-height: 500px;
    margin: 0 var(--space-md);
}

.hero-slide {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    opacity: 0;
    z-index: 1;
    padding: var(--space-xl);
    animation: slideFade 7.5s infinite;
    width: 100%;
    height: 100%;
}

.hero-slide > * {
    width: 100%;
    max-width: 100%;
}

.hero-slide:nth-child(1) { animation-delay: 0s; }
.hero-slide:nth-child(2) { animation-delay: 2.5s; }
.hero-slide:nth-child(3) { animation-delay: 5s; }

@keyframes slideFade {
    0% { opacity: 0; z-index: 1; }
    5% { opacity: 1; z-index: 2; }
    33.33% { opacity: 1; z-index: 2; }
    38.33% { opacity: 0; z-index: 1; }
    100% { opacity: 0; z-index: 1; }
}

.hero-slide img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.hero-slide::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.6) 50%, rgba(0, 0, 0, 0.5) 100%);
    z-index: 1;
}

.hero-slide h1,
.hero-slide h2 {
    position: relative;
    z-index: 10;
    color: var(--text-primary);
    text-shadow: 0 4px 24px rgba(0, 0, 0, 0.5);
    margin: 0 0 var(--space-md) 0;
    font-weight: 800;
    letter-spacing: -0.02em;
    font-size: clamp(1.5rem, 3vw + 0.5rem, 2.5rem);
    line-height: 1.2;
    width: 100%;
    max-width: 800px;
    text-align: center;
    padding: 0 var(--space-md);
}

.hero-slide p {
    position: relative;
    z-index: 10;
    color: var(--text-primary);
    font-size: clamp(0.875rem, 1.5vw, 1.125rem);
    max-width: 700px;
    margin: 0 auto;
    padding: 0 var(--space-md);
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.4);
    font-weight: 500;
    line-height: 1.6;
    text-align: center;
    width: 100%;
}

/* =========================================
   CONTACT SECTION
   ========================================= */
#contact {
    margin: var(--space-2xl) var(--space-md) 0;
}

#contact .container {
    background: var(--bg-card);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-xl);
    border: var(--border-light);
    overflow: hidden;
    padding: 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 0;
}

.contact-info { grid-column: 1; border-right: var(--border-light); }
.contact-map { grid-column: 2; border-right: var(--border-light); }
.contact-hours { grid-column: 3; }

.contact-info,
.contact-hours,
.contact-map {
    padding: var(--space-xl);
    display: flex;
    flex-direction: column;
}

.contact-info h2,
.contact-hours h2,
.contact-map h2 {
    font-size: 1.5rem;
    margin-bottom: var(--space-xl);
    color: var(--text-primary);
    font-weight: 700;
}

.contact-info h3 {
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-primary);
    margin-top: var(--space-xl);
    margin-bottom: var(--space-sm);
    font-weight: 700;
}

.contact-info h3:first-of-type { margin-top: 0; }
.contact-info { justify-content: flex-start; }

.contact-map address {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: var(--space-lg);
    font-style: normal;
}

.contact-info p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: var(--space-sm);
}

.contact-info p a {
    color: var(--text-secondary) !important;
    font-weight: 400 !important;
    font-size: 0.95rem !important;
    text-decoration: none !important;
}

.contact-info p a:hover {
    color: var(--text-secondary) !important;
    text-decoration: none !important;
}

.contact-cta-buttons {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    gap: var(--space-sm);
    margin-top: auto;
    align-items: center;
    width: 100%;
    padding-top: var(--space-lg);
}

.contact-cta-buttons .btn {
    background: var(--secondary) !important;
    color: var(--text-primary) !important;
    border-color: transparent !important;
    flex: 1 1 0;
    white-space: nowrap;
    min-width: 0;
}

.contact-cta-buttons .btn:hover {
    background: var(--secondary-hover) !important;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.contact-cta-buttons .btn,
.contact-cta-buttons .btn *,
.contact-cta-buttons .btn span {
    color: var(--text-primary) !important;
}

.contact-cta-buttons .btn span:first-child {
    font-size: 1.1em;
    line-height: 1;
}

.hours-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.hours-list li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-xs) 0;
    border-bottom: var(--border-light);
    font-size: 0.95rem;
    color: var(--text-secondary);
}

.hours-list li:last-child { border-bottom: none; }
.hours-list strong {
    color: var(--text-primary);
    font-weight: 600;
    margin-right: var(--space-sm);
}

.contact-map iframe {
    width: 100%;
    height: 100%;
    min-height: 200px;
    border: 0;
    display: block;
    flex: 1;
    border-radius: var(--radius-md);
}

/* =========================================
   SERVICES SECTION
   ========================================= */
#services {
    margin: var(--space-2xl) var(--space-md) 0;
}

#services .container {
    display: flex;
    flex-direction: column;
}

#services h2 {
    font-size: clamp(1.75rem, 3vw + 0.5rem, 2.5rem);
    margin-bottom: var(--space-xl);
    color: var(--text-primary);
    font-weight: 700;
    text-align: center;
    display: none;
}

.services-grid {
    display: grid;
    gap: var(--space-lg);
    grid-template-columns: repeat(4, 1fr);
}

.service-card {
    background: var(--bg-card);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    border: var(--border-light);
    overflow: hidden;
    padding: var(--space-xl);
    transition: all 0.3s var(--ease-out);
    display: flex;
    flex-direction: column;
    text-align: center;
    position: relative;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s var(--ease-out);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--border-hover);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: var(--space-md);
    letter-spacing: -0.01em;
}

.service-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

/* =========================================
   GALLERY SECTION
   ========================================= */
#gallery {
    margin: var(--space-2xl) var(--space-md) 0;
}

#gallery .container {
    display: flex;
    flex-direction: column;
}

#gallery h2 {
    font-size: clamp(1.75rem, 3vw + 0.5rem, 2.5rem);
    margin-bottom: var(--space-xl);
    color: var(--text-primary);
    font-weight: 700;
    text-align: center;
    display: none;
}

#gallery p {
    text-align: center;
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: var(--space-xl);
}

.gallery-grid {
    display: grid;
    gap: var(--space-lg);
    grid-template-columns: repeat(4, 1fr);
}

.gallery-grid img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    border: var(--border-light);
    transition: all 0.3s var(--ease-out);
    cursor: pointer;
    background: var(--bg-card);
}

.gallery-grid img:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: var(--shadow-xl);
    border-color: var(--border-hover);
}

/* =========================================
   ABOUT SECTION
   ========================================= */
#about {
    margin: var(--space-2xl) var(--space-md) 0;
}

#about .container {
    background: var(--bg-card);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-xl);
    border: var(--border-light);
    overflow: hidden;
    padding: 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
}

.about-content {
    padding: var(--space-xl);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about-content h2 {
    font-size: clamp(1.75rem, 3vw + 0.5rem, 2.5rem);
    margin-bottom: var(--space-xl);
    color: var(--text-primary);
    font-weight: 700;
    letter-spacing: -0.01em;
}

.about-content p {
    color: var(--text-secondary);
    font-size: clamp(1rem, 1.5vw, 1.125rem);
    line-height: 1.8;
    margin: 0;
}

.about-image {
    position: relative;
    overflow: hidden;
    background: var(--bg-card);
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 400px;
    transition: transform 0.5s var(--ease-out);
    background: var(--bg-card);
}

.about-image:hover img {
    transform: scale(1.05);
}

/* =========================================
   HEADER
   ========================================= */
header {
    background: var(--bg-glass);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-xl);
    border: var(--border-light);
    transition: all 0.3s var(--ease-out);
    position: relative;
    z-index: 1000;
    height: var(--header-height);
    margin: var(--space-md) var(--space-md) var(--space-lg);
}

header:hover {
    box-shadow: var(--shadow-2xl);
}

header .container {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 clamp(var(--space-sm), 2vw + 0.5rem, var(--space-lg));
    height: 100%;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: clamp(var(--space-sm), 2vw + 0.5rem, var(--space-xl));
}

.logo {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    transition: transform 0.2s var(--ease-out);
    flex-shrink: 0;
}

.logo:hover {
    transform: translateX(-2px);
}

.logo img {
    height: clamp(32px, 3vw + 1rem, 44px);
    width: auto;
    transition: transform 0.3s var(--ease-elastic);
}

.logo:hover img {
    transform: scale(1.05) rotate(-2deg);
}

.store-name {
    font-weight: 800;
    font-size: clamp(0.9rem, 1.5vw + 0.5rem, 1.25rem);
    color: var(--text-primary);
    letter-spacing: -0.03em;
    white-space: nowrap;
}

nav {
    justify-self: center;
}

nav ul {
    display: flex;
    gap: clamp(var(--space-xs), 1.5vw + 0.5rem, var(--space-xl));
    align-items: center;
    flex-wrap: nowrap;
}

nav a {
    font-weight: 600;
    color: var(--text-secondary);
    font-size: clamp(0.7rem, 1vw + 0.3rem, 0.95rem);
    padding: var(--space-xs) clamp(0.25rem, 0.5vw + 0.25rem, var(--space-sm));
    position: relative;
    border-radius: var(--radius-sm);
    transition: all 0.2s var(--ease-out);
    white-space: nowrap;
}

nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--text-primary);
    transition: width 0.3s var(--ease-elastic);
    border-radius: var(--radius-sm);
}

nav a:hover {
    color: var(--text-primary);
    background: var(--overlay-nav);
}

nav a:hover::after {
    width: calc(100% - 1rem);
    background: var(--text-primary);
}

.lang-switch {
    display: inline-flex;
    align-items: center;
    gap: 0;
    font-weight: 600;
    flex-shrink: 0;
    background: var(--overlay-light);
    border-radius: var(--radius-full);
    padding: 3px;
    border: var(--border-light);
}

.lang-switch a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.25rem;
    padding: 0.4rem clamp(0.6rem, 0.5vw + 0.3rem, 0.85rem);
    border-radius: var(--radius-full);
    transition: all 0.2s var(--ease-out);
    color: var(--text-muted);
    font-weight: 600;
    font-size: clamp(0.7rem, 0.8vw + 0.3rem, 0.875rem);
    line-height: 1.5;
    min-width: 38px;
    text-align: center;
    position: relative;
    white-space: nowrap;
}

.lang-switch a:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 60%;
    background: var(--overlay-strong);
}

.lang-switch a:hover {
    color: var(--text-primary);
    background: var(--overlay-medium);
}

.lang-switch a:active {
    background: var(--overlay-stronger);
    transform: scale(0.98);
}

/* =========================================
   FOOTER
   ========================================= */
footer {
    background: var(--bg-glass);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-xl);
    border: var(--border-light);
    transition: all 0.3s var(--ease-out);
    margin: var(--space-xl) var(--space-md) var(--space-md);
    padding: var(--space-xl) 0;
}

footer:hover {
    box-shadow: var(--shadow-2xl);
}

footer .container {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--space-lg);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: var(--space-md);
    text-align: center;
}

footer img {
    height: 44px;
    width: auto;
    transition: transform 0.3s var(--ease-elastic);
    filter: brightness(0) invert(0.2);
}

footer:hover img {
    transform: scale(1.05);
}

footer p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin: 0;
    font-weight: 500;
}

/* =========================================
   FIXED CONTACT BUTTONS
   ========================================= */
.fixed-contact-buttons {
    position: fixed;
    bottom: var(--space-lg);
    left: 50%;
    transform: translateX(-50%);
    z-index: 999;
    display: flex;
    flex-direction: row;
    gap: var(--space-md);
    align-items: center;
    justify-content: center;
    background: var(--bg-toolbar);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: var(--space-sm) var(--space-lg);
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5), 0 2px 8px rgba(0, 0, 0, 0.3);
    border: var(--border-medium);
}

.fixed-contact-buttons .btn {
    background: var(--secondary) !important;
    color: var(--text-primary) !important;
    border-color: transparent !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    font-size: 0.875rem;
    font-weight: 600;
    padding: 0.875rem 1.5rem;
    min-width: 140px;
    border-radius: 12px;
    gap: 0.5rem;
}

.fixed-contact-buttons .btn,
.fixed-contact-buttons .btn *,
.fixed-contact-buttons .btn span {
    color: var(--text-primary) !important;
}

.fixed-contact-buttons .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

.fixed-contact-buttons .btn:active {
    transform: translateY(-1px);
}

.fixed-contact-buttons .btn:focus {
    outline: none;
}

.fixed-contact-buttons .btn:focus:not(:hover):not(:active) {
    transform: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.fixed-contact-buttons .btn[href^="tel:"],
.fixed-contact-buttons .btn[href*="wa.me"],
.fixed-contact-buttons .btn[href*="google.com/maps"],
.fixed-contact-buttons .btn[href*="instagram.com"] {
    background: var(--secondary) !important;
}

.fixed-contact-buttons .btn[href^="tel:"]:hover,
.fixed-contact-buttons .btn[href*="wa.me"]:hover,
.fixed-contact-buttons .btn[href*="google.com/maps"]:hover,
.fixed-contact-buttons .btn[href*="instagram.com"]:hover {
    background: var(--secondary-hover) !important;
}

.fixed-contact-buttons .btn .icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    color: var(--text-primary) !important;
    fill: currentColor;
}

/* =========================================
   RESPONSIVE BREAKPOINTS
   ========================================= */

/* Tablet (1024px) */
@media (max-width: 1024px) {
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
    
    .contact-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .contact-map {
        grid-column: 1 / -1;
        grid-row: 2;
    }
    
    .contact-hours {
        border-right: none;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
    }
    
    .about-image {
        order: -1;
    }
    
    .about-image img {
        min-height: 300px;
    }
    
    header .container {
        gap: var(--space-lg);
    }
    
    nav ul {
        gap: var(--space-md);
    }
}

/* Mobile (768px) */
@media (max-width: 768px) {
    body {
        padding-bottom: 180px;
    }
    
    header .container {
        gap: clamp(var(--space-xs), 1vw + 0.25rem, var(--space-md));
    }
    
    .hero {
        height: 400px;
        min-height: 400px;
        margin: 0 var(--space-sm);
        border-radius: var(--radius-sm);
    }
    
    .hero-slide {
        padding: var(--space-lg);
    }
    
    #contact {
        margin: var(--space-xl) var(--space-sm) 0;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-info {
        grid-column: 1;
        grid-row: 1;
        border-right: none;
        border-bottom: var(--border-light);
    }
    
    .contact-map {
        grid-column: 1;
        grid-row: 2;
        border-right: none;
        border-bottom: var(--border-light);
    }
    
    .contact-hours {
        grid-column: 1;
        grid-row: 3;
        border-right: none;
    }
    
    .contact-info,
    .contact-hours,
    .contact-map {
        padding: var(--space-lg);
    }
    
    .contact-map iframe {
        min-height: 200px;
    }
    
    #services {
        margin: var(--space-xl) var(--space-sm) 0;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .service-card {
        padding: var(--space-lg);
    }
    
    .service-card h3 {
        font-size: 1.25rem;
    }
    
    #gallery {
        margin: var(--space-xl) var(--space-sm) 0;
    }
    
    #gallery p {
        margin-bottom: var(--space-xl);
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    #about {
        margin: var(--space-xl) var(--space-sm) 0;
    }
    
    .about-content {
        padding: var(--space-lg);
    }
    
    .about-content h2 {
        margin-bottom: var(--space-lg);
        font-size: clamp(1.5rem, 4vw, 2rem);
    }
    
    .about-image img {
        min-height: 250px;
    }
    
    header {
        margin: var(--space-sm) var(--space-sm) var(--space-md);
        height: auto;
        min-height: auto;
        padding: var(--space-sm) 0;
    }
    
    header .container {
        grid-template-columns: auto 1fr auto;
        grid-template-rows: auto auto;
        gap: var(--space-sm);
        padding: 0 var(--space-md);
        align-items: center;
    }
    
    .logo {
        grid-column: 1;
        grid-row: 1;
        gap: var(--space-xs);
    }
    
    .logo img {
        height: 36px;
    }
    
    .store-name {
        font-size: 1rem;
    }
    
    .lang-switch {
        grid-column: 3;
        grid-row: 1;
        justify-self: flex-end;
        font-size: 0.75rem;
        background: var(--overlay-light);
        border: var(--border-light);
    }
    
    .lang-switch a {
        padding: 0.4rem 0.65rem;
        font-size: 0.75rem;
        min-width: 32px;
    }
    
    nav {
        grid-column: 1 / -1;
        grid-row: 2;
        width: 100%;
        padding: 0;
        justify-self: stretch;
    }
    
    nav ul {
        display: flex;
        gap: 0.25rem;
        width: 100%;
        padding: 0;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    nav li {
        flex: 1 1 auto;
        min-width: 0;
    }
    
    nav a {
        font-size: 0.7rem;
        padding: 0.5rem 0.4rem;
        white-space: nowrap;
        min-height: 32px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: var(--radius-sm);
        text-align: center;
        overflow: hidden;
        text-overflow: ellipsis;
        line-height: 1.2;
        width: 100%;
    }
    
    footer {
        margin: var(--space-lg) var(--space-sm) var(--space-sm);
        padding: var(--space-lg) 0;
    }
    
    footer .container {
        padding: 0 var(--space-md);
        gap: var(--space-sm);
    }
    
    footer img {
        height: 36px;
    }
    
    footer p {
        font-size: 0.85rem;
    }
    
    .fixed-contact-buttons {
        left: var(--space-sm);
        right: var(--space-sm);
        transform: none;
        gap: var(--space-sm);
        padding: var(--space-md) var(--space-md);
        border-radius: 12px;
        bottom: var(--space-md);
        flex-wrap: wrap;
        width: auto;
    }
    
    .fixed-contact-buttons .btn {
        min-width: calc(50% - var(--space-sm) / 2);
        max-width: calc(50% - var(--space-sm) / 2);
        padding: 0.625rem 1rem;
        font-size: 0.8rem;
        border-radius: 10px;
        flex: 0 0 calc(50% - var(--space-sm) / 2);
    }
}

/* Small Mobile (480px) */
@media (max-width: 480px) {
    body {
        padding-bottom: 170px;
    }
    
    .hero {
        height: 350px;
        min-height: 350px;
        margin: 0 var(--space-xs);
    }
    
    .hero-slide {
        padding: var(--space-md);
    }
    
    #contact {
        margin: var(--space-lg) var(--space-xs) 0;
    }
    
    .contact-info,
    .contact-hours,
    .contact-map {
        padding: var(--space-md);
    }
    
    #services {
        margin: var(--space-lg) var(--space-xs) 0;
    }
    
    .services-grid {
        gap: var(--space-sm);
    }
    
    .service-card {
        padding: var(--space-md);
    }
    
    .service-card h3 {
        font-size: 1.1rem;
    }
    
    .service-card p {
        font-size: 0.875rem;
    }
    
    #gallery {
        margin: var(--space-lg) var(--space-xs) 0;
    }
    
    .gallery-grid {
        gap: var(--space-sm);
    }
    
    #about {
        margin: var(--space-lg) var(--space-xs) 0;
    }
    
    .about-content {
        padding: var(--space-md);
    }
    
    .about-image img {
        min-height: 200px;
    }
    
    header {
        margin: var(--space-xs) var(--space-xs) var(--space-sm);
        padding: var(--space-xs) 0;
    }
    
    header .container {
        padding: 0 var(--space-sm);
        gap: 0.5rem;
        align-items: center;
    }
    
    .logo {
        gap: var(--space-xs);
    }
    
    .logo img {
        height: 32px;
    }
    
    .store-name {
        font-size: 0.9rem;
    }
    
    .lang-switch {
        font-size: 0.7rem;
        background: var(--overlay-light);
        border: var(--border-light);
    }
    
    .lang-switch a {
        padding: 0.35rem 0.55rem;
        font-size: 0.7rem;
        min-width: 28px;
    }
    
    nav ul {
        gap: 0.2rem;
        flex-wrap: wrap;
    }
    
    nav a {
        font-size: 0.65rem;
        padding: 0.45rem 0.4rem;
        min-height: 30px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        line-height: 1.2;
    }
    
    footer {
        margin: var(--space-md) var(--space-xs) var(--space-xs);
        padding: var(--space-md) 0;
    }
    
    footer .container {
        padding: 0 var(--space-sm);
    }
    
    footer img {
        height: 32px;
    }
    
    footer p {
        font-size: 0.8rem;
    }
    
    .fixed-contact-buttons {
        left: var(--space-xs);
        right: var(--space-xs);
        transform: none;
        gap: var(--space-xs);
        padding: var(--space-sm) var(--space-sm);
        border-radius: 8px;
        bottom: var(--space-sm);
        flex-wrap: wrap;
    }
    
    .fixed-contact-buttons .btn {
        min-width: calc(50% - var(--space-xs) / 2);
        max-width: calc(50% - var(--space-xs) / 2);
        padding: 0.625rem 0.75rem;
        font-size: 0.75rem;
        flex: 0 0 calc(50% - var(--space-xs) / 2);
        border-radius: 10px;
    }
    
    .fixed-contact-buttons .btn span:last-child {
        display: none;
    }
    
    .fixed-contact-buttons .btn {
        min-width: 50px;
        padding: 0.625rem 0.75rem;
    }
}

/* Square Viewport (1:1) */
@media (aspect-ratio: 1/1) {
    header {
        height: auto;
        min-height: var(--header-height);
        margin: var(--space-sm) var(--space-sm) var(--space-md);
    }
    
    header .container {
        grid-template-columns: auto 1fr auto;
        gap: clamp(var(--space-xs), 1vw + 0.25rem, var(--space-md));
        padding: 0 clamp(var(--space-sm), 1.5vw + 0.25rem, var(--space-md));
    }
    
    nav ul {
        flex-wrap: nowrap;
        gap: clamp(0.25rem, 0.5vw + 0.125rem, var(--space-xs));
    }
    
    nav a {
        font-size: clamp(0.65rem, 0.8vw + 0.2rem, 0.75rem);
        padding: var(--space-xs) clamp(0.25rem, 0.3vw + 0.125rem, var(--space-sm));
        white-space: nowrap;
    }
    
    .store-name {
        font-size: clamp(0.85rem, 1.2vw + 0.3rem, 1rem);
    }
    
    .logo img {
        height: clamp(28px, 2.5vw + 0.5rem, 36px);
    }
    
    .lang-switch {
        font-size: clamp(0.65rem, 0.7vw + 0.2rem, 0.75rem);
        background: var(--overlay-light);
        border: var(--border-light);
    }
    
    .lang-switch a {
        padding: 0.35rem clamp(0.5rem, 0.4vw + 0.25rem, 0.65rem);
        font-size: clamp(0.65rem, 0.7vw + 0.2rem, 0.75rem);
        min-width: 32px;
    }
    
    .hero {
        height: clamp(300px, 40vh, 400px);
        min-height: clamp(300px, 40vh, 400px);
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-info {
        grid-column: 1;
        grid-row: 1;
        border-right: none;
        border-bottom: var(--border-light);
    }
    
    .contact-map {
        grid-column: 1;
        grid-row: 2;
        border-right: none;
        border-bottom: var(--border-light);
    }
    
    .contact-hours {
        grid-column: 1;
        grid-row: 3;
        border-right: none;
    }
    
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
    
    .about-grid {
        grid-template-columns: 1fr;
    }
    
    .about-image {
        order: -1;
    }
    
    .fixed-contact-buttons {
        gap: var(--space-xs);
        padding: var(--space-sm) var(--space-md);
        flex-wrap: wrap;
    }
    
    .fixed-contact-buttons .btn {
        min-width: calc(50% - var(--space-xs) / 2);
        max-width: calc(50% - var(--space-xs) / 2);
        flex: 0 0 calc(50% - var(--space-xs) / 2);
        padding: 0.875rem 1rem;
        font-size: 0.8rem;
    }
}

/* Near-Square Viewport */
@media (min-aspect-ratio: 0.9/1) and (max-aspect-ratio: 1.1/1) and (min-width: 600px) {
    header .container {
        gap: clamp(var(--space-sm), 1.5vw + 0.5rem, var(--space-lg));
        padding: 0 clamp(var(--space-sm), 1.5vw + 0.5rem, var(--space-md));
    }
    
    nav ul {
        gap: clamp(var(--space-xs), 1vw + 0.25rem, var(--space-md));
    }
    
    nav a {
        font-size: clamp(0.7rem, 0.9vw + 0.3rem, 0.85rem);
        padding: var(--space-xs) clamp(0.3rem, 0.4vw + 0.2rem, var(--space-sm));
    }
    
    .store-name {
        font-size: clamp(0.95rem, 1.3vw + 0.4rem, 1.1rem);
    }
    
    .logo img {
        height: clamp(34px, 2.8vw + 0.8rem, 40px);
    }
    
    .hero {
        height: clamp(350px, 45vh, 450px);
        min-height: clamp(350px, 45vh, 450px);
    }
    
    .services-grid { grid-template-columns: repeat(3, 1fr); }
    .gallery-grid { grid-template-columns: repeat(3, 1fr); }
    
    .contact-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .contact-map {
        grid-column: 1 / -1;
        grid-row: 2;
    }
    
    .contact-hours {
        border-right: none;
    }
}
