/* ========================================
   Splash Out — Main Styles
   ======================================== */

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

/* ── Accessibility ── */
.skip-link {
    position: absolute;
    top: -100%;
    left: 1rem;
    background: var(--shop-primary);
    color: #fff;
    padding: 0.75rem 1.5rem;
    border-radius: 0 0 var(--shop-radius-sm) var(--shop-radius-sm);
    z-index: 10000;
    font-weight: 600;
    transition: top 0.2s ease;
}
.skip-link:focus {
    top: 0;
}

:focus-visible {
    outline: 3px solid var(--shop-primary);
    outline-offset: 2px;
}

button:focus-visible,
a:focus-visible,
input:focus-visible,
select:focus-visible {
    outline: 3px solid var(--shop-primary);
    outline-offset: 2px;
}

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

.container {
    max-width: var(--shop-max-width);
    margin: 0 auto;
    padding: 0 1.5rem;
}

h1, h2, h3, h4, h5 { font-family: var(--shop-heading-font); font-weight: 700; line-height: 1.2; }
a { color: inherit; text-decoration: none; transition: color var(--shop-transition); }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }

/* ── Buttons ── */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.85rem 2rem;
    border-radius: 50px;
    font-family: var(--shop-body-font);
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all var(--shop-transition);
    text-decoration: none;
}

.btn-primary {
    background: var(--shop-primary);
    color: #fff;
    border-color: var(--shop-primary);
}
.btn-primary:hover {
    background: var(--shop-primary-dark);
    border-color: var(--shop-primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(25, 118, 210, 0.35);
}

.btn-accent {
    background: var(--shop-accent);
    color: #fff;
    border-color: var(--shop-accent);
}
.btn-accent:hover {
    background: var(--shop-accent-dark);
    border-color: var(--shop-accent-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 152, 0, 0.35);
}

.btn-outline {
    background: transparent;
    color: var(--shop-primary);
    border-color: var(--shop-primary);
}
.btn-outline:hover {
    background: var(--shop-primary);
    color: #fff;
    transform: translateY(-2px);
}

.btn-white {
    background: #fff;
    color: var(--shop-primary);
    border-color: #fff;
}
.btn-white:hover {
    background: rgba(255,255,255,0.9);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

.btn-lg { padding: 1rem 2.5rem; font-size: 1.05rem; }

/* ── Section Helpers ── */
.section {
    padding: 5rem 0;
}
.section-alt {
    background: var(--shop-surface);
}
.section-header {
    text-align: center;
    margin-bottom: 3rem;
}
.section-header h2 {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    color: var(--shop-text);
    margin-bottom: 0.75rem;
}
.section-header p {
    color: var(--shop-text-muted);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}
.section-header .accent-line {
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--splash-blue), var(--splash-cyan), var(--splash-pink));
    margin: 1rem auto 0;
    border-radius: 2px;
}

/* ── Top Info Bar ── */
.top-bar {
    background: var(--shop-text);
    color: rgba(255,255,255,0.9);
    padding: 0.5rem 1rem;
    font-size: 0.82rem;
    font-weight: 500;
}
.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem;
}
.top-bar a {
    color: rgba(255,255,255,0.9);
    transition: color var(--shop-transition);
}
.top-bar a:hover { color: var(--splash-cyan); }
.top-bar-left,
.top-bar-right {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}
.top-bar-item {
    display: flex;
    align-items: center;
    gap: 0.4rem;
}
.top-bar-item svg {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
}

/* ── Site Header (sticky container for top-bar + navbar) ── */
header {
    position: sticky;
    top: 0;
    z-index: 1000;
}

/* ── Navbar ── */
.navbar {
    position: relative;
    left: 0;
    right: 0;
    background: #fff;
    transition: box-shadow var(--shop-transition), padding var(--shop-transition);
    padding: 0.6rem 0;
}
.navbar.scrolled {
    box-shadow: var(--shop-shadow-md);
    padding: 0.4rem 0;
}

.nav-container {
    max-width: var(--shop-max-width);
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    flex-shrink: 0;
}
.nav-logo img {
    height: 48px;
    width: auto;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}
.nav-link {
    color: var(--shop-text);
    font-weight: 500;
    font-size: 0.95rem;
    padding: 0.6rem 1.1rem;
    border-radius: 8px;
    transition: all var(--shop-transition);
    position: relative;
}
.nav-link:hover {
    color: var(--shop-primary);
    background: var(--shop-primary-light);
}
.nav-link.active {
    color: var(--shop-primary);
    font-weight: 600;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}
.nav-cta {
    display: inline-flex;
}

/* Hamburger */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    width: 28px;
    height: 24px;
    position: relative;
    z-index: 1100;
}
.mobile-menu-toggle span {
    display: block;
    width: 100%;
    height: 2.5px;
    background: var(--shop-text);
    border-radius: 2px;
    position: absolute;
    left: 0;
    transition: all 0.35s ease;
}
.mobile-menu-toggle span:nth-child(1) { top: 0; }
.mobile-menu-toggle span:nth-child(2) { top: 50%; transform: translateY(-50%); }
.mobile-menu-toggle span:nth-child(3) { bottom: 0; }

.mobile-menu-toggle.open span:nth-child(1) {
    top: 50%; transform: translateY(-50%) rotate(45deg);
}
.mobile-menu-toggle.open span:nth-child(2) { opacity: 0; }
.mobile-menu-toggle.open span:nth-child(3) {
    bottom: 50%; transform: translateY(50%) rotate(-45deg);
}

/* ── Mobile Sidebar ── */
.sidebar-backdrop {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    z-index: 1050;
    opacity: 0;
    transition: opacity 0.35s ease;
    backdrop-filter: blur(4px);
}
.sidebar-backdrop.open {
    opacity: 1;
}

.mobile-sidebar {
    position: fixed;
    top: 0;
    left: 0;
    width: 300px;
    max-width: 85vw;
    height: 100vh;
    height: 100dvh;
    background: #fff;
    z-index: 1060;
    transform: translateX(-100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}
.mobile-sidebar.open {
    transform: translateX(0);
}

.sidebar-header {
    padding: 1.25rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid var(--shop-border);
}
.sidebar-header img {
    height: 42px;
}
.sidebar-close {
    background: none;
    border: none;
    cursor: pointer;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background var(--shop-transition);
    color: var(--shop-text);
}
.sidebar-close:hover {
    background: var(--shop-surface);
}
.sidebar-close svg {
    width: 22px;
    height: 22px;
}

.sidebar-nav {
    padding: 1rem 0;
}
.sidebar-nav a {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.9rem 1.5rem;
    color: var(--shop-text);
    font-weight: 500;
    font-size: 1rem;
    transition: all var(--shop-transition);
}
.sidebar-nav a:hover,
.sidebar-nav a.active {
    background: var(--shop-primary-light);
    color: var(--shop-primary);
}
.sidebar-nav a svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    opacity: 0.7;
}

.sidebar-divider {
    height: 1px;
    background: var(--shop-border);
    margin: 0.5rem 1.5rem;
}

.sidebar-section {
    padding: 1rem 1.5rem;
}
.sidebar-section h4 {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--shop-muted);
    margin-bottom: 0.75rem;
    font-family: var(--shop-body-font);
}
.sidebar-hours {
    font-size: 0.9rem;
}
.sidebar-hours .hours-row {
    display: flex;
    justify-content: space-between;
    padding: 0.3rem 0;
    color: var(--shop-text-muted);
}
.sidebar-hours .hours-row.today {
    color: var(--shop-primary);
    font-weight: 600;
}
.sidebar-hours .hours-row .day { font-weight: 500; }

.sidebar-contact-item {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.4rem 0;
    font-size: 0.9rem;
    color: var(--shop-text-muted);
}
.sidebar-contact-item a {
    padding: 0;
    color: var(--shop-primary);
    font-weight: 500;
}
.sidebar-contact-item a:hover {
    background: none;
}
.sidebar-contact-item svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    color: var(--shop-primary);
}

/* ── Hero ── */
.hero {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: linear-gradient(135deg, #E3F2FD 0%, #FCE4EC 30%, #FFF8E1 60%, #E8F5E9 100%);
}
.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 80%;
    height: 200%;
    background: radial-gradient(circle, rgba(25,118,210,0.08) 0%, transparent 60%);
    pointer-events: none;
}
.hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 60%;
    height: 120%;
    background: radial-gradient(circle, rgba(233,30,99,0.06) 0%, transparent 50%);
    pointer-events: none;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    padding-top: 2rem;
    padding-bottom: 2rem;
    position: relative;
    z-index: 1;
}
.hero-content {
    max-width: 560px;
}
.hero-badge {
    display: inline-block;
    background: rgba(25,118,210,0.1);
    color: var(--shop-primary);
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1.25rem;
    letter-spacing: 0.02em;
}
.hero-content h1 {
    font-size: clamp(2.5rem, 6vw, 3.8rem);
    line-height: 1.1;
    margin-bottom: 1rem;
    color: var(--shop-text);
}
.hero-content h1 .highlight {
    background: linear-gradient(135deg, var(--splash-blue), var(--splash-cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.hero-tagline {
    font-size: 1.15rem;
    color: var(--shop-text-muted);
    margin-bottom: 2rem;
    line-height: 1.7;
}
.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 2.5rem;
}
.hero-stats {
    display: flex;
    gap: 2.5rem;
}
.hero-stat {
    text-align: left;
}
.hero-stat-num {
    font-family: var(--shop-heading-font);
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--shop-primary);
}
.hero-stat-label {
    font-size: 0.85rem;
    color: var(--shop-text-muted);
}

.hero-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}
.hero-image-wrap {
    position: relative;
    width: 100%;
    max-width: 520px;
    border-radius: var(--shop-radius-lg);
    overflow: hidden;
    box-shadow: var(--shop-shadow-lg);
}
.hero-image-wrap img {
    width: 100%;
    height: 480px;
    object-fit: cover;
}

/* Paint splash decorative blobs */
.hero-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(2px);
    z-index: 0;
    opacity: 0.5;
    pointer-events: none;
}
.hero-blob-1 {
    width: 120px; height: 120px;
    background: var(--splash-cyan);
    top: -30px; right: -30px;
    opacity: 0.25;
}
.hero-blob-2 {
    width: 80px; height: 80px;
    background: var(--splash-pink);
    bottom: -20px; left: -20px;
    opacity: 0.2;
}
.hero-blob-3 {
    width: 60px; height: 60px;
    background: var(--splash-yellow);
    top: 40%; right: -30px;
    opacity: 0.3;
}

/* ── Image Carousel ── */
.carousel-section {
    padding: 4rem 0;
    background: var(--shop-surface);
}
.carousel {
    position: relative;
    overflow: hidden;
    border-radius: var(--shop-radius-lg);
    box-shadow: var(--shop-shadow-lg);
    max-width: 1000px;
    margin: 0 auto;
}
.carousel-track {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.carousel-slide {
    min-width: 100%;
    position: relative;
}
.carousel-slide img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}
.carousel-slide .slide-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem 2.5rem;
    background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
    color: #fff;
}
.slide-caption h3 {
    font-size: 1.4rem;
    margin-bottom: 0.3rem;
}
.slide-caption p {
    font-size: 0.95rem;
    opacity: 0.9;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.9);
    border: none;
    cursor: pointer;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shop-shadow);
    z-index: 5;
    transition: all var(--shop-transition);
    color: var(--shop-text);
}
.carousel-btn:hover {
    background: #fff;
    box-shadow: var(--shop-shadow-md);
    transform: translateY(-50%) scale(1.05);
}
.carousel-btn svg { width: 22px; height: 22px; }
.carousel-prev { left: 1rem; }
.carousel-next { right: 1rem; }

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1.25rem;
}
.carousel-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: none;
    background: var(--shop-border);
    cursor: pointer;
    transition: all var(--shop-transition);
}
.carousel-dot.active {
    background: var(--shop-primary);
    transform: scale(1.2);
}

/* ── About ── */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}
.about-image {
    border-radius: var(--shop-radius-lg);
    overflow: hidden;
    box-shadow: var(--shop-shadow-lg);
}
.about-image img {
    width: 100%;
    height: 420px;
    object-fit: cover;
}
.about-content h2 {
    font-size: clamp(1.8rem, 3.5vw, 2.4rem);
    margin-bottom: 1rem;
}
.about-content .accent-line {
    width: 50px;
    height: 4px;
    background: linear-gradient(90deg, var(--splash-blue), var(--splash-cyan));
    border-radius: 2px;
    margin-bottom: 1.5rem;
}
.about-content p {
    color: var(--shop-text-muted);
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 1rem;
}
.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-top: 1.5rem;
}
.about-feature {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-weight: 500;
    font-size: 0.95rem;
}
.about-feature .check {
    width: 24px;
    height: 24px;
    background: var(--splash-green);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.about-feature .check svg { width: 14px; height: 14px; }

/* ── Categories ── */
.categories-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}
.category-card {
    background: #fff;
    border-radius: var(--shop-radius);
    padding: 2.5rem 1.5rem;
    text-align: center;
    border: 1px solid var(--shop-border);
    transition: all var(--shop-transition);
    cursor: pointer;
    text-decoration: none;
    display: block;
}
.category-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shop-shadow-lg);
    border-color: var(--shop-primary-light);
}
.category-icon {
    width: 64px;
    height: 64px;
    border-radius: var(--shop-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
    font-size: 1.8rem;
}
.category-icon.paint { background: rgba(25,118,210,0.1); color: var(--splash-blue); }
.category-icon.tools { background: rgba(255,152,0,0.1); color: var(--splash-orange); }
.category-icon.diy { background: rgba(76,175,80,0.1); color: var(--splash-green); }
.category-icon.home { background: rgba(233,30,99,0.1); color: var(--splash-pink); }

.category-card h3 {
    font-size: 1.15rem;
    margin-bottom: 0.5rem;
}
.category-card p {
    color: var(--shop-text-muted);
    font-size: 0.9rem;
    line-height: 1.5;
}

/* ── Featured Products ── */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 1.5rem;
}

/* ── Special Offers ── */
.offers-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}
.offer-card {
    position: relative;
    border-radius: var(--shop-radius-lg);
    overflow: hidden;
    box-shadow: var(--shop-shadow-md);
    transition: all var(--shop-transition);
}
.offer-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shop-shadow-lg);
}
.offer-card img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}
.offer-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem;
    background: linear-gradient(to top, rgba(0,0,0,0.75), transparent);
    color: #fff;
}
.offer-overlay h3 { font-size: 1.3rem; margin-bottom: 0.3rem; }
.offer-overlay p { font-size: 0.95rem; opacity: 0.9; margin-bottom: 1rem; }
.offer-overlay .btn { padding: 0.6rem 1.5rem; font-size: 0.9rem; }

/* ── Team ── */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 1.5rem;
}

/* ── Opening Hours ── */
.hours-section {
    background: linear-gradient(135deg, var(--splash-blue), var(--shop-primary-dark));
    color: #fff;
    position: relative;
    overflow: hidden;
}
.hours-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
}
.hours-section .section-header h2 { color: #fff; }
.hours-section .section-header p { color: rgba(255,255,255,0.8); }
.hours-section .accent-line {
    background: linear-gradient(90deg, var(--splash-yellow), var(--splash-cyan));
}

.hours-card {
    max-width: 560px;
    margin: 0 auto;
    background: rgba(255,255,255,0.1);
    border-radius: var(--shop-radius-lg);
    padding: 2.5rem;
    backdrop-filter: blur(10px);
    position: relative;
    z-index: 1;
}
.hours-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    font-size: 1rem;
}
.hours-row:last-child { border-bottom: none; }
.hours-row .day { font-weight: 600; }
.hours-row .time { opacity: 0.9; }
.hours-row.today {
    background: rgba(255,255,255,0.1);
    margin: 0 -1rem;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    border-bottom: none;
}
.hours-row.closed .time { color: var(--splash-pink); opacity: 1; font-weight: 600; }

.hours-note {
    text-align: center;
    margin-top: 1.5rem;
    font-size: 0.9rem;
    opacity: 0.8;
    position: relative;
    z-index: 1;
}
.hours-note svg { vertical-align: middle; margin-right: 0.3rem; }

/* ── Contact / Find Us ── */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}
.contact-info { display: flex; flex-direction: column; gap: 1.5rem; }
.contact-card {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: #fff;
    border-radius: var(--shop-radius);
    border: 1px solid var(--shop-border);
    transition: all var(--shop-transition);
}
.contact-card:hover {
    border-color: var(--shop-primary-light);
    box-shadow: var(--shop-shadow);
}
.contact-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--shop-radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    background: var(--shop-primary-light);
    color: var(--shop-primary);
}
.contact-icon svg { width: 22px; height: 22px; }
.contact-card h4 {
    font-size: 1rem;
    margin-bottom: 0.3rem;
    font-family: var(--shop-body-font);
}
.contact-card p,
.contact-card a {
    font-size: 0.95rem;
    color: var(--shop-text-muted);
}
.contact-card a:hover { color: var(--shop-primary); }

.map-wrap {
    border-radius: var(--shop-radius-lg);
    overflow: hidden;
    box-shadow: var(--shop-shadow-lg);
    height: 100%;
    min-height: 400px;
}
.map-wrap iframe {
    width: 100%;
    height: 100%;
    min-height: 400px;
    border: 0;
}

/* ── Footer ── */
.footer {
    background: var(--shop-text);
    color: rgba(255,255,255,0.85);
    padding: 4rem 0 0;
}
.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-brand img {
    height: 50px;
    margin-bottom: 1rem;
    filter: brightness(1.1);
}
.footer-brand p {
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
    line-height: 1.6;
    max-width: 300px;
}
.footer-column h4 {
    color: #fff;
    font-size: 1rem;
    margin-bottom: 1rem;
    font-family: var(--shop-body-font);
    font-weight: 600;
}
.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}
.footer-links a {
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
    transition: color var(--shop-transition);
}
.footer-links a:hover {
    color: var(--splash-cyan);
}

.footer-social {
    display: flex;
    gap: 0.75rem;
    margin-top: 1.25rem;
}
.footer-social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.7);
    transition: all var(--shop-transition);
}
.footer-social a:hover {
    background: var(--shop-primary);
    color: #fff;
    transform: translateY(-3px);
}
.footer-social svg { width: 18px; height: 18px; }

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 0;
    margin-top: 0rem;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.5);
    flex-wrap: wrap;
    gap: 0.5rem;
}
.footer-bottom a {
    color: var(--splash-cyan);
    font-weight: 500;
}
.footer-bottom a:hover { color: #fff; }

/* ── Loading ── */
.loading-spinner {
    display: flex;
    justify-content: center;
    padding: 3rem;
    grid-column: 1 / -1;
}
.loading-spinner::after {
    content: '';
    width: 40px;
    height: 40px;
    border: 3px solid var(--shop-border);
    border-top-color: var(--shop-primary);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ── Product Detail specifics ── */
.section-detail-top { padding-top: 2rem; }
.breadcrumb-detail { margin-bottom: 1.5rem; }

/* ── Page Header (for products/detail pages) ── */
.page-header {
    padding: 3rem 0 2rem;
    background: var(--shop-surface);
    border-bottom: 1px solid var(--shop-border);
}
.page-header h1 {
    font-size: 2rem;
}
.breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: var(--shop-text-muted);
    margin-bottom: 0.5rem;
}
.breadcrumb a { color: var(--shop-primary); }
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb svg { width: 14px; height: 14px; }

/* ── Scroll Animations ── */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}
.fade-in-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-in-left.visible {
    opacity: 1;
    transform: translateX(0);
}
.fade-in-right {
    opacity: 0;
    transform: translateX(40px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-in-right.visible {
    opacity: 1;
    transform: translateX(0);
}

/* ══════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════ */

@media (max-width: 1024px) {
    .hero-container { grid-template-columns: 1fr; gap: 2rem; text-align: center; }
    .hero-content { max-width: 100%; margin: 0 auto; }
    .hero-actions { justify-content: center; }
    .hero-stats { justify-content: center; }
    .hero-visual { max-width: 480px; margin: 0 auto; }

    .about-grid { grid-template-columns: 1fr; gap: 2rem; }
    .about-image { order: -1; }
    .about-image img { height: 300px; }
    .about-features { grid-template-columns: 1fr 1fr; }

    .categories-grid { grid-template-columns: repeat(2, 1fr); }
    .offers-grid { grid-template-columns: 1fr; }
    .contact-grid { grid-template-columns: 1fr; }
    .footer-top { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    .section { padding: 3.5rem 0; }

    /* Navbar mobile mode */
    .nav-menu { display: none; }
    .mobile-menu-toggle { display: block; }
    .nav-cta { display: none; }

    /* Top bar */
    .top-bar-right { display: none; }
    .top-bar .container { justify-content: center; }

    /* Hero */
    .hero { min-height: auto; padding: 3rem 0; }
    .hero-image-wrap img { height: 320px; }
    .hero-content h1 { font-size: 2.2rem; }
    .hero-stats { gap: 1.5rem; }

    /* Carousel */
    .carousel-slide img { height: 300px; }

    /* Categories */
    .categories-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
    .category-card { padding: 1.5rem 1rem; }
    .category-icon { width: 52px; height: 52px; font-size: 1.4rem; }

    /* Offers */
    .offer-card img { height: 300px; }

    /* Hours */
    .hours-card { padding: 1.5rem; }

    /* Footer */
    .footer-top { grid-template-columns: 1fr; gap: 2rem; }
    .footer-bottom { flex-direction: column; text-align: center; }

    /* Product grid */
    .product-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
}

@media (max-width: 480px) {
    .container { padding: 0 1rem; }
    .hero-content h1 { font-size: 1.9rem; }
    .hero-actions { flex-direction: column; }
    .hero-actions .btn { width: 100%; }
    .hero-stats { flex-direction: column; gap: 1rem; align-items: center; }
    .hero-image-wrap img { height: 260px; }

    .categories-grid { grid-template-columns: 1fr 1fr; }
    .about-features { grid-template-columns: 1fr; }

    .carousel-slide img { height: 220px; }
    .carousel-btn { width: 38px; height: 38px; }
    .carousel-btn svg { width: 18px; height: 18px; }

    .offer-card img { height: 250px; }

    .btn-lg { padding: 0.85rem 1.8rem; font-size: 0.95rem; }

    .product-grid { grid-template-columns: 1fr 1fr; }
    .page-header h1 { font-size: 1.6rem; }
}
