/* 
 * ==========================================================================
 * B X N STORES BROXBURN - MODERN RETAIL STYLING
 * Clean, High-Contrast, Premium Design
 * 7 West Main Street, Broxburn, EH52 5RQ
 * ==========================================================================
 */

:root {
    /* Brand Colors */
    --primary: #0a0f1d;
    --primary-light: #151f38;
    --accent: #2563eb;
    --accent-hover: #1d4ed8;
    --accent-gold: #f59e0b;
    --accent-purple: #7c3aed;
    --accent-pink: #db2777;
    --success: #10b981;
    --success-bg: #d1fae5;
    
    /* Surfaces & Backgrounds */
    --bg-page: #f8fafc;
    --bg-surface: #ffffff;
    --bg-alt: #f1f5f9;
    --border: #e2e8f0;
    --border-hover: #cbd5e1;
    
    /* Typography */
    --text-main: #0f172a;
    --text-muted: #475569;
    --text-light: #64748b;
    
    --font-heading: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

    /* Radius & Shadows */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 18px;
    --radius-xl: 24px;
    --radius-full: 9999px;
    
    --shadow-sm: 0 1px 3px rgba(15, 23, 42, 0.06);
    --shadow-md: 0 4px 12px rgba(15, 23, 42, 0.08);
    --shadow-lg: 0 12px 28px rgba(15, 23, 42, 0.12);
    --shadow-hover: 0 16px 32px rgba(37, 99, 235, 0.15);
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    background-color: var(--bg-page);
    color: var(--text-main);
    font-family: var(--font-body);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

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

button {
    font-family: inherit;
    border: none;
    background: none;
    cursor: pointer;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

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

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-weight: 700;
    border-radius: var(--radius-md);
    padding: 12px 22px;
    font-size: 0.95rem;
    transition: all 0.2s ease;
    cursor: pointer;
}

.btn-primary {
    background: var(--accent);
    color: #ffffff;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.25);
}

.btn-primary:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(37, 99, 235, 0.35);
}

.btn-secondary {
    background: #ffffff;
    color: var(--text-main);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
}

.btn-secondary:hover {
    background: var(--bg-alt);
    border-color: var(--border-hover);
    transform: translateY(-2px);
}

.btn-gold {
    background: var(--accent-gold);
    color: #ffffff;
    box-shadow: 0 4px 12px rgba(245, 158, 11, 0.3);
}

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

/* ==========================================================================
   TOP UTILITY ANNOUNCEMENT BAR
   ========================================================================== */
.top-bar {
    background: var(--primary);
    color: #cbd5e1;
    font-size: 0.85rem;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.top-bar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.top-bar-left {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
}

.live-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 10px;
    border-radius: var(--radius-full);
    font-weight: 700;
    font-size: 0.78rem;
}

.live-pill.open {
    background: rgba(16, 185, 129, 0.2);
    color: #34d399;
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.live-pill.closed {
    background: rgba(239, 68, 68, 0.2);
    color: #f87171;
    border: 1px solid rgba(239, 68, 68, 0.3);
}

.live-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: currentColor;
}

.top-address {
    color: #94a3b8;
    font-size: 0.82rem;
}

.top-bar-right {
    display: flex;
    align-items: center;
    gap: 16px;
}

.top-link {
    color: #cbd5e1;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: color 0.15s;
}

.top-link:hover {
    color: #ffffff;
}

/* ==========================================================================
   STICKY MAIN HEADER
   ========================================================================== */
.site-header {
    background: #ffffff;
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid var(--border);
    box-shadow: 0 2px 8px rgba(15, 23, 42, 0.04);
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 0;
}

.brand-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
}

.brand-badge {
    background: var(--primary);
    color: #ffffff;
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 1.15rem;
    letter-spacing: -0.5px;
    padding: 7px 12px;
    border-radius: var(--radius-sm);
}

.brand-accent {
    color: #f97316;
}

.brand-text {
    display: flex;
    flex-direction: column;
}

.brand-name {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1.1;
}

.brand-sub {
    font-size: 0.78rem;
    color: var(--text-light);
    font-weight: 600;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 24px;
    align-items: center;
}

.nav-link {
    font-size: 0.92rem;
    font-weight: 600;
    color: var(--text-muted);
    transition: color 0.15s;
    padding: 6px 0;
}

.nav-link:hover {
    color: var(--accent);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.btn-call {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--primary);
    color: #ffffff;
    font-size: 0.88rem;
    font-weight: 700;
    padding: 9px 16px;
    border-radius: var(--radius-full);
    transition: all 0.2s ease;
}

.btn-call:hover {
    background: var(--accent);
    transform: translateY(-1px);
}

.mobile-toggle {
    display: none;
    font-size: 1.5rem;
    color: var(--primary);
    padding: 6px;
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero-section {
    padding: 50px 0 40px;
    background: linear-gradient(180deg, #ffffff 0%, var(--bg-page) 100%);
    border-bottom: 1px solid var(--border);
}

.hero-layout {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 40px;
    align-items: center;
}

.hero-tag {
    display: inline-flex;
    align-items: center;
    background: #ffffff;
    border: 1px solid var(--border);
    padding: 6px 14px;
    border-radius: var(--radius-full);
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--text-muted);
    margin-bottom: 20px;
    box-shadow: var(--shadow-sm);
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 2.9rem;
    font-weight: 900;
    color: var(--primary);
    line-height: 1.12;
    letter-spacing: -0.5px;
    margin-bottom: 18px;
}

.text-accent {
    color: var(--accent);
}

.hero-lead {
    font-size: 1.05rem;
    color: var(--text-muted);
    line-height: 1.65;
    margin-bottom: 28px;
}

.hero-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 34px;
}

.hero-highlights-strip {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.strip-item {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #ffffff;
    padding: 12px 16px;
    border-radius: var(--radius-md);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
}

.strip-icon {
    font-size: 1.4rem;
    min-width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-alt);
    border-radius: var(--radius-sm);
}

.strip-item strong {
    display: block;
    font-size: 0.88rem;
    color: var(--text-main);
    font-weight: 700;
}

.strip-item span {
    font-size: 0.78rem;
    color: var(--text-light);
}

/* Hero Image Card with Real Store Photo */
.hero-image-card {
    background: #ffffff;
    border-radius: var(--radius-xl);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-md);
    overflow: hidden;
}

.image-wrapper {
    position: relative;
    height: 300px;
    overflow: hidden;
    background: var(--primary);
}

.hero-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.image-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    background: rgba(10, 15, 29, 0.85);
    color: #ffffff;
    padding: 6px 12px;
    border-radius: var(--radius-full);
    font-size: 0.78rem;
    font-weight: 700;
}

.hero-image-details {
    padding: 24px;
}

.details-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 10px;
}

.details-title {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--primary);
}

.details-sub {
    font-size: 0.82rem;
    color: var(--text-light);
}

.status-pill {
    display: inline-flex;
    align-items: center;
    padding: 4px 10px;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 700;
}

.status-pill.open {
    background: var(--success-bg);
    color: var(--success);
}

.details-text {
    font-size: 0.88rem;
    color: var(--text-muted);
    margin-bottom: 18px;
    line-height: 1.5;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    border-top: 1px solid var(--border);
    padding-top: 16px;
}

.stat-box {
    text-align: center;
    background: var(--bg-alt);
    padding: 10px 8px;
    border-radius: var(--radius-md);
}

.stat-num {
    display: block;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.1rem;
    color: var(--primary);
}

.stat-lbl {
    font-size: 0.72rem;
    color: var(--text-light);
    font-weight: 600;
    text-transform: uppercase;
}

/* ==========================================================================
   SECTION HEADERS
   ========================================================================== */
.section-header {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 40px;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.8rem;
    font-weight: 800;
    padding: 4px 12px;
    border-radius: var(--radius-full);
    background: #e0f2fe;
    color: #0369a1;
    margin-bottom: 12px;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 900;
    color: var(--primary);
    letter-spacing: -0.5px;
    margin-bottom: 10px;
}

.section-desc {
    font-size: 1.02rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* ==========================================================================
   1. IN-STORE SERVICES SECTION
   ========================================================================== */
.services-section {
    padding: 60px 0;
    background: #ffffff;
    border-bottom: 1px solid var(--border);
}

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

.service-card {
    background: var(--bg-alt);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    padding: 26px;
    transition: all 0.25s ease;
}

.service-card:hover {
    background: #ffffff;
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
    border-color: #93c5fd;
}

.service-icon-box {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-md);
    background: #ffffff;
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    margin-bottom: 16px;
    box-shadow: var(--shadow-sm);
}

.service-title {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 6px;
}

.service-desc {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.55;
}

/* ==========================================================================
   2. INSTAGRAM IN-STORE HIGHLIGHTS SECTION
   ========================================================================== */
.highlights-section {
    padding: 70px 0;
    background: var(--bg-page);
}

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

.highlight-tile {
    background: #ffffff;
    border-radius: var(--radius-xl);
    border: 1px solid var(--border);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    cursor: pointer;
    transition: all 0.25s ease;
}

.highlight-tile:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: #93c5fd;
}

.highlight-media {
    position: relative;
    height: 320px;
    background: var(--primary);
    overflow: hidden;
}

.highlight-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.35s ease;
}

.highlight-tile:hover .highlight-media img {
    transform: scale(1.04);
}

.highlight-badge {
    position: absolute;
    top: 14px;
    right: 14px;
    background: rgba(10, 15, 29, 0.85);
    color: #ffffff;
    font-size: 0.78rem;
    font-weight: 800;
    padding: 5px 12px;
    border-radius: var(--radius-full);
}

.highlight-overlay {
    position: absolute;
    inset: 0;
    background: rgba(10, 15, 29, 0.4);
    opacity: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.2s ease;
}

.highlight-tile:hover .highlight-overlay {
    opacity: 1;
}

.zoom-btn {
    background: #ffffff;
    color: var(--primary);
    padding: 8px 16px;
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.highlight-info {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.highlight-deal-banner {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 900;
    color: var(--accent);
    margin-bottom: 4px;
}

.highlight-name {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 6px;
}

.highlight-snippet {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.5;
    margin-bottom: 14px;
    flex: 1;
}

.highlight-loc {
    font-size: 0.78rem;
    color: var(--text-light);
    font-weight: 600;
    border-top: 1px solid var(--border);
    padding-top: 10px;
}

/* Social Banner */
.social-callout-banner {
    background: var(--primary);
    color: #ffffff;
    border-radius: var(--radius-lg);
    padding: 28px 34px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.banner-tag {
    font-size: 0.8rem;
    font-weight: 800;
    color: #f472b6;
    display: block;
    margin-bottom: 4px;
}

.banner-text h3 {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 800;
    margin-bottom: 4px;
}

.banner-text p {
    font-size: 0.88rem;
    color: #94a3b8;
}

.banner-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

/* ==========================================================================
   3. VAPE VAULT SPOTLIGHT BANNER
   ========================================================================== */
.vape-section {
    padding: 50px 0;
    background: #ffffff;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.vape-card {
    background: linear-gradient(135deg, #0a0f1d 0%, #1e183a 100%);
    border-radius: var(--radius-xl);
    padding: 36px;
    color: #ffffff;
    display: grid;
    grid-template-columns: 1.3fr 0.7fr;
    gap: 30px;
    align-items: center;
}

.vape-pill-tag {
    display: inline-flex;
    align-items: center;
    background: rgba(124, 58, 237, 0.3);
    color: #c4b5fd;
    font-size: 0.82rem;
    font-weight: 800;
    padding: 4px 12px;
    border-radius: var(--radius-full);
    margin-bottom: 14px;
    border: 1px solid rgba(124, 58, 237, 0.4);
}

.vape-info h2 {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 900;
    line-height: 1.18;
    margin-bottom: 12px;
}

.vape-info p {
    font-size: 0.95rem;
    color: #cbd5e1;
    line-height: 1.6;
    margin-bottom: 18px;
}

.vape-tags-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 18px;
}

.v-tag {
    background: rgba(255, 255, 255, 0.1);
    color: #f1f5f9;
    font-size: 0.78rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: var(--radius-sm);
}

.age-notice {
    font-size: 0.82rem;
    color: #fbbf24;
    background: rgba(245, 158, 11, 0.15);
    border: 1px solid rgba(245, 158, 11, 0.3);
    padding: 8px 12px;
    border-radius: var(--radius-sm);
}

.vape-deal-side {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    padding: 24px;
    text-align: center;
}

.deal-icon {
    font-size: 2.2rem;
    margin-bottom: 6px;
}

.deal-content h3 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 800;
    color: #f8fafc;
    margin-bottom: 6px;
}

.deal-content p {
    font-size: 0.88rem;
    color: #94a3b8;
    line-height: 1.5;
}

/* ==========================================================================
   4. PHOTO GALLERY & REVIEWS (8 REAL PHOTOS)
   ========================================================================== */
.gallery-section {
    padding: 70px 0;
    background: var(--bg-page);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
    margin-bottom: 46px;
}

.gallery-tile {
    background: #ffffff;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    overflow: hidden;
    cursor: pointer;
    box-shadow: var(--shadow-sm);
    transition: all 0.25s ease;
}

.gallery-tile:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent);
}

.gallery-img-container {
    position: relative;
    height: 220px;
    background: var(--primary);
    overflow: hidden;
}

.gallery-img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.35s ease;
}

.gallery-tile:hover .gallery-img-container img {
    transform: scale(1.05);
}

.gallery-tag {
    position: absolute;
    top: 12px;
    left: 12px;
    background: rgba(10, 15, 29, 0.85);
    color: #ffffff;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: var(--radius-full);
}

.gallery-title-box {
    padding: 14px 16px;
}

.gallery-title-box h4 {
    font-family: var(--font-heading);
    font-size: 1.02rem;
    font-weight: 800;
    color: var(--primary);
}

/* Reviews Grid */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
    gap: 20px;
}

.review-card {
    background: #ffffff;
    padding: 22px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
}

.review-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
}

.reviewer-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.1rem;
}

.reviewer-name {
    font-weight: 800;
    font-size: 0.95rem;
    color: var(--primary);
}

.reviewer-role {
    font-size: 0.78rem;
    color: var(--text-light);
}

.review-rating {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
}

.stars {
    color: #f59e0b;
    font-size: 1rem;
}

.verified-badge {
    font-size: 0.7rem;
    color: #059669;
    background: #d1fae5;
    padding: 2px 6px;
    border-radius: var(--radius-sm);
    font-weight: 700;
}

.review-quote {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.55;
    font-style: italic;
}

/* Google Rating Banner */
.google-rating-banner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--primary);
    color: #ffffff;
    padding: 22px 30px;
    border-radius: var(--radius-lg);
    margin-bottom: 34px;
    flex-wrap: wrap;
    gap: 18px;
}

.rating-left {
    display: flex;
    align-items: center;
    gap: 16px;
}

.rating-box {
    background: #1e293b;
    padding: 8px 14px;
    border-radius: var(--radius-md);
    text-align: center;
}

.rating-score {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 900;
    color: #f59e0b;
    line-height: 1;
}

.rating-stars {
    color: #f59e0b;
    font-size: 0.75rem;
}

.rating-info h3 {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 800;
}

.rating-info p {
    font-size: 0.85rem;
    color: #94a3b8;
}

/* ==========================================================================
   5. LOCATION & HOURS SECTION
   ========================================================================== */
.location-section {
    padding: 70px 0;
    background: #ffffff;
    border-top: 1px solid var(--border);
}

.location-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.info-card {
    background: var(--bg-alt);
    border-radius: var(--radius-xl);
    border: 1px solid var(--border);
    padding: 30px;
}

.card-title {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 4px;
}

.card-subtitle {
    font-size: 0.88rem;
    color: var(--text-light);
    margin-bottom: 16px;
}

.hours-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 14px;
}

.hours-table tr {
    border-bottom: 1px solid var(--border);
}

.hours-table tr:last-child {
    border-bottom: none;
}

.hours-table td {
    padding: 10px 0;
    font-size: 0.92rem;
    color: var(--text-muted);
}

.today-row td {
    color: var(--primary);
    font-weight: 800;
}

.today-pill {
    background: var(--success-bg);
    color: var(--success);
    font-size: 0.72rem;
    font-weight: 800;
    padding: 2px 6px;
    border-radius: var(--radius-sm);
    margin-left: 6px;
}

.hours-label {
    text-align: right;
    font-weight: 700;
}

.hours-notice {
    background: #ffffff;
    padding: 12px 16px;
    border-radius: var(--radius-md);
    font-size: 0.85rem;
    color: var(--text-muted);
    border: 1px solid var(--border);
}

.address-block {
    background: #ffffff;
    padding: 16px 18px;
    border-radius: var(--radius-md);
    border: 1px solid var(--border);
    font-size: 0.92rem;
    line-height: 1.6;
    margin-bottom: 18px;
}

.shop-name {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: var(--primary);
}

.phone-link {
    color: var(--accent);
    font-weight: 800;
}

.location-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 18px;
}

.travel-notes {
    border-top: 1px solid var(--border);
    padding-top: 14px;
    font-size: 0.82rem;
    color: var(--text-light);
    line-height: 1.6;
}

/* ==========================================================================
   PHOTO LIGHTBOX MODAL
   ========================================================================== */
.photo-lightbox {
    position: fixed;
    inset: 0;
    z-index: 1000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.photo-lightbox.active {
    display: flex;
}

.lightbox-overlay {
    position: absolute;
    inset: 0;
    background: rgba(10, 15, 29, 0.9);
}

.lightbox-container {
    max-width: 860px;
    width: 100%;
    background: var(--primary);
    border-radius: var(--radius-xl);
    border: 1px solid rgba(255, 255, 255, 0.15);
    overflow: hidden;
    position: relative;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
    z-index: 2;
}

.lightbox-image-area {
    max-height: 500px;
    background: #000000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-image-area img {
    max-height: 500px;
    width: auto;
    max-width: 100%;
    object-fit: contain;
}

.lightbox-meta {
    padding: 20px 24px;
    color: #ffffff;
}

.lightbox-meta h3 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 800;
    margin-bottom: 4px;
}

.lightbox-meta p {
    font-size: 0.88rem;
    color: #94a3b8;
}

.lightbox-btn-close {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 36px;
    height: 36px;
    background: rgba(0, 0, 0, 0.6);
    color: #ffffff;
    border-radius: 50%;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.15s;
    z-index: 10;
}

.lightbox-btn-close:hover {
    background: #ef4444;
}

.lightbox-btn-nav {
    position: absolute;
    top: 45%;
    transform: translateY(-50%);
    width: 42px;
    height: 42px;
    background: rgba(0, 0, 0, 0.6);
    color: #ffffff;
    border-radius: 50%;
    font-size: 1.4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.15s;
}

.lightbox-btn-nav:hover {
    background: var(--accent);
}

.lightbox-btn-nav.prev { left: 14px; }
.lightbox-btn-nav.next { right: 14px; }

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer {
    background: var(--primary);
    color: #ffffff;
    padding: 50px 0 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-row-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 26px;
    margin-bottom: 26px;
}

.footer-logo {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 900;
}

.footer-sub {
    font-size: 0.85rem;
    margin-top: 4px;
    color: #94a3b8;
}

.footer-links {
    display: flex;
    gap: 12px;
}

.footer-btn {
    background: #1e293b;
    color: #ffffff;
    padding: 8px 14px;
    border-radius: var(--radius-md);
    font-size: 0.85rem;
    font-weight: 700;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: background 0.15s;
}

.footer-btn:hover {
    background: var(--accent);
}

.footer-row-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.82rem;
    color: #94a3b8;
    flex-wrap: wrap;
    gap: 12px;
}

.challenge-text {
    color: #cbd5e1;
    font-weight: 700;
}

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 992px) {
    .hero-layout {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .vape-card {
        grid-template-columns: 1fr;
    }

    .hero-title {
        font-size: 2.4rem;
    }

    .location-grid {
        grid-template-columns: 1fr;
    }
}

/* Mobile Navigation Actions */
.mobile-nav-actions {
    display: none;
}

@media (max-width: 992px) {
    .hero-layout {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .vape-card {
        grid-template-columns: 1fr;
    }

    .hero-title {
        font-size: 2.4rem;
    }

    .location-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    /* Slim, Single-Line Top Bar on Mobile */
    .top-bar {
        padding: 7px 0;
        font-size: 0.78rem;
    }

    .top-bar-inner {
        justify-content: center;
        gap: 6px;
    }

    .top-bar-left {
        justify-content: center;
        gap: 8px;
    }

    .top-bar-right {
        display: none !important;
    }

    .top-address {
        font-size: 0.76rem;
    }

    .live-pill {
        padding: 2px 8px;
        font-size: 0.72rem;
    }

    /* Clean Minimalist Mobile Header */
    .site-header {
        padding: 4px 0;
    }

    .header-inner {
        padding: 6px 0;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .brand-wrapper {
        gap: 10px;
    }

    .brand-badge {
        font-size: 0.92rem;
        padding: 5px 8px;
        border-radius: 6px;
    }

    .brand-name {
        font-size: 1.05rem;
    }

    .brand-sub {
        font-size: 0.68rem;
    }

    /* Hide Navigation Menu & Toggle on Mobile */
    .nav-container {
        display: none !important;
    }

    .mobile-toggle {
        display: none !important;
    }

    /* Compact 1-Tap Call Button on Mobile Header */
    .btn-call {
        display: inline-flex;
        padding: 7px 12px;
        font-size: 0.8rem;
        border-radius: var(--radius-full);
        gap: 4px;
        background: var(--accent);
    }

    .hero-section {
        padding: 30px 0 24px;
    }

    .hero-title {
        font-size: 1.95rem;
        line-height: 1.18;
    }

    .hero-lead {
        font-size: 0.95rem;
    }

    .hero-highlights-strip {
        grid-template-columns: 1fr;
    }
}
