﻿:root {
    --dark-blue: #1317ba;
    --gold-accent: #f5d144;
    --gold-bright: #e8e01a;
    --cream-light: #FDFBF7;
    --cream-dark: #F5EFEB;
    --text-dark: #1A1A1A;
    --text-light: #FDFBF7;
    --glass-bg: rgba(255, 240, 7, 0.85);
    --glass-border: rgba(212, 175, 55, 0.25);
    --glass-shadow: 0 8px 32px rgba(74, 14, 27, 0.08);
}

*, *::before, *::after {
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background: rgb(255,245,9, 0.12);
    color: var(--text-dark);
    margin: 0;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, .brand-text, .photo-caption, .card-header-soft {
    font-family: 'Playfair Display', serif;
}

/* ══════════════════════════
   SCROLL ANIMATIONS
══════════════════════════ */
.reveal {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

    .reveal.visible {
        opacity: 1;
        transform: translateY(0);
    }

.reveal-left {
    opacity: 0;
    transform: translateX(-36px);
    transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

    .reveal-left.visible {
        opacity: 1;
        transform: translateX(0);
    }

.reveal-right {
    opacity: 0;
    transform: translateX(36px);
    transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

    .reveal-right.visible {
        opacity: 1;
        transform: translateX(0);
    }

.reveal-delay-1 {
    transition-delay: 0.1s;
}

.reveal-delay-2 {
    transition-delay: 0.2s;
}

.reveal-delay-3 {
    transition-delay: 0.3s;
}

.reveal-delay-4 {
    transition-delay: 0.4s;
}

/* ── NAV ── */
.minimal-nav-container {
    position: fixed;
    top: 20px;
    width: 100%;
    display: flex;
    justify-content: center;
    z-index: 1000;
    padding: 0 16px;
    transition: transform 0.4s ease, opacity 0.4s ease;
}

.capsule-nav {
    background: #fff509;
    backdrop-filter: blur(26px);
    -webkit-backdrop-filter: blur(16px);
    border-radius: 14px;
    padding: 0 28px;
    display: flex;
    align-items: center;
    height: 72px;
    width: 100%;
    max-width: 1320px;
    box-shadow: 0 8px 40px rgba(0,0,0,0.22);
    border: 1px solid rgba(255,255,255,0.7);
    position: relative;
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.nav-left a, .nav-right a {
    font-family: 'Times New Roman';
    font-size: 1.4rem;
    font-weight: 600;
    color: #8a1212;
    text-decoration: none;
    padding: 8px 12px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: background 0.18s;
    white-space: nowrap;
}

    .nav-left a:hover, .nav-right a:hover {
        background: #ffe994;
    }

.nav-center {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 10px;
    pointer-events: auto;
}

.brand-dot {
    width: 4px;
    height: 4px;
    background: #1317ba;
    border-radius: 50%;
    flex-shrink: 0;
}

.brand-title {
    font-family: 'Times New Roman';
    font-size: 2.9rem;
    font-weight: 800;
    letter-spacing: 0.5px;
    color: #1317ba;
    white-space: nowrap;
    text-decoration: none;
}

/* ── Hamburger — hidden by default, JS adds .nav-compact to capsule-nav ── */
.hamburger-btn {
    display: none;
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 82px;
    left: 10px;
    right: 10px;
    background: #e8e01a;
    border-radius: 18px;
    padding: 16px 20px;
    box-shadow: 0 8px 40px rgba(0,0,0,0.18);
    border: 1px solid rgba(255,255,255,0.7);
    z-index: 999;
    flex-direction: column;
    gap: 4px;
    animation: menuSlide 0.25s cubic-bezier(0.22,1,0.36,1);
}

@keyframes menuSlide {
    from {
        opacity: 0;
        transform: translateY(-12px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.mobile-menu a {
    font-family: 'Times New Roman';
    font-size: 1rem;
    font-weight: 500;
    color: #8a1212;
    text-decoration: none;
    padding: 10px 14px;
    border-radius: 10px;
    transition: background 0.18s;
}

    .mobile-menu a:hover {
        background: #ffe994;
    }

.mobile-menu.open {
    display: flex;
}

/* When nav is in compact mode (JS-driven, fires before CSS breakpoint) */
.capsule-nav.nav-compact .nav-left,
.capsule-nav.nav-compact .nav-right {
    display: none;
}

.capsule-nav.nav-compact .nav-center {
    position: static;
    transform: none;
}

.capsule-nav.nav-compact .nav-inner {
    justify-content: space-between;
}

.capsule-nav.nav-compact .hamburger-btn {
    display: flex;
    position: static;
}

/* ── HERO ── */
.hero-section {
    position: relative;
    height: 100vh;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('/images/bscHero.webp');
    background-size: cover;
    background-position: center 0%;
    z-index: 0;
    animation: heroZoom 8s ease-out forwards;
}

@keyframes heroZoom {
    from {
        transform: scale(1.06);
    }

    to {
        transform: scale(1);
    }
}

.hero-gradient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(204,204,202,0.2) 90%, rgba(255,245,9,0.8) 100%, var(--cream-light) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 0 20px;
    margin-top: 5vh;
    color: var(--text-light);
    animation: heroFadeUp 1.1s cubic-bezier(0.22, 1, 0.36, 1) 0.3s both;
}

@keyframes heroFadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-title {
    font-size: clamp(2.8rem, 8vw, 6.5rem);
    font-weight: 400;
    line-height: 1.1;
    margin-bottom: 20px;
    text-shadow: 0 10px 30px rgba(0,0,0,0.4);
}

.hero-subtitle {
    font-size: clamp(0.9rem, 2.5vw, 1.4rem);
    font-weight: 400;
    letter-spacing: 5px;
    text-transform: uppercase;
    opacity: 0.9;
    color: #F5EFEB;
    margin-bottom: 15px;
}

/* ── FLOATING ELEMENTS ── */
.floating-elements-container {
    position: relative;
    z-index: 10;
    max-width: 1200px;
    margin: -0px auto 60px auto;
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 0 30px;
    gap: 50px;
}

.photo-cluster {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 30px;
}

.photo-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.6s cubic-bezier(0.7, 1, 0.2, 1);
}

.floating-photo {
    width: 180px;
    height: 260px;
    background-size: cover;
    background-position: center;
    box-shadow: 0 25px 50px rgba(74,14,27,0.15);
    border: 2px solid var(--cream-light);
    border-radius: 16px 16px 16px 16px;
    transition: box-shadow 0.5s ease, transform 0.5s ease;
}

.photo-caption {
    font-size: 1.2rem;
    padding: 18px 0 0;
    color: #1317ba;
    text-align: center;
}

.photo-item:nth-child(1) {
    transform: translateY(0);
}

.photo-item:nth-child(2) {
    transform: translateY(40px);
}

.photo-item:nth-child(1):hover {
    transform: translateY(-15px);
}

    .photo-item:nth-child(1):hover .floating-photo {
        box-shadow: 0 40px 70px rgba(74,14,27,0.25);
    }

.photo-item:nth-child(2):hover {
    transform: translateY(25px);
}

    .photo-item:nth-child(2):hover .floating-photo {
        box-shadow: 0 40px 70px rgba(74,14,27,0.25);
    }

.glass-qr-card {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 14px;
    padding-top: 10px;
}

.store-row {
    display: flex;
    flex-direction: row;
    gap: 10px;
    justify-content: flex-end;
}

.qr-external-link {
    align-self: stretch;
    text-align: center;
    background: #1317ba;
    color: #ffffff;
    font-size: 0.85rem;
    font-weight: 600;
    padding: 12px 20px;
    border-radius: 14px;
    text-decoration: none;
    letter-spacing: 0.03em;
    transition: background 0.18s, transform 0.15s, box-shadow 0.2s;
    display: block;
}

    .qr-external-link:hover {
        background: #0d0f8a;
        transform: translateY(-3px);
        box-shadow: 0 8px 24px rgba(19,23,186,0.3);
    }

.store-btn {
    display: flex;
    background: transparent;
    border: none;
    padding: 0;
    text-decoration: none;
    transition: transform 0.2s cubic-bezier(0.22,1,0.36,1), opacity 0.15s;
}

    .store-btn:hover {
        transform: translateY(-4px) scale(1.03);
        opacity: 0.85;
    }

.store-badge-img {
    height: 60px;
    width: auto;
    display: block;
}

/* ── ABOUT SECTION ── */
.about-section {
    padding: 20px 20px 20px; /* reduced side padding */
    max-width: 100%; /* full width container */
    margin: auto;
    font-family: 'Times New Roman';
    text-align: justify;
}

    /* Inner container that constrains to readable width but leaves less margin */
    .about-section .container {
        max-width: 1100px;
        padding: 0 12px;
        margin: 0 auto;
    }

.about-title {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #1317ba;
    position: relative;
}

    .about-title::after {
        content: "";
        width: 60px;
        height: 3px;
        background: #c9a34e;
        position: absolute;
        left: 0;
        bottom: -8px;
    }

.about-intro {
    font-size: 17px;
    font-weight: 500;
    margin-bottom: 15px;
    color: #333;
}

.about-section p {
    font-size: 15px;
    line-height: 1.75;
    margin-bottom: 10px;
    color: #555;
}

.about-highlight {
    margin-top: 25px;
    padding: 15px 20px;
    background: #f9f6f1;
    border-left: 4px solid #c9a34e;
    border-radius: 6px;
}

/* ── CONTACT SECTION ── */
.contact-section {
    padding: 30px 0 100px;
    position: relative;
    background: var(--cream-dark);
    overflow: hidden;
    text-align: center;
}

    .contact-section::before {
        content: '';
        position: absolute;
        inset: 0;
        background-image: radial-gradient(ellipse 60% 40% at 15% 10%, rgba(201,151,44,0.07) 0%, transparent 70%), radial-gradient(ellipse 50% 35% at 85% 90%, rgba(74,14,27,0.06) 0%, transparent 70%);
        pointer-events: none;
    }

.section-heading {
    font-family: 'Times New Roman';
    text-align: center;
    font-size: clamp(2rem, 5vw, 3.2rem);
    font-weight: 600;
    color: #1317ba;
    margin-bottom: 10px;
    letter-spacing: 0.01em;
}

.section-subheading {
    text-align: center;
    font-size: 0.82rem;
    color: #1317ba;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    margin-bottom: 50px;
    font-weight: 500;
    display: inline-block;
    background: #e8e01a;
    padding: 5px 16px;
    border-radius: 20px;
}

/* ── CONTACT GRID ── */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    max-width: 1100px;
    margin: 0 auto;
    padding: 5px;
}

/* ── ZZ CARD ── */
.zz-card {
    background: var(--cream-light);
    border: 1px solid rgba(74,14,27,0.08);
    border-radius: 24px;
    box-shadow: 0 10px 36px rgba(74,14,27,0.09), 0 2px 8px rgba(74,14,27,0.05);
    transition: transform 0.40s cubic-bezier(0.23,1,0.32,1), box-shadow 0.40s cubic-bezier(0.23,1,0.32,1), border-color 0.30s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    min-height: 240px;
}

    .zz-card.text-left {
        flex-direction: column;
    }

    .zz-card.map-left {
        flex-direction: column;
    }

    .zz-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 30px;
        right: 30px;
        height: 2px;
        background: linear-gradient(90deg, transparent, var(--gold-accent), transparent);
        opacity: 0;
        transition: opacity 0.4s ease;
        z-index: 12;
    }

    .zz-card:hover::before {
        opacity: 1;
    }

    .zz-card:hover {
        transform: translateY(-6px) scale(1.01);
        border-color: rgba(201,151,44,0.35);
        box-shadow: 0 22px 56px rgba(74,14,27,0.14), 0 4px 14px rgba(74,14,27,0.07);
    }

.card-text {
    flex: 1 1 0;
    padding: 24px 20px;
    display: flex;
    flex-direction: column;
    min-width: 0;
    text-align: center;
    color: #0c2451;
}

.card-map {
    flex: 0 0 50%;
    max-width: 100%;
    position: relative;
    overflow: hidden;
}

.text-left .card-map {
    border-left: 1px solid rgba(74,14,27,0.07);
    border-radius: 23px;
}

.map-left .card-map {
    border-right: 1px solid rgba(74,14,27,0.07);
    border-radius: 25px;
}

.card-map iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
    filter: sepia(0.15) contrast(1.05);
    transition: filter 0.4s ease;
}

.zz-card:hover .card-map iframe {
    filter: sepia(0) contrast(1.08);
}

.card-badge {
    font-size: 0.67rem;
    text-align: center;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    background: rgba(74,14,27,0.06);
    color: #1317ba;
    border: 1px solid rgba(74,14,27,0.14);
    border-radius: 40px;
    padding: 3px 11px;
    margin-bottom: 10px;
    font-weight: 500;
    align-self: center;
}

.card-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: #8a1212;
    line-height: 1.35;
    margin-bottom: 12px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(74,14,27,0.08);
}

.info-row {
    display: flex;
    align-items: flex-start;
    gap: 9px;
    margin-bottom: 8px;
    font-size: 0.78rem;
    color: #666;
    line-height: 1.5;
}

.icon-circle {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: #1317ba;
    border: 1px solid rgba(26,111,196,0.18);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 1px;
    transition: transform 0.2s ease, background 0.2s ease;
}

    .icon-circle i {
        color: #e8e01a;
        font-size: 0.62rem;
    }

.info-row:hover .icon-circle {
    transform: scale(1.15);
    background: #0d0f8a;
}

/* ── FOOTER ── */
.glass-footer {
    padding: 70px 20px 36px;
    position: relative;
    z-index: 2;
    overflow: hidden;
    color: #ffffff;
}

    .glass-footer::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-image: url('/images/bscfooter.webp');
        background-size: 70%;
        background-position: center;
        background-color: rgba(1, 5, 45, 0.9);
        background-blend-mode: overlay;
        transform: scale(1.1);
        z-index: -1;
    }

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 50px;
    position: relative;
}

.footer-brand h3 {
    font-size: 1.7rem;
    font-family: 'Times New Roman', serif;
    margin-bottom: 16px;
    color: #e8e01a;
}

.footer-brand p {
    font-size: 0.92rem;
    opacity: 0.9;
    line-height: 1.7;
    max-width: 380px;
    color: #ffffff;
}

.footer-links h4 {
    font-size: 0.88rem;
    font-family: 'Times New Roman', serif;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 22px;
    font-weight: 600;
    color: #e8e01a;
}

.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .footer-links ul li {
        margin-bottom: 13px;
    }

        .footer-links ul li a {
            color: #ffffff;
            text-decoration: none;
            font-size: 0.92rem;
            opacity: 0.7;
            transition: all 0.3s ease;
        }

            .footer-links ul li a:hover {
                opacity: 1;
                color: #e8e01a;
                padding-left: 5px;
            }

.social-links a {
    color: #e8e01a;
    font-size: 1.3rem;
    margin-right: 22px;
    opacity: 0.8;
    transition: opacity 0.3s, transform 0.3s;
    display: inline-block;
}

    .social-links a:hover {
        opacity: 1;
        transform: translateY(-4px) scale(1.15);
    }

.footer-bottom {
    max-width: 1200px;
    margin: 50px auto 0;
    padding-top: 22px;
    border-top: 1px solid rgba(232, 224, 26, 0.2);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 0.92rem;
    color: #FDFBF7;
    position: relative;
}

#dendronlink {
    color: #e8e01a;
}

/* ════════════════════════════
   HAMBURGER BUTTON BASE
   (must be outside media queries so
    JS-driven .nav-compact can show it)
════════════════════════════ */
.hamburger-btn {
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
    padding: 6px;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

    .hamburger-btn span {
        display: block;
        width: 22px;
        height: 2px;
        background: #1317ba;
        border-radius: 2px;
        transition: all 0.3s ease;
    }

    .hamburger-btn.open span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

    .hamburger-btn.open span:nth-child(2) {
        opacity: 0;
    }

    .hamburger-btn.open span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }

/* ════════════════════════════
   RESPONSIVE — TABLET (≤900px)
════════════════════════════ */
@media (max-width: 900px) {

    /* ── Floating founders ── */
    .floating-elements-container {
        flex-direction: column;
        align-items: center;
        /* no negative margin — avoids clipping at the top */
        margin: 20px auto 60px;
        padding: 0 24px;
        gap: 36px;
    }

    .photo-cluster {
        justify-content: center;
        gap: 24px;
    }

    .floating-photo {
        width: 150px;
        height: 210px;
    }

    .photo-item:nth-child(2) {
        transform: translateY(28px);
    }

        .photo-item:nth-child(2):hover {
            transform: translateY(14px);
        }

    /* ── QR / store card: center it ── */
    .glass-qr-card {
        width: 100%;
        max-width: 360px;
        align-items: center; /* center-align contents when stacked */
    }

    .store-row {
        justify-content: center;
        flex-direction: row;
    }

    /* ── Contact grid: single column ── */
    .contact-grid {
        grid-template-columns: 1fr;
        padding: 0 24px;
        gap: 20px;
    }

    /* All cards stack: text on top, map on bottom */
    .zz-card,
    .zz-card.text-left,
    .zz-card.map-left {
        flex-direction: column;
        min-height: unset;
    }

        /* Map always goes below on stacked layout */
        .zz-card.map-left .card-map {
            order: 2; /* push map to bottom even on map-left cards */
        }

        .zz-card.map-left .card-text {
            order: 1;
        }

    /* Map dimensions and borders reset for stacked view */
    .card-map,
    .text-left .card-map,
    .map-left .card-map {
        flex: 0 0 220px;
        width: 100%;
        height: 220px;
        min-height: 220px;
        border-radius: 0 0 22px 22px !important;
        border-left: none !important;
        border-right: none !important;
        border-top: 1px solid rgba(74,14,27,0.07);
    }

        /* iframe must fill its container */
        .card-map iframe {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
        }

    /* Make card-map a positioning context */
    .card-map {
        position: relative;
    }

    /* ── Slide animations: use vertical on tablet to avoid horizontal overflow ── */
    .reveal-left,
    .reveal-right {
        transform: translateY(32px);
    }

        .reveal-left.visible,
        .reveal-right.visible {
            transform: translateY(0);
        }

    /* ── Footer ── */
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 36px;
    }

    .footer-brand {
        grid-column: 1 / -1;
    }

        .footer-brand p {
            max-width: 100%;
        }
}

/* ════════════════════════════
   RESPONSIVE — MOBILE (≤600px)
════════════════════════════ */
@media (max-width: 600px) {

    /* ── Nav ── */
    .minimal-nav-container {
        top: 12px;
        padding: 0 12px;
    }

    .capsule-nav {
        height: 58px;
        border-radius: 18px;
        padding: 0 16px;
    }

    /* Always compact on mobile regardless of JS */
    .nav-left, .nav-right {
        display: none !important;
    }

    /* Relative so the absolutely-centred brand works */
    .nav-inner {
        justify-content: space-between;
        position: relative;
    }

        /* Invisible left spacer equals hamburger width — keeps brand truly centred */
        .nav-inner::before {
            content: '';
            width: 34px;
            flex-shrink: 0;
            display: block;
        }

    /* Brand pinned to exact centre of the bar */
    .nav-center {
        position: absolute !important;
        left: 50% !important;
        transform: translateX(-50%) !important;
        gap: 6px;
        pointer-events: auto;
    }

    .brand-title {
        font-size: 1.05rem;
        letter-spacing: 0;
        white-space: nowrap;
    }

    .brand-dot {
        width: 4px;
        height: 4px;
    }

    .hamburger-btn {
        display: flex;
        position: static;
        flex-shrink: 0;
    }

    .mobile-menu {
        top: 76px;
    }

    /* ── Hero: swap to portrait image for mobile ── */
    .hero-bg {
        background-image: url('/images/bscMobHero.webp');
        background-position: center center;
    }

    .hero-title {
        font-size: 2.4rem;
    }

    .hero-subtitle {
        font-size: 0.75rem;
        letter-spacing: 3px;
    }

    /* ── Floating photos ── */
    .floating-elements-container {
        margin: 16px auto 30px;
        padding: 0 14px;
        gap: 48px;
    }

    .photo-cluster {
        gap: 14px;
    }

    .floating-photo {
        width: 128px;
        height: 182px;
        border-radius: 12px 12px 12px 12px;
    }

    .photo-caption {
        font-size: 0.95rem;
        padding-top: 10px;
    }

    .photo-item:nth-child(2) {
        transform: translateY(18px);
    }

        .photo-item:nth-child(2):hover {
            transform: translateY(8px);
        }

    /* ── QR / store card ── */
    .glass-qr-card {
        width: 100%;
        max-width: 100%;
        align-items: center;
        padding: 0 4px;
    }

    .store-row {
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
    }

    .store-badge-img {
        height: 44px;
    }

    .qr-external-link {
        width: 100%;
        text-align: center;
    }

    /* ── About ── */
    .about-section {
        padding: 12px 0 44px;
    }

        .about-section .container {
            padding: 0 14px;
        }

    .about-title {
        font-size: 1.55rem;
    }

    .about-intro {
        font-size: 15px;
    }

    .about-section p {
        font-size: 14px;
    }

    /* ── Contact ── */
    .contact-section {
        padding: 50px 0 60px;
    }

    .contact-grid {
        padding: 0 12px;
        gap: 16px;
    }

    .card-text {
        padding: 16px 14px;
    }

    .card-map,
    .text-left .card-map,
    .map-left .card-map {
        flex: 0 0 190px;
        height: 190px;
        min-height: 190px;
    }

    .card-name {
        font-size: 0.98rem;
    }

    .info-row {
        font-size: 0.73rem;
    }

    /* ── Footer ── */
    .glass-footer {
        padding: 50px 16px 28px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 26px;
        text-align: center;
    }

    .footer-brand h3 {
        font-size: 1.4rem;
    }

    .footer-brand p {
        font-size: 0.88rem;
        margin: 0 auto;
    }

    .footer-links h4 {
        font-size: 0.82rem;
    }

    .footer-links ul li a {
        font-size: 0.88rem;
    }

    .social-links {
        display: flex;
        justify-content: center;
        gap: 10px;
    }

        .social-links a {
            margin-right: 0;
        }

    .footer-bottom {
        flex-direction: column;
        gap: 8px;
        text-align: center;
        font-size: 0.75rem;
        margin-top: 32px;
    }

    /* disable lift hover on touch */
    .zz-card:hover {
        transform: none;
    }
}

/* ════════════════════════════
   RESPONSIVE — XS (≤400px)
════════════════════════════ */
@media (max-width: 400px) {
    .brand-title {
        font-size: 0.88rem;
    }

    .floating-photo {
        width: 108px;
        height: 155px;
    }

    .photo-cluster {
        gap: 10px;
    }

    .store-row {
        flex-direction: row;
        align-items: center;
    }

    .store-badge-img {
        height: 40px;
    }

    .contact-grid {
        padding: 0 10px;
        gap: 14px;
    }

    .card-map,
    .text-left .card-map,
    .map-left .card-map {
        flex: 0 0 170px;
        height: 170px;
        min-height: 170px;
    }
}


#backToTopBtn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
    background: #1e2bbf;
    color: #fff;
    border: none;
    border-radius: 50%;
    width: 45px;
    height: 45px;
    font-size: 18px;
    cursor: pointer;
    display: none;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
}

    #backToTopBtn:hover {
        background: #000;
        transform: translateY(-3px);
    }

.fancy-shop {
    text-align: center;
    font-size: 32px;
    color: #000000;
    position: relative;
    width: 100%;
}

.cart-icon {
    margin-left: 10px;
    animation: moveCart 3s infinite ease-in-out;
    color: #c9a24c;
}

.phone-icon {
    margin-left: 5px;
    animation: bouncePhone 2s infinite;
    color: #1e2bbf;
}

/* Cart moving like shopping */
@keyframes moveCart {
    0% {
        transform: translateX(0);
    }

    50% {
        transform: translateX(10px);
    }

    100% {
        transform: translateX(0);
    }
}

/* Phone bounce (app usage feel) */
@keyframes bouncePhone {
    0%,100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-6px);
    }
}

