        /* ── Reset & Base */
        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        body {
            font-family: 'Inter', sans-serif;
            color: #1a1a1a;
            background: #f8f7f5;
        }

        /* ── Hero Section  */
        .store-hero {
            position: relative;
            width: 100%;
            height: 420px;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
            background: url('/Images/storeImage.jpeg') center center / cover no-repeat;
        }

        .store-hero::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(to bottom,
                    rgba(25, 12, 5, 0.72) 0%,
                    rgba(25, 12, 5, 0.52) 60%,
                    rgba(25, 12, 5, 0.72) 100%);
        }

        .store-hero-content {
            position: relative;
            z-index: 1;
            text-align: center;
            padding: 0 20px;
        }

        .store-hero-eyebrow {
            display: inline-block;
            font-size: 11px;
            font-weight: 600;
            letter-spacing: 3px;
            text-transform: uppercase;
            color: #d4a96a;
            margin-bottom: 16px;
            border: 1px solid rgba(212, 169, 106, 0.4);
            padding: 5px 16px;
            border-radius: 20px;
        }

        .store-hero h1 {
            font-family: 'Jomolhari', serif;
            font-size: clamp(32px, 5vw, 56px);
            font-weight: 400;
            color: #ffffff;
            letter-spacing: 1px;
            line-height: 1.2;
            margin-bottom: 14px;
        }

        .store-hero-sub {
            font-size: 16px;
            font-weight: 400;
            color: rgba(255, 255, 255, 0.82);
            letter-spacing: 0.3px;
        }

        /* ── Breadcrumb ─────────────────────────────── */
        .breadcrumb-bar {
            background: #ffffff;
            border-bottom: 1px solid #eee;
            padding: 10px 0;
        }

        .breadcrumb-bar .container {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 13px;
            color: #888;
        }

        .breadcrumb-bar a {
            color: #3C1E12;
            text-decoration: none;
            font-weight: 500;
            transition: opacity 0.2s;
        }

        .breadcrumb-bar a:hover {
            opacity: 0.75;
        }

        .breadcrumb-bar .sep {
            color: #ccc;
        }

        .breadcrumb-bar .current {
            color: #555;
        }

        /* ── Layout Container ─────────────────────────── */
        .container {
            max-width: 1100px;
            margin: 0 auto;
            padding: 0 24px;
        }

        /* ── Store Content Section ─────────────────────── */
        .store-content {
            padding: 60px 0 80px;
        }

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

        /* ── Info Panel ─────────────────────────────── */
        .store-info-panel {
            background: #ffffff;
            border-radius: 14px;
            overflow: hidden;
            box-shadow: 0 4px 24px rgba(0, 0, 0, 0.07);
        }

        .info-panel-header {
            background: #3C1E12;
            padding: 24px 28px;
        }

        .info-panel-header h2 {
            font-family: 'Jomolhari', serif;
            font-size: 22px;
            font-weight: 400;
            color: #ffffff;
            letter-spacing: 0.5px;
        }

        .info-panel-header p {
            font-size: 13px;
            color: rgba(255, 255, 255, 0.65);
            margin-top: 4px;
        }

        .info-panel-body {
            padding: 28px;
        }

        .info-item {
            display: flex;
            align-items: flex-start;
            gap: 16px;
            padding: 16px 0;
            border-bottom: 1px solid #f0ece8;
        }

        .info-item:last-of-type {
            border-bottom: none;
        }

        .info-icon {
            width: 38px;
            height: 38px;
            background: #fdf4ec;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            color: #3C1E12;
            font-size: 14px;
        }

        .info-text {
            flex: 1;
        }

        .info-text strong {
            display: block;
            font-size: 13px;
            font-weight: 600;
            color: #3C1E12;
            margin-bottom: 3px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .info-text p,
        .info-text a {
            font-size: 14px;
            color: #555;
            line-height: 1.6;
            text-decoration: none;
        }

        .info-text a:hover {
            color: #3C1E12;
        }

        /* ── Action Buttons ─────────────────────────────── */
        .action-buttons {
            display: flex;
            gap: 12px;
            margin-top: 24px;
            flex-wrap: wrap;
        }

        .btn {
            display: inline-flex;
            align-items: center;
            gap: 9px;
            padding: 12px 22px;
            border-radius: 8px;
            font-family: 'Inter', sans-serif;
            font-size: 14px;
            font-weight: 600;
            text-decoration: none;
            cursor: pointer;
            border: none;
            transition: background 0.25s ease, transform 0.2s ease, box-shadow 0.25s ease;
            white-space: nowrap;
        }

        .btn i {
            font-size: 15px;
        }

        /* Get Directions — green */
        .btn-directions {
            background: #2e7d32;
            color: #ffffff;
            box-shadow: 0 3px 12px rgba(46, 125, 50, 0.28);
        }

        .btn-directions:hover {
            background: #1b5e20;
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(46, 125, 50, 0.36);
        }

        /* WhatsApp — whatsapp green */
        .btn-whatsapp {
            background: #25D366;
            color: #ffffff;
            box-shadow: 0 3px 12px rgba(37, 211, 102, 0.28);
        }

        .btn-whatsapp:hover {
            background: #1da851;
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(37, 211, 102, 0.36);
        }

        /* ── Map Panel ─────────────────────────────── */
        .store-map-panel {
            background: #ffffff;
            border-radius: 14px;
            overflow: hidden;
            box-shadow: 0 4px 24px rgba(0, 0, 0, 0.07);
            display: flex;
            flex-direction: column;
        }

        .map-panel-header {
            padding: 20px 28px;
            border-bottom: 1px solid #f0ece8;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .map-panel-header .map-pin-icon {
            width: 36px;
            height: 36px;
            background: #fdf4ec;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #3C1E12;
            font-size: 14px;
            flex-shrink: 0;
        }

        .map-panel-header h3 {
            font-size: 15px;
            font-weight: 600;
            color: #1a1a1a;
        }

        .map-panel-header p {
            font-size: 12px;
            color: #888;
        }

        .map-wrapper {
            width: 100%;
            aspect-ratio: 4 / 3;
        }

        .map-wrapper iframe {
            width: 100%;
            height: 100%;
            border: none;
            display: block;
        }

        /* ── Responsive ─────────────────────────────── */
        @media (max-width: 900px) {
            .store-grid {
                grid-template-columns: 1fr;
                gap: 28px;
            }

            .store-hero {
                height: 320px;
            }
        }

        @media (max-width: 576px) {
            .store-hero {
                height: 260px;
            }

            .store-content {
                padding: 36px 0 60px;
            }

            .info-panel-body,
            .map-panel-header {
                padding: 20px;
            }

            .info-panel-header {
                padding: 18px 20px;
            }

            .action-buttons {
                flex-direction: column;
            }

            .btn {
                width: 100%;
                justify-content: center;
            }
        }
