/* ═══════════════════════════════════════════════════════
   ROADHOUSE LEISURE — Modern E-Commerce Design
   ═══════════════════════════════════════════════════════ */

:root {
    --primary: #1a3a5c;
    --primary-light: #2a5a8c;
    --primary-dark: #0f2440;
    --accent: #e8a838;
    --accent-hover: #d4952f;
    --accent-light: #fdf3e0;
    --success: #22c55e;
    --danger: #ef4444;
    --warning: #f59e0b;
    --text: #1e293b;
    --text-light: #64748b;
    --text-lighter: #94a3b8;
    --bg: #ffffff;
    --bg-light: #f8fafc;
    --bg-alt: #f1f5f9;
    --border: #e2e8f0;
    --border-light: #f1f5f9;
    --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
    --shadow: 0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -2px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -4px rgba(0,0,0,0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0,0,0,0.1), 0 8px 10px -6px rgba(0,0,0,0.1);
    --radius: 12px;
    --radius-sm: 8px;
    --radius-lg: 16px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --font: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-display: 'Playfair Display', Georgia, serif;
    --max-width: 1280px;
}

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

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

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

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

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

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

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

/* ─── TOP BAR ────────────────────────────────────────── */

.top-bar {
    background: var(--primary-dark);
    color: rgba(255,255,255,0.85);
    font-size: 0.8rem;
    padding: 0.5rem 0;
    letter-spacing: 0.02em;
}

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

.top-bar-left,
.top-bar-right {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.top-bar a,
.top-bar span {
    color: rgba(255,255,255,0.85);
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.top-bar a:hover {
    color: var(--accent);
}

/* ─── NAVBAR ─────────────────────────────────────────── */

.navbar {
    background: var(--bg);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid var(--border);
    transition: var(--transition);
}

.navbar.scrolled {
    box-shadow: var(--shadow);
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-shrink: 0;
}

.nav-logo img {
    height: 48px;
    width: auto;
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.logo-main {
    font-family: var(--font);
    font-weight: 800;
    font-size: 1.3rem;
    color: var(--primary);
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.logo-sub {
    font-family: var(--font);
    font-weight: 400;
    font-size: 0.7rem;
    color: var(--accent);
    letter-spacing: 0.25em;
    text-transform: uppercase;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.nav-links > a,
.nav-dropdown > a {
    padding: 0.5rem 0.9rem;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text);
    border-radius: var(--radius-sm);
    position: relative;
}

.nav-links > a:hover,
.nav-dropdown > a:hover,
.nav-links > a.active,
.nav-dropdown > a.active {
    color: var(--primary);
    background: var(--bg-light);
}

.nav-links > a.active::after,
.nav-dropdown > a.active::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 50%;
    transform: translateX(-50%);
    width: 24px;
    height: 2px;
    background: var(--accent);
    border-radius: 1px;
}

.nav-dropdown {
    position: relative;
}

.nav-dropdown .fa-chevron-down {
    font-size: 0.6rem;
    margin-left: 0.2rem;
    transition: var(--transition);
}

.nav-dropdown:hover .fa-chevron-down {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 220px;
    background: var(--bg);
    border-radius: var(--radius);
    box-shadow: var(--shadow-xl);
    border: 1px solid var(--border);
    padding: 0.5rem;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: var(--transition);
    z-index: 100;
}

.nav-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu a {
    display: block;
    padding: 0.6rem 1rem;
    font-size: 0.875rem;
    color: var(--text);
    border-radius: var(--radius-sm);
}

.dropdown-menu a:hover {
    background: var(--bg-light);
    color: var(--primary);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.nav-search-btn,
.nav-login-btn,
.cart-btn {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--text);
    font-size: 1rem;
    transition: var(--transition);
    position: relative;
}

.nav-search-btn:hover,
.nav-login-btn:hover,
.cart-btn:hover {
    background: var(--bg-light);
    color: var(--primary);
}

.cart-badge {
    position: absolute;
    top: 2px;
    right: 2px;
    background: var(--accent);
    color: #fff;
    font-size: 0.65rem;
    font-weight: 700;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cart-badge:empty,
.cart-badge[data-count="0"] {
    display: none;
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
}

.mobile-menu-btn span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--text);
    border-radius: 1px;
    transition: var(--transition);
}

/* Search Overlay */
.search-overlay {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--bg);
    border-bottom: 1px solid var(--border);
    padding: 1rem 0;
    display: none;
    box-shadow: var(--shadow-lg);
}

.search-overlay.active {
    display: block;
}

.search-form {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    max-width: 600px;
    margin: 0 auto;
}

.search-form input {
    flex: 1;
    padding: 0.75rem 1rem;
    border: 2px solid var(--border);
    border-radius: var(--radius);
    font-size: 1rem;
    font-family: var(--font);
    outline: none;
    transition: var(--transition);
}

.search-form input:focus {
    border-color: var(--primary);
}

.search-form button {
    width: 44px;
    height: 44px;
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
}

.search-form button[type="submit"] {
    background: var(--primary);
    color: #fff;
}

/* ─── HERO SECTION ───────────────────────────────────── */

.hero {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--primary-dark);
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.4;
}

.hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(15,36,64,0.9) 0%, rgba(26,58,92,0.7) 50%, rgba(15,36,64,0.5) 100%);
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 680px;
    padding: 4rem 0;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(232,168,56,0.15);
    color: var(--accent);
    padding: 0.5rem 1.25rem;
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(232,168,56,0.3);
}

.hero h1 {
    font-family: var(--font);
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.15;
    color: #fff;
    margin-bottom: 1.25rem;
}

.hero h1 span {
    color: var(--accent);
}

.hero p {
    font-size: 1.15rem;
    color: rgba(255,255,255,0.8);
    margin-bottom: 2rem;
    line-height: 1.7;
    max-width: 560px;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-stats {
    display: flex;
    gap: 3rem;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.15);
}

.hero-stat {
    text-align: left;
}

.hero-stat .number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--accent);
    line-height: 1;
}

.hero-stat .label {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.6);
    margin-top: 0.3rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* ─── BUTTONS ────────────────────────────────────────── */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.8rem 1.75rem;
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: var(--radius);
    transition: var(--transition);
    white-space: nowrap;
    cursor: pointer;
    border: 2px solid transparent;
}

.btn-primary {
    background: var(--accent);
    color: #fff;
    border-color: var(--accent);
}

.btn-primary:hover {
    background: var(--accent-hover);
    border-color: var(--accent-hover);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(232,168,56,0.4);
}

.btn-secondary {
    background: transparent;
    color: #fff;
    border-color: rgba(255,255,255,0.4);
}

.btn-secondary:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.7);
}

.btn-outline {
    background: transparent;
    color: var(--primary);
    border-color: var(--primary);
}

.btn-outline:hover {
    background: var(--primary);
    color: #fff;
}

.btn-dark {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
}

.btn-dark:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-1px);
}

.btn-sm {
    padding: 0.5rem 1rem;
    font-size: 0.8rem;
}

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

.btn-block {
    width: 100%;
}

/* ─── SECTIONS ───────────────────────────────────────── */

.section {
    padding: 5rem 0;
}

.section-alt {
    background: var(--bg-light);
}

.section-dark {
    background: var(--primary-dark);
    color: #fff;
}

.section-header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 3rem;
}

.section-label {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 0.75rem;
}

.section-title {
    font-family: var(--font);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text);
    line-height: 1.2;
    margin-bottom: 1rem;
}

.section-dark .section-title {
    color: #fff;
}

.section-subtitle {
    font-size: 1.05rem;
    color: var(--text-light);
    line-height: 1.7;
}

.section-dark .section-subtitle {
    color: rgba(255,255,255,0.7);
}

/* ─── CATEGORY CARDS ─────────────────────────────────── */

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.category-card {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    height: 240px;
    cursor: pointer;
    group: true;
}

.category-card-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    transition: var(--transition);
}

.category-card-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3;
    transition: var(--transition);
}

.category-card:hover .category-card-bg img {
    opacity: 0.4;
    transform: scale(1.05);
}

.category-card-content {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 2rem;
    z-index: 1;
    background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 60%);
}

.category-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.25rem;
}

.category-card p {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.7);
}

.category-card .card-arrow {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: var(--transition);
}

.category-card:hover .card-arrow {
    background: var(--accent);
    transform: translate(4px, -4px);
}

/* ─── PRODUCT CARDS ──────────────────────────────────── */

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 1.25rem;
}

.product-card {
    background: var(--bg);
    border-radius: var(--radius);
    border: 1px solid var(--border);
    transition: var(--transition);
    position: relative;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-3px);
    border-color: var(--accent);
}

.product-card-image {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
    background: #fff;
    border-radius: var(--radius) var(--radius) 0 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.product-card-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.4s ease;
    mix-blend-mode: multiply;
}

.product-card:hover .product-card-image img {
    transform: scale(1.08);
}

.product-card-image .placeholder-img {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-light);
    color: var(--text-lighter);
    font-size: 2.5rem;
}

.product-badge {
    position: absolute;
    top: 0.75rem;
    left: 0.75rem;
    padding: 0.3rem 0.75rem;
    border-radius: 100px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    z-index: 2;
}

.badge-sale {
    background: var(--danger);
    color: #fff;
}

.badge-new {
    background: var(--success);
    color: #fff;
}

.product-quick-add {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 0.75rem;
    display: flex;
    justify-content: center;
    opacity: 0;
    transform: translateY(8px);
    transition: var(--transition);
    z-index: 3;
}

.product-card:hover .product-quick-add {
    opacity: 1;
    transform: translateY(0);
}

.product-card-info {
    padding: 1rem 1.25rem 0.75rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.product-card-category {
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 0.3rem;
}

.product-card-name {
    font-size: 0.92rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 0.5rem;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    flex: 1;
}

.product-card-name a:hover {
    color: var(--primary);
}

.product-card-price {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
}

.price-current {
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--primary);
}

.price-original {
    font-size: 0.85rem;
    color: var(--text-lighter);
    text-decoration: line-through;
}

.price-save {
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--danger);
    background: rgba(239,68,68,0.1);
    padding: 0.15rem 0.5rem;
    border-radius: 100px;
}

.product-card-actions {
    padding: 0 1.25rem 1rem;
}

.product-card-actions .btn {
    width: 100%;
    padding: 0.6rem;
    font-size: 0.82rem;
    border-radius: var(--radius-sm);
}

/* ─── SERVICE CARDS ──────────────────────────────────── */

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 1.5rem;
}

.service-card {
    background: var(--bg);
    border-radius: var(--radius);
    padding: 2rem;
    border: 1px solid var(--border);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    box-shadow: var(--shadow-lg);
    border-color: var(--accent);
    transform: translateY(-2px);
}

.service-card-icon {
    width: 56px;
    height: 56px;
    border-radius: var(--radius);
    background: var(--accent-light);
    color: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1.25rem;
}

.service-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--text);
}

.service-card p {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 1.25rem;
    flex: 1;
    line-height: 1.6;
}

.service-card .service-price {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 1rem;
    border-top: 1px solid var(--border);
}

.service-price .price {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary);
}

/* ─── FEATURES BAR ───────────────────────────────────── */

.features-bar {
    background: var(--bg);
    padding: 3rem 0;
    border-bottom: 1px solid var(--border);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.feature-icon {
    width: 52px;
    height: 52px;
    border-radius: var(--radius);
    background: var(--accent-light);
    color: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.feature-text h4 {
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 0.15rem;
}

.feature-text p {
    font-size: 0.8rem;
    color: var(--text-light);
}

/* ─── CTA SECTION ────────────────────────────────────── */

.cta-section {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    padding: 5rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: rgba(232,168,56,0.08);
}

.cta-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: rgba(232,168,56,0.05);
}

.cta-content {
    position: relative;
    z-index: 1;
    max-width: 600px;
    margin: 0 auto;
}

.cta-content h2 {
    font-family: var(--font);
    font-size: 2.5rem;
    color: #fff;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.8);
    margin-bottom: 2rem;
}

.cta-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ─── TESTIMONIALS ───────────────────────────────────── */

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

.testimonial-card {
    background: var(--bg);
    border-radius: var(--radius);
    padding: 2rem;
    border: 1px solid var(--border);
    position: relative;
}

.testimonial-stars {
    color: var(--accent);
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.testimonial-text {
    font-size: 1rem;
    color: var(--text);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.testimonial-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--primary);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1rem;
}

.testimonial-name {
    font-weight: 600;
    font-size: 0.9rem;
}

.testimonial-date {
    font-size: 0.8rem;
    color: var(--text-light);
}

.testimonial-quote {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    font-size: 3rem;
    color: var(--accent-light);
    font-family: Georgia, serif;
    line-height: 1;
}

/* ─── SHOP PAGE ──────────────────────────────────────── */

.shop-layout {
    display: grid;
    grid-template-columns: 240px 1fr;
    gap: 2.5rem;
    padding: 2rem 0;
}

.shop-sidebar {
    position: sticky;
    top: 90px;
    align-self: start;
}

.sidebar-section {
    margin-bottom: 2rem;
}

.sidebar-title {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-light);
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--border);
}

.sidebar-links {
    list-style: none;
}

.sidebar-links li a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.6rem 0.75rem;
    font-size: 0.9rem;
    color: var(--text);
    border-radius: var(--radius-sm);
    margin-bottom: 2px;
}

.sidebar-links li a:hover,
.sidebar-links li a.active {
    background: var(--bg-light);
    color: var(--primary);
}

.sidebar-links li a .count {
    font-size: 0.75rem;
    color: var(--text-lighter);
    background: var(--bg-alt);
    padding: 0.1rem 0.5rem;
    border-radius: 100px;
}

.shop-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border);
}

.shop-results {
    font-size: 0.9rem;
    color: var(--text-light);
}

.shop-sort select {
    padding: 0.5rem 0.75rem;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    font-family: var(--font);
    font-size: 0.85rem;
    color: var(--text);
    background: var(--bg);
    cursor: pointer;
}

.pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 2rem;
}

.pagination a,
.pagination span {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text);
    border: 1px solid var(--border);
}

.pagination a:hover {
    background: var(--bg-light);
    border-color: var(--primary);
    color: var(--primary);
}

.pagination .active {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
}

/* ─── PRODUCT DETAIL ─────────────────────────────────── */

.product-detail {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    padding: 3rem 0;
}

.product-gallery {
    position: sticky;
    top: 90px;
    align-self: start;
}

.product-main-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 1;
    background: var(--bg-alt);
    margin-bottom: 1rem;
}

.product-main-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.product-thumbnails {
    display: flex;
    gap: 0.5rem;
}

.product-thumbnails img {
    width: 72px;
    height: 72px;
    object-fit: cover;
    border-radius: var(--radius-sm);
    cursor: pointer;
    border: 2px solid transparent;
    transition: var(--transition);
}

.product-thumbnails img:hover,
.product-thumbnails img.active {
    border-color: var(--primary);
}

.product-info .product-breadcrumb {
    font-size: 0.85rem;
    color: var(--text-light);
    margin-bottom: 1rem;
}

.product-info .product-breadcrumb a {
    color: var(--primary);
}

.product-info h1 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.product-info .product-price-large {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.product-price-large .current {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary);
}

.product-price-large .original {
    font-size: 1.25rem;
    color: var(--text-lighter);
    text-decoration: line-through;
}

.product-info .product-description {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 2rem;
}

.product-actions {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.quantity-selector {
    display: flex;
    align-items: center;
    border: 2px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
}

.quantity-selector button {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: var(--text);
    transition: var(--transition);
}

.quantity-selector button:hover {
    background: var(--bg-light);
}

.quantity-selector input {
    width: 52px;
    height: 44px;
    text-align: center;
    border: none;
    font-family: var(--font);
    font-size: 1rem;
    font-weight: 600;
    outline: none;
}

.product-meta {
    padding-top: 1.5rem;
    border-top: 1px solid var(--border);
}

.product-meta p {
    font-size: 0.85rem;
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.product-meta strong {
    color: var(--text);
}

/* ─── CART PAGE ──────────────────────────────────────── */

.cart-layout {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 2rem;
    padding: 2rem 0;
}

.cart-items {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.cart-item {
    display: grid;
    grid-template-columns: 100px 1fr auto auto;
    gap: 1.5rem;
    align-items: center;
    padding: 1.25rem;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius);
}

.cart-item-image {
    width: 100px;
    height: 80px;
    border-radius: var(--radius-sm);
    overflow: hidden;
    background: var(--bg-alt);
}

.cart-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cart-item-name {
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.cart-item-price {
    font-size: 0.9rem;
    color: var(--text-light);
}

.cart-item-total {
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--primary);
    min-width: 80px;
    text-align: right;
}

.cart-item-remove {
    color: var(--text-lighter);
    font-size: 1.1rem;
    padding: 0.5rem;
}

.cart-item-remove:hover {
    color: var(--danger);
}

.cart-summary {
    position: sticky;
    top: 90px;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.5rem;
    align-self: start;
}

.cart-summary h3 {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border);
}

.cart-summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
}

.cart-summary-row.total {
    font-size: 1.2rem;
    font-weight: 700;
    padding-top: 1rem;
    border-top: 2px solid var(--border);
    margin-top: 1rem;
    color: var(--primary);
}

.cart-summary .free-shipping {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem;
    background: rgba(34,197,94,0.1);
    color: var(--success);
    border-radius: var(--radius-sm);
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 1rem;
}

.empty-cart {
    text-align: center;
    padding: 4rem 2rem;
}

.empty-cart i {
    font-size: 4rem;
    color: var(--text-lighter);
    margin-bottom: 1.5rem;
}

.empty-cart h2 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.empty-cart p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

/* ─── BOOKING CALENDAR ───────────────────────────────── */

.booking-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    padding: 3rem 0;
}

.booking-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.form-group label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text);
}

.form-group label .required {
    color: var(--danger);
}

.form-input {
    padding: 0.75rem 1rem;
    border: 2px solid var(--border);
    border-radius: var(--radius);
    font-family: var(--font);
    font-size: 0.95rem;
    color: var(--text);
    transition: var(--transition);
    background: var(--bg);
}

.form-input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(26,58,92,0.1);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.calendar-widget {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    position: sticky;
    top: 90px;
}

.calendar-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.5rem;
}

.calendar-header h3 {
    font-size: 1.1rem;
    font-weight: 700;
}

.calendar-nav {
    display: flex;
    gap: 0.5rem;
}

.calendar-nav button {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text);
    transition: var(--transition);
}

.calendar-nav button:hover {
    background: var(--bg-light);
    border-color: var(--primary);
}

.calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 4px;
}

.calendar-day-header {
    text-align: center;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-light);
    text-transform: uppercase;
    padding: 0.5rem;
}

.calendar-day {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--transition);
    font-weight: 500;
}

.calendar-day:hover:not(.disabled):not(.empty) {
    background: var(--accent-light);
    color: var(--accent);
}

.calendar-day.selected {
    background: var(--primary);
    color: #fff;
}

.calendar-day.today {
    border: 2px solid var(--accent);
}

.calendar-day.disabled {
    color: var(--text-lighter);
    cursor: not-allowed;
    opacity: 0.4;
}

.calendar-day.empty {
    cursor: default;
}

.time-slots {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border);
}

.time-slots h4 {
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.time-slots-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.5rem;
}

.time-slot {
    padding: 0.6rem;
    text-align: center;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    font-size: 0.85rem;
    cursor: pointer;
    transition: var(--transition);
}

.time-slot:hover {
    border-color: var(--primary);
    background: var(--bg-light);
}

.time-slot.selected {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
}

/* ─── CONTACT PAGE ───────────────────────────────────── */

.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    padding: 3rem 0;
}

.contact-info-cards {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-info-card {
    display: flex;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--bg-light);
    border-radius: var(--radius);
}

.contact-info-card i {
    width: 48px;
    height: 48px;
    border-radius: var(--radius);
    background: var(--primary);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.contact-info-card h4 {
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.contact-info-card p {
    font-size: 0.9rem;
    color: var(--text-light);
}

.contact-info-card a {
    color: var(--primary);
}

.contact-map {
    margin-top: 1.5rem;
    border-radius: var(--radius);
    overflow: hidden;
    height: 250px;
    background: var(--bg-alt);
}

.contact-map iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* ─── PAGE HEADER ────────────────────────────────────── */

.page-header {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: rgba(232,168,56,0.06);
}

.page-header .container {
    position: relative;
    z-index: 1;
}

.page-header h1 {
    font-family: var(--font);
    font-size: 2.5rem;
    color: #fff;
    margin-bottom: 0.5rem;
}

.page-header .breadcrumb {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.7);
}

.page-header .breadcrumb a {
    color: rgba(255,255,255,0.7);
}

.page-header .breadcrumb a:hover {
    color: var(--accent);
}

/* ─── CART SIDEBAR ───────────────────────────────────── */

.cart-sidebar {
    position: fixed;
    top: 0;
    right: -400px;
    width: 400px;
    height: 100vh;
    background: var(--bg);
    z-index: 2000;
    display: flex;
    flex-direction: column;
    box-shadow: var(--shadow-xl);
    transition: right 0.3s ease;
}

.cart-sidebar.open {
    right: 0;
}

.cart-sidebar-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem 1.5rem;
    border-bottom: 1px solid var(--border);
}

.cart-sidebar-header h3 {
    font-size: 1.1rem;
}

.cart-sidebar-header button {
    font-size: 1.2rem;
    color: var(--text-light);
}

.cart-sidebar-items {
    flex: 1;
    overflow-y: auto;
    padding: 1rem 1.5rem;
}

.cart-sidebar-footer {
    padding: 1.5rem;
    border-top: 1px solid var(--border);
    background: var(--bg-light);
}

.cart-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    z-index: 1999;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.cart-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* ─── WHATSAPP FLOAT ─────────────────────────────────── */

.whatsapp-float {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #25D366;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    box-shadow: 0 4px 12px rgba(37,211,102,0.4);
    z-index: 998;
    transition: var(--transition);
    animation: pulse-whatsapp 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37,211,102,0.5);
}

@keyframes pulse-whatsapp {
    0%, 100% { box-shadow: 0 4px 12px rgba(37,211,102,0.4); }
    50% { box-shadow: 0 4px 20px rgba(37,211,102,0.6); }
}

/* ─── TOAST ──────────────────────────────────────────── */

.toast {
    position: fixed;
    bottom: -100px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-dark);
    color: #fff;
    padding: 1rem 2rem;
    border-radius: var(--radius);
    font-size: 0.9rem;
    font-weight: 500;
    z-index: 3000;
    transition: bottom 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: var(--shadow-xl);
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.toast.show {
    bottom: 2rem;
}

.toast.success {
    background: var(--success);
}

.toast i {
    font-size: 1.1rem;
}

/* ─── ABOUT PAGE ─────────────────────────────────────── */

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 4/3;
    background: var(--bg-alt);
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Alternating image/text rows (e.g. About → What Sets Us Apart) */
.value-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3.5rem;
    align-items: center;
    margin-top: 3rem;
}
.value-row--reverse .value-row__image { order: 2; }
.value-row__image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 4/3;
    background: var(--bg-alt);
    box-shadow: 0 6px 24px rgba(0,0,0,0.08);
}
.value-row__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.value-row__text h3 {
    font-family: var(--font);
    font-size: 1.75rem;
    margin: 0.75rem 0 0.75rem;
}
.value-row__text p {
    color: var(--text-light);
    line-height: 1.75;
    font-size: 1.05rem;
}
.value-row__icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--accent, #f5a623);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
}
@media (max-width: 880px) {
    .value-row { grid-template-columns: 1fr; gap: 1.5rem; }
    .value-row--reverse .value-row__image { order: 0; }
}

.about-content h2 {
    font-family: var(--font);
    font-size: 2rem;
    margin-bottom: 1rem;
}

.about-content p {
    color: var(--text-light);
    margin-bottom: 1rem;
    line-height: 1.7;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-top: 1.5rem;
}

.about-feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    font-weight: 500;
}

.about-feature i {
    color: var(--accent);
}

/* ─── FLASH MESSAGES ─────────────────────────────────── */

.flash-messages {
    padding: 0 1.5rem;
}

.flash-msg {
    max-width: var(--max-width);
    margin: 0.5rem auto;
    padding: 1rem 1.5rem;
    border-radius: var(--radius);
    font-size: 0.9rem;
}

.flash-success {
    background: rgba(34,197,94,0.1);
    color: #166534;
    border: 1px solid rgba(34,197,94,0.2);
}

.flash-error {
    background: rgba(239,68,68,0.1);
    color: #991b1b;
    border: 1px solid rgba(239,68,68,0.2);
}

/* ─── 404 PAGE ───────────────────────────────────────── */

.error-page {
    text-align: center;
    padding: 6rem 2rem;
}

.error-page h1 {
    font-size: 6rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 1rem;
}

.error-page p {
    color: var(--text-light);
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

/* ─── SERVICE DETAIL ─────────────────────────────────── */

.service-detail-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    padding: 3rem 0;
}

.service-content h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.service-content p {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.service-features-list {
    list-style: none;
    margin: 1.5rem 0;
}

.service-features-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.5rem 0;
    font-size: 0.95rem;
}

.service-features-list li i {
    color: var(--success);
    margin-top: 0.2rem;
}

.service-pricing-card {
    background: var(--bg);
    border: 2px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2rem;
    position: sticky;
    top: 90px;
}

.service-pricing-card h3 {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.pricing-item {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border-light);
    font-size: 0.95rem;
}

.pricing-item:last-child {
    border-bottom: none;
}

.pricing-item .price {
    font-weight: 700;
    color: var(--primary);
}

.service-faq {
    margin-top: 2rem;
}

.faq-item {
    border: 1px solid var(--border);
    border-radius: var(--radius);
    margin-bottom: 0.75rem;
    overflow: hidden;
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.25rem;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: var(--transition);
    width: 100%;
    text-align: left;
}

.faq-question:hover {
    background: var(--bg-light);
}

.faq-question i {
    transition: var(--transition);
    color: var(--text-light);
}

.faq-item.open .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 1.25rem 1rem;
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.7;
    display: none;
}

.faq-item.open .faq-answer {
    display: block;
}

/* ─── CHECKOUT ───────────────────────────────────────── */

.checkout-layout {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 3rem;
    padding: 3rem 0;
}

.checkout-section {
    margin-bottom: 2rem;
}

.checkout-section h3 {
    font-size: 1.1rem;
    margin-bottom: 1.25rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid var(--border);
}

.order-summary {
    background: var(--bg-light);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    position: sticky;
    top: 90px;
}

.order-item {
    display: flex;
    gap: 1rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border);
}

.order-item-image {
    width: 60px;
    height: 60px;
    border-radius: var(--radius-sm);
    overflow: hidden;
    background: var(--bg);
    flex-shrink: 0;
}

.order-item-details {
    flex: 1;
    min-width: 0;
}

.order-item-name {
    font-size: 0.9rem;
    font-weight: 500;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.order-item-qty {
    font-size: 0.8rem;
    color: var(--text-light);
}

.order-item-price {
    font-weight: 600;
    white-space: nowrap;
}

/* ─── FINANCE PAGE ───────────────────────────────────── */

.finance-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.finance-step {
    text-align: center;
    padding: 2rem 1.5rem;
    background: var(--bg);
    border-radius: var(--radius);
    border: 1px solid var(--border);
}

.finance-step-number {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--primary);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 700;
    margin: 0 auto 1rem;
}

.finance-step h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.finance-step p {
    font-size: 0.9rem;
    color: var(--text-light);
}

/* ─── RESPONSIVE ─────────────────────────────────────── */

@media (max-width: 1024px) {
    .hero h1 { font-size: 2.8rem; }
    .product-detail { grid-template-columns: 1fr; }
    .product-gallery { position: static; }
    .checkout-layout { grid-template-columns: 1fr; }
    .service-detail-layout { grid-template-columns: 1fr; }
    .about-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .top-bar { display: none; }

    .nav-inner { height: 64px; }

    .nav-links {
        position: fixed;
        top: 64px;
        left: 0;
        right: 0;
        bottom: 0;
        background: var(--bg);
        flex-direction: column;
        padding: 1rem;
        gap: 0;
        transform: translateX(-100%);
        transition: var(--transition);
        z-index: 999;
        overflow-y: auto;
    }

    .nav-links.open {
        transform: translateX(0);
    }

    .nav-links > a,
    .nav-dropdown > a {
        padding: 1rem;
        font-size: 1rem;
        border-bottom: 1px solid var(--border-light);
        border-radius: 0;
    }

    .nav-dropdown .dropdown-menu {
        position: static;
        box-shadow: none;
        border: none;
        opacity: 1;
        visibility: visible;
        transform: none;
        padding-left: 1rem;
        display: none;
    }

    .nav-dropdown.open .dropdown-menu {
        display: block;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .hero { min-height: 70vh; }
    .hero h1 { font-size: 2.2rem; }
    .hero p { font-size: 1rem; }
    .hero-stats { gap: 1.5rem; }
    .hero-stat .number { font-size: 1.5rem; }

    .section { padding: 3rem 0; }
    .section-title { font-size: 1.8rem; }

    .features-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }

    .shop-layout { grid-template-columns: 1fr; }
    .shop-sidebar {
        position: static;
        display: flex;
        overflow-x: auto;
        gap: 0.5rem;
        padding-bottom: 1rem;
    }
    .sidebar-section { min-width: 200px; }

    .products-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }

    .cart-layout { grid-template-columns: 1fr; }
    .cart-item { grid-template-columns: 80px 1fr auto; gap: 1rem; }
    .cart-item-total { display: none; }

    .booking-layout { grid-template-columns: 1fr; }
    .contact-layout { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }

    .cart-sidebar { width: 100%; right: -100%; }

    .page-header h1 { font-size: 1.8rem; }
    .page-header { padding: 3rem 0; }

    .cta-content h2 { font-size: 1.8rem; }
    .services-grid { grid-template-columns: 1fr; }

    .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
}

@media (max-width: 480px) {
    .hero h1 { font-size: 1.8rem; }
    .hero-actions { flex-direction: column; }
    .hero-actions .btn { width: 100%; }
    .hero-stats { flex-direction: column; gap: 1rem; }

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

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

/* ─── FOOTER ─────────────────────────────────────────── */

.footer {
    background: var(--primary-dark);
    color: rgba(255,255,255,0.8);
    padding-top: 0;
    position: relative;
}

.footer-wave {
    color: var(--primary-dark);
    margin-top: -1px;
}

.footer-wave svg {
    display: block;
    width: 100%;
    height: 60px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
    gap: 3rem;
    padding: 3rem 0;
}

.footer-logo {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
    margin-bottom: 1rem;
}

.footer-logo .logo-main {
    font-size: 1.5rem;
    color: #fff;
}

.footer-logo .logo-sub {
    color: var(--accent);
}

.footer p {
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.footer h4 {
    color: #fff;
    font-size: 1rem;
    margin-bottom: 1.25rem;
    position: relative;
}

.footer h4::after {
    content: '';
    display: block;
    width: 30px;
    height: 2px;
    background: var(--accent);
    margin-top: 0.5rem;
}

.footer ul {
    list-style: none;
}

.footer ul li {
    margin-bottom: 0.5rem;
}

.footer ul li a {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.7);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer ul li a:hover {
    color: var(--accent);
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-size: 0.85rem;
    margin-bottom: 0.75rem;
}

.footer-contact li i {
    color: var(--accent);
    margin-top: 0.15rem;
}

.footer-hours li {
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
    padding: 0.3rem 0;
}

.footer-social {
    display: flex;
    gap: 0.75rem;
}

.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: #fff;
    font-size: 1rem;
    transition: var(--transition);
}

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

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem 0;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 0.8rem;
    color: rgba(255,255,255,0.5);
}

.footer-bottom-links {
    display: flex;
    gap: 1.5rem;
}

.footer-bottom-links a {
    color: rgba(255,255,255,0.5);
}

.footer-bottom-links a:hover {
    color: var(--accent);
}

/* ─── LOADING / SKELETON ─────────────────────────────── */

@keyframes shimmer {
    0% { background-position: -400px 0; }
    100% { background-position: 400px 0; }
}

.skeleton {
    background: linear-gradient(90deg, var(--bg-alt) 25%, var(--border-light) 50%, var(--bg-alt) 75%);
    background-size: 400px 100%;
    animation: shimmer 1.5s infinite;
    border-radius: var(--radius-sm);
}

/* ─── UTILITY CLASSES ────────────────────────────────── */

.footer-col { }
.search-close { color: var(--text-light); font-size: 1.1rem; }
.shop-main { min-width: 0; }

/* ─── ANIMATIONS ─────────────────────────────────────── */

.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ─── PRICING / TOGGLE LAYOUT ────────────────────────── */

.pricing-layout {
    display: grid;
    grid-template-columns: 240px 1fr;
    gap: 3rem;
}

.pricing-toggle-sidebar {
    position: sticky;
    top: 90px;
    align-self: start;
}

.pricing-toggle-sidebar h3 {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-light);
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--border);
}

.pricing-toggle {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    width: 100%;
    padding: 0.85rem 1rem;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text);
    border: 2px solid transparent;
    border-radius: var(--radius-sm);
    background: none;
    cursor: pointer;
    transition: var(--transition);
    text-align: left;
    margin-bottom: 0.35rem;
}

.pricing-toggle i {
    width: 20px;
    text-align: center;
    color: var(--text-light);
    font-size: 0.9rem;
}

.pricing-toggle:hover {
    background: var(--bg-light);
    color: var(--primary);
}

.pricing-toggle.active {
    background: var(--accent-light);
    color: var(--primary);
    border-color: var(--accent);
    font-weight: 600;
}

.pricing-toggle.active i {
    color: var(--accent);
}

.pricing-content {
    min-width: 0;
}

.pricing-panel {
    display: none;
}

.pricing-panel.active {
    display: block;
}

.pricing-panel-header {
    margin-bottom: 2rem;
}

.pricing-panel-header .section-label { margin-bottom: 0.5rem; }
.pricing-panel-header .section-title { text-align: left; margin-bottom: 0.5rem; }
.pricing-panel-header .section-subtitle { text-align: left; }

@media (max-width: 900px) {
    .pricing-layout { grid-template-columns: 1fr; }
    .pricing-toggle-sidebar {
        position: static;
        display: flex;
        flex-wrap: wrap;
        gap: 0.5rem;
        margin-bottom: 1rem;
    }
    .pricing-toggle-sidebar h3 { width: 100%; }
    .pricing-toggle { width: auto; flex: 0 0 auto; padding: 0.6rem 1rem; font-size: 0.85rem; }
}


/* ═══════════════════════════════════════════════════════
   SHOWROOM — Vehicle Listings & Detail
   ═══════════════════════════════════════════════════════ */

/* ─── SHOWROOM HERO ────────────────────────────────── */
.showroom-hero {
    position: relative;
    background: var(--primary-dark);
    color: #fff;
    padding: 4rem 0 3rem;
    overflow: hidden;
}
.showroom-hero-bg {
    position: absolute;
    inset: 0;
    background: url('https://img.cdn.dragon2000.net/C3802/U45/DSCF5034-large.jpg') center/cover no-repeat;
    opacity: 0.18;
}
.showroom-hero-inner {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}
.showroom-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: rgba(232,168,56,0.2);
    border: 1px solid var(--accent);
    color: var(--accent);
    padding: 0.35rem 0.9rem;
    border-radius: 50px;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    margin-bottom: 1rem;
}
.showroom-hero-text h1 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-family: var(--font-display);
    margin: 0.4rem 0 0.8rem;
}
.showroom-hero-text p {
    font-size: 1.05rem;
    opacity: 0.85;
    max-width: 500px;
}
.showroom-hero-stats {
    display: flex;
    gap: 1.5rem;
}
.stat-box {
    text-align: center;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: var(--radius);
    padding: 1rem 1.5rem;
    min-width: 90px;
}
.stat-num {
    display: block;
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--accent);
    line-height: 1;
}
.stat-label {
    display: block;
    font-size: 0.72rem;
    opacity: 0.75;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-top: 0.3rem;
}

/* ─── SHOWROOM LAYOUT ──────────────────────────────── */
.showroom-layout {
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 2rem;
    padding: 2.5rem 0 4rem;
    align-items: start;
}
@media (max-width: 900px) {
    .showroom-layout { grid-template-columns: 1fr; }
    .showroom-hero-stats { display: none; }
}

/* ─── FILTER SIDEBAR ───────────────────────────────── */
.showroom-sidebar { position: sticky; top: 90px; }
.filter-form {
    background: var(--bg-light);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}
.filter-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.25rem;
}
.filter-header h3 { font-size: 1rem; display: flex; align-items: center; gap: 0.5rem; }
.filter-clear { font-size: 0.8rem; color: var(--accent); font-weight: 600; }
.filter-group { margin-bottom: 1.25rem; }
.filter-label { display: block; font-size: 0.78rem; font-weight: 600; color: var(--text-light); text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 0.5rem; }
.filter-select, .filter-input {
    width: 100%;
    padding: 0.6rem 0.85rem;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    background: #fff;
    color: var(--text);
}
.price-inputs { display: flex; align-items: center; gap: 0.5rem; }
.price-inputs .filter-input { flex: 1; }
.price-inputs span { color: var(--text-lighter); }
.filter-btn {
    width: 100%;
    background: var(--primary);
    color: #fff;
    padding: 0.7rem;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: var(--transition);
}
.filter-btn:hover { background: var(--primary-light); }

.showroom-trust {
    background: var(--primary-dark);
    border-radius: var(--radius);
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}
.trust-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: rgba(255,255,255,0.9);
    font-size: 0.88rem;
}
.trust-item i { color: var(--accent); width: 16px; text-align: center; }

/* ─── VEHICLE GRID ─────────────────────────────────── */
.showroom-toolbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}
.showroom-count { font-size: 0.9rem; color: var(--text-light); }

.vehicles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
    align-items: stretch;
}

.vehicle-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: var(--text);
}
.vehicle-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-light);
}
.vehicle-card-img-wrap {
    position: relative;
    width: 100%;
    height: 220px;
    overflow: hidden;
    background: var(--bg-alt);
    flex-shrink: 0;
}
.vehicle-card-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.4s;
    display: block;
}
.vehicle-card:hover .vehicle-card-img-wrap img { transform: scale(1.04); }
.vehicle-no-img {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: var(--border);
}
.vehicle-card-badges {
    position: absolute;
    top: 0.75rem;
    left: 0.75rem;
    display: flex;
    gap: 0.4rem;
    flex-wrap: wrap;
}
.badge-stock {
    background: var(--success);
    color: #fff;
    font-size: 0.68rem;
    font-weight: 700;
    padding: 0.2rem 0.6rem;
    border-radius: 50px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}
.badge-ref {
    background: rgba(0,0,0,0.6);
    color: #fff;
    font-size: 0.68rem;
    font-weight: 600;
    padding: 0.2rem 0.6rem;
    border-radius: 50px;
}
.vehicle-photo-count {
    position: absolute;
    bottom: 0.6rem;
    right: 0.7rem;
    background: rgba(0,0,0,0.6);
    color: #fff;
    font-size: 0.72rem;
    padding: 0.2rem 0.55rem;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 0.3rem;
}
.vehicle-card-body {
    padding: 1rem 1.1rem 1.25rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}
.vehicle-card-title {
    font-size: 0.95rem;
    font-weight: 700;
    line-height: 1.35;
    color: var(--text);
}
.vehicle-card-specs {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem 0.9rem;
    font-size: 0.8rem;
    color: var(--text-light);
}
.vehicle-card-specs span {
    display: flex;
    align-items: center;
    gap: 0.3rem;
}
.vehicle-card-specs i { color: var(--accent); font-size: 0.7rem; }
.vehicle-card-colour { font-size: 0.8rem; color: var(--text-lighter); display: flex; align-items: center; gap: 0.3rem; }
.vehicle-card-colour i { color: var(--accent); }
.vehicle-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
    padding-top: 0.75rem;
    border-top: 1px solid var(--border-light);
}
.vehicle-price {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--primary);
}
.vehicle-cta {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--accent);
    display: flex;
    align-items: center;
    gap: 0.3rem;
    transition: var(--transition);
}
.vehicle-card:hover .vehicle-cta { gap: 0.6rem; }

/* ─── SHOWROOM EMPTY / ENQUIRY BANNER ─────────────── */
.showroom-empty {
    text-align: center;
    padding: 4rem 2rem;
    color: var(--text-light);
}
.showroom-empty i { font-size: 3rem; margin-bottom: 1rem; color: var(--border); }
.showroom-empty h3 { margin-bottom: 0.5rem; }
.showroom-empty a { color: var(--accent); font-weight: 600; }

.showroom-enquiry-banner {
    margin-top: 3rem;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    border-radius: var(--radius-lg);
    padding: 2rem 2.5rem;
    color: #fff;
}
.enquiry-banner-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}
.enquiry-banner-inner h3 { font-size: 1.3rem; margin-bottom: 0.3rem; }
.enquiry-banner-inner p { opacity: 0.85; font-size: 0.95rem; }
.enquiry-banner-actions { display: flex; gap: 0.75rem; flex-wrap: wrap; }
.btn-banner-phone {
    background: var(--accent);
    color: #fff;
    padding: 0.7rem 1.5rem;
    border-radius: var(--radius-sm);
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    white-space: nowrap;
}
.btn-banner-contact {
    background: rgba(255,255,255,0.15);
    color: #fff;
    border: 1px solid rgba(255,255,255,0.4);
    padding: 0.7rem 1.5rem;
    border-radius: var(--radius-sm);
    font-weight: 600;
}
.btn-banner-contact:hover { background: rgba(255,255,255,0.25); }

/* ─── VEHICLE DETAIL ───────────────────────────────── */
.breadcrumb-bar {
    background: var(--bg-light);
    border-bottom: 1px solid var(--border);
    padding: 0.75rem 0;
    font-size: 0.82rem;
    color: var(--text-light);
}
.breadcrumb-bar a { color: var(--primary); }
.breadcrumb-bar i { font-size: 0.6rem; margin: 0 0.4rem; }

.vd-container { padding-top: 2rem; padding-bottom: 4rem; overflow-x: hidden; }
.vd-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 320px;
    gap: 2.5rem;
    align-items: start;
    max-width: 100%;
}
@media (max-width: 1100px) { .vd-layout { grid-template-columns: minmax(0, 1fr) 280px; } }
@media (max-width: 960px) { .vd-layout { grid-template-columns: 1fr; } }

/* ─── VEHICLE DETAIL GALLERY ───────────────────────── */
.vd-main { min-width: 0; overflow: hidden; }
.vd-sidebar { min-width: 0; }

.vd-main-img {
    position: relative;
    width: 100%;
    aspect-ratio: 4/3;
    max-height: 480px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: #1e293b;
    cursor: pointer;
}
.vd-main-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    transition: transform 0.4s;
}
.vd-main-img:hover img { transform: scale(1.02); }
.vd-main-img-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    padding: 1rem;
    background: linear-gradient(to top, rgba(0,0,0,0.45) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.3s;
}
.vd-main-img:hover .vd-main-img-overlay { opacity: 1; }
.vd-main-img-overlay span {
    color: #fff;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}
.vd-main-img-overlay span:first-child {
    background: rgba(255,255,255,0.15);
    border: 1px solid rgba(255,255,255,0.3);
    padding: 0.4rem 0.8rem;
    border-radius: 50px;
    backdrop-filter: blur(4px);
}
.vd-photo-badge {
    background: rgba(0,0,0,0.5);
    padding: 0.3rem 0.75rem;
    border-radius: 50px;
}

.vd-thumbstrip {
    display: flex;
    gap: 0.5rem;
    margin-top: 0.6rem;
    overflow-x: auto;
    max-width: 100%;
    padding-bottom: 0.3rem;
    scrollbar-width: thin;
    scrollbar-color: var(--border) transparent;
}
.vd-thumb {
    flex: 0 0 88px;
    height: 66px;
    border-radius: var(--radius-sm);
    overflow: hidden;
    cursor: pointer;
    border: 2.5px solid transparent;
    transition: border-color 0.2s, opacity 0.2s;
    background: var(--bg-alt);
    padding: 0;
}
.vd-thumb.active { border-color: var(--accent); }
.vd-thumb:hover { border-color: var(--primary-light); opacity: 0.9; }
.vd-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* Specs bar */
.vd-specs-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin: 1.5rem 0;
    padding: 1.25rem;
    background: var(--bg-light);
    border-radius: var(--radius);
    border: 1px solid var(--border);
}
.spec-pill {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    min-width: 120px;
}
.spec-pill i { font-size: 1.1rem; color: var(--accent); }
.spec-pill span { display: block; font-size: 0.72rem; color: var(--text-lighter); text-transform: uppercase; letter-spacing: 0.05em; }
.spec-pill strong { display: block; font-size: 0.92rem; font-weight: 700; color: var(--text); }

/* Sections */
.vd-section { margin-bottom: 2.5rem; }
.vd-section-title {
    font-size: 1.2rem;
    font-family: var(--font-display);
    color: var(--primary);
    margin-bottom: 1rem;
    padding-bottom: 0.6rem;
    border-bottom: 2px solid var(--border);
}
.vd-description p, .vd-description .desc-para {
    margin-bottom: 0.75rem;
    color: var(--text);
    line-height: 1.7;
    font-size: 0.95rem;
}
.desc-subheading {
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--primary);
    margin: 1.4rem 0 0.4rem;
    padding-bottom: 0.3rem;
    border-bottom: 1.5px solid var(--border);
}
.desc-subheading:first-child { margin-top: 0; }
.desc-list {
    margin: 0 0 0.9rem 0;
    padding-left: 1.2rem;
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}
.desc-list li {
    font-size: 0.93rem;
    color: var(--text);
    line-height: 1.55;
}
.desc-notice {
    margin: 1.25rem 0 0.75rem;
    padding: 0.9rem 1.1rem;
    background: #fffbeb;
    border-left: 3px solid #f59e0b;
    border-radius: 0 6px 6px 0;
}
.desc-notice p {
    margin: 0 0 0.4rem;
    font-size: 0.85rem;
    color: #78350f;
    line-height: 1.55;
}
.desc-notice p:last-child { margin-bottom: 0; }

/* ── Confirmed feature pills (no crosses) ── */
.vd-feat-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}
.vd-feat-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.45rem 0.85rem;
    background: #f0fdf4;
    border: 1.5px solid #bbf7d0;
    border-radius: 50px;
    font-size: 0.84rem;
    font-weight: 600;
    color: #166534;
}
.vd-feat-pill i { font-size: 0.75rem; }

/* ── Feature checklist (kept for reference, not currently used) ── */
.vd-feat-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.6rem;
    margin-bottom: 1rem;
}
@media (max-width: 768px) { .vd-feat-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .vd-feat-grid { grid-template-columns: 1fr; } }

.vd-feat-item {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.65rem 0.85rem;
    border-radius: var(--radius-sm);
    font-size: 0.87rem;
    font-weight: 600;
    border: 1.5px solid transparent;
    transition: transform 0.15s;
}
.vd-feat-item:hover { transform: translateY(-1px); }

.feat-yes {
    background: #f0fdf4;
    border-color: #bbf7d0;
    color: #166534;
}
.feat-no {
    background: #fafafa;
    border-color: #e2e8f0;
    color: #94a3b8;
}
.feat-icon { font-size: 1rem; flex-shrink: 0; }
.feat-yes .feat-icon { color: #16a34a; }
.feat-no .feat-icon { color: #cbd5e1; }

.vd-feat-note {
    font-size: 0.78rem;
    color: var(--text-lighter);
    display: flex;
    align-items: center;
    gap: 0.4rem;
    margin-top: 0.5rem;
}

/* ── Performance stats ── */
.vd-perf-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
    gap: 1rem;
}
.vd-perf-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.4rem;
    padding: 1.25rem 0.75rem;
    background: var(--primary);
    border-radius: var(--radius);
    text-align: center;
    color: #fff;
}
.vd-perf-card i { font-size: 1.4rem; opacity: 0.75; }
.vd-perf-card strong { font-size: 1.15rem; font-weight: 800; line-height: 1.1; }
.vd-perf-card span { font-size: 0.75rem; opacity: 0.8; font-weight: 500; text-transform: uppercase; letter-spacing: 0.04em; }

/* ── Trust badges in sidebar ── */
.vd-trust-badges { display: flex; flex-direction: column; gap: 0.55rem; border-top: 1px solid #e2e8f0; padding-top: 1rem; margin-top: 0.25rem; }

/* Price card */
.sticky-card { position: sticky; top: 90px; }
.vd-price-card {
    background: #fff;
    border: 2px solid var(--primary);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1.25rem;
}
.vd-stock-ref { font-size: 0.78rem; color: var(--text-lighter); font-weight: 600; letter-spacing: 0.06em; }
.vd-price { font-size: 2.2rem; font-weight: 900; color: var(--primary); line-height: 1; }
.vd-monthly { font-size: 0.85rem; color: var(--text-light); }
.vd-monthly strong { color: var(--accent); }
.vd-highlights { display: flex; flex-direction: column; gap: 0.6rem; }
.vd-highlight {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.85rem;
    color: var(--text);
}
.vd-highlight i { color: var(--success); width: 16px; text-align: center; }
.btn-vd-primary {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: var(--primary);
    color: #fff;
    padding: 0.85rem;
    border-radius: var(--radius-sm);
    font-weight: 700;
    font-size: 1rem;
    transition: var(--transition);
}
.btn-vd-primary:hover { background: var(--primary-light); }
.btn-vd-whatsapp {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: #25d366;
    color: #fff;
    padding: 0.75rem;
    border-radius: var(--radius-sm);
    font-weight: 600;
    transition: var(--transition);
}
.btn-vd-whatsapp:hover { background: #1da851; }
.btn-vd-secondary {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    border: 2px solid var(--primary);
    color: var(--primary);
    padding: 0.75rem;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition);
    cursor: pointer;
    width: 100%;
}
.btn-vd-secondary:hover { background: var(--primary); color: #fff; }
.btn-vd-finance {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: var(--accent, #f5a623);
    color: #fff;
    padding: 0.75rem;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition);
    width: 100%;
    text-decoration: none;
}
.btn-vd-finance:hover { background: var(--accent-dark, #d68910); color: #fff; }
.btn-vd-reserve {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: #1f2937;
    color: #fff;
    padding: 0.85rem;
    border-radius: var(--radius-sm);
    font-weight: 700;
    font-size: 0.95rem;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    width: 100%;
    margin-top: 0.5rem;
}
.btn-vd-reserve:hover { background: #111827; transform: translateY(-1px); box-shadow: 0 6px 18px rgba(0,0,0,0.18); }
.vd-reserve-note { font-size: 0.75rem; color: var(--text-lighter); text-align: center; margin-top: 0.5rem; }

/* Reserve deposit modal */
.reserve-modal-backdrop {
    position: fixed; inset: 0;
    background: rgba(0,0,0,0.55);
    display: none;
    align-items: center; justify-content: center;
    z-index: 9999; padding: 1rem;
}
.reserve-modal-backdrop.active { display: flex; }
.reserve-modal {
    background: #fff;
    border-radius: 12px;
    width: 100%; max-width: 460px;
    padding: 1.75rem;
    box-shadow: 0 25px 60px rgba(0,0,0,0.35);
    animation: reserveIn 0.2s ease-out;
}
@keyframes reserveIn { from { opacity: 0; transform: translateY(8px) scale(0.98); } to { opacity: 1; transform: none; } }
.reserve-modal h3 { font-size: 1.25rem; margin: 0 0 0.25rem; }
.reserve-modal .reserve-sub { color: var(--text-light, #555); font-size: 0.9rem; margin-bottom: 1.25rem; }
.reserve-modal label { display: block; font-size: 0.82rem; font-weight: 600; margin-bottom: 0.35rem; color: var(--text, #222); }
.reserve-modal input { width: 100%; padding: 0.7rem 0.85rem; border: 1px solid #d1d5db; border-radius: 8px; font-size: 0.95rem; margin-bottom: 0.85rem; }
.reserve-modal input:focus { outline: none; border-color: var(--primary, #2563eb); box-shadow: 0 0 0 3px rgba(37,99,235,0.15); }
.reserve-modal .reserve-summary {
    background: #f3f4f6; border-radius: 8px; padding: 0.85rem 1rem; margin-bottom: 1rem;
    display: flex; justify-content: space-between; align-items: center;
}
.reserve-modal .reserve-summary strong { font-size: 1.15rem; }
.reserve-modal .reserve-actions { display: flex; gap: 0.6rem; margin-top: 0.5rem; }
.reserve-modal .reserve-pay { flex: 1; background: #635bff; color: #fff; border: none; padding: 0.85rem; border-radius: 8px; font-weight: 700; font-size: 0.95rem; cursor: pointer; }
.reserve-modal .reserve-pay:hover { background: #4f46e5; }
.reserve-modal .reserve-pay:disabled { opacity: 0.6; cursor: not-allowed; }
.reserve-modal .reserve-cancel { background: #e5e7eb; color: #111827; border: none; padding: 0.85rem 1.1rem; border-radius: 8px; font-weight: 600; cursor: pointer; }
.reserve-modal .reserve-error { color: #dc2626; font-size: 0.85rem; margin-top: 0.5rem; min-height: 1.2em; }
.reserve-modal .reserve-foot { display:flex; align-items:center; gap:0.4rem; font-size: 0.75rem; color: var(--text-lighter, #6b7280); margin-top: 0.85rem; justify-content: center; }

/* Spec summary sidebar */
.vd-spec-summary {
    background: var(--bg-light);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.25rem;
}
.vd-spec-summary h4 { font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--text-lighter); margin-bottom: 0.75rem; }
.vd-qr-block { padding: 0.85rem 1.25rem; }
.vd-qr-inner { display: flex; align-items: center; gap: 1rem; }
.vd-qr-img { width: 68px; height: 68px; flex-shrink: 0; border-radius: 6px; }
.vd-qr-label { font-size: 0.78rem; font-weight: 600; color: var(--text); }
.vd-qr-ref { font-size: 0.72rem; color: var(--text-lighter); font-family: monospace; margin-top: 0.15rem; }
.spec-row {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 0.5rem;
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--border-light);
    font-size: 0.85rem;
    min-width: 0;
}
.spec-row:last-child { border-bottom: none; }
.spec-row span { color: var(--text-light); flex-shrink: 0; }
.spec-row strong { color: var(--text); font-weight: 600; text-align: right; word-break: break-word; min-width: 0; }

/* Enquiry form */
.vd-enquiry-section {
    margin-top: 3rem;
    padding-top: 3rem;
    border-top: 1px solid var(--border);
}
.vd-enquiry-inner {
    background: var(--bg-light);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    max-width: 780px;
    margin: 0 auto;
}
.vd-enquiry-inner h2 { font-family: var(--font-display); color: var(--primary); margin-bottom: 0.5rem; }
.vd-enquiry-inner p { color: var(--text-light); margin-bottom: 1.5rem; font-size: 0.95rem; }
.vd-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
}
@media (max-width: 640px) { .vd-form .form-row { grid-template-columns: 1fr; } }
.vd-form .form-group { display: flex; flex-direction: column; gap: 0.35rem; }
.vd-form label { font-size: 0.8rem; font-weight: 600; color: var(--text-light); }
.vd-form input, .vd-form select, .vd-form textarea {
    padding: 0.7rem 0.9rem;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    font-family: inherit;
    color: var(--text);
    background: #fff;
    transition: border-color 0.2s;
}
.vd-form input:focus, .vd-form select:focus, .vd-form textarea:focus {
    outline: none;
    border-color: var(--primary);
}
.vd-form .form-group { margin-bottom: 1rem; }
.btn-form-submit {
    background: var(--primary);
    color: #fff;
    padding: 0.85rem 2rem;
    border-radius: var(--radius-sm);
    font-weight: 700;
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    border: none;
    cursor: pointer;
    transition: var(--transition);
}
.btn-form-submit:hover { background: var(--primary-light); }
.form-success {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: #dcfce7;
    color: #15803d;
    padding: 1rem 1.25rem;
    border-radius: var(--radius-sm);
    font-weight: 600;
    margin-top: 1rem;
}

/* Related vehicles */
.vd-related { margin-top: 3.5rem; padding-top: 3rem; border-top: 1px solid var(--border); }
.vd-related h2 { font-family: var(--font-display); font-size: 1.6rem; color: var(--primary); margin-bottom: 1.5rem; }

/* Lightbox */
.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.94);
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
}
.lightbox.active { display: flex; }
.lightbox-img-wrap { max-width: 90vw; max-height: 85vh; position: relative; }
.lightbox-img-wrap img { max-width: 90vw; max-height: 82vh; object-fit: contain; border-radius: 4px; }
.lightbox-counter {
    text-align: center;
    color: rgba(255,255,255,0.7);
    font-size: 0.8rem;
    margin-top: 0.5rem;
}
.lightbox-close, .lightbox-prev, .lightbox-next {
    position: fixed;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    color: #fff;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1rem;
    transition: background 0.2s;
    z-index: 10000;
}
.lightbox-close:hover, .lightbox-prev:hover, .lightbox-next:hover { background: rgba(255,255,255,0.25); }
.lightbox-close { top: 1.5rem; right: 1.5rem; }
.lightbox-prev { left: 1.5rem; top: 50%; transform: translateY(-50%); }
.lightbox-next { right: 1.5rem; top: 50%; transform: translateY(-50%); }

/* ═══════════════════════════════════════════════════════
   SOCIAL MEDIA SECTION
═══════════════════════════════════════════════════════ */
.social-section { background: var(--bg-light); }

.social-platforms-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    align-items: stretch;
}
@media (max-width: 1024px) { .social-platforms-grid { grid-template-columns: 1fr; } }

.social-platform-col {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,.07);
    display: flex;
    flex-direction: column;
}
.social-brand-panel { flex: 1; }

.social-platform-header {
    display: flex;
    align-items: center;
    gap: .75rem;
    padding: 1rem 1.25rem;
    border-bottom: 1px solid #f1f5f9;
}

.social-platform-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: #fff;
    flex-shrink: 0;
}
.facebook-icon { background: #1877f2; }
.instagram-icon { background: linear-gradient(135deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%); }
.tiktok-icon { background: #000; }

.social-platform-name { font-weight: 700; font-size: .95rem; color: var(--text-dark); }
.social-handle { font-size: .8rem; color: #64748b; text-decoration: none; }
.social-handle:hover { color: var(--accent); }

.btn-follow {
    margin-left: auto;
    padding: .35rem 1rem;
    border-radius: 20px;
    font-size: .8rem;
    font-weight: 700;
    text-decoration: none;
    flex-shrink: 0;
    transition: opacity .2s;
}
.btn-follow:hover { opacity: .85; }
.facebook-follow { background: #1877f2; color: #fff; }
.instagram-follow { background: linear-gradient(135deg, #f09433, #dc2743, #bc1888); color: #fff; }
.tiktok-follow { background: #000; color: #fff; }

.social-tiles-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3px;
    padding: 0;
    flex: 1;
}

.social-tile {
    position: relative;
    aspect-ratio: 1/1;
    overflow: hidden;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.facebook-tile { background: linear-gradient(135deg, #1877f2 0%, #0d5abf 50%, #1565c0 100%); }
.instagram-tile { background: linear-gradient(135deg, #f9c058 0%, #f47629 25%, #e0334a 50%, #b2225a 75%, #8e1fba 100%); }
.tiktok-tile { background: linear-gradient(135deg, #010101 0%, #1a1a2e 50%, #16213e 100%); }

.social-tile-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: .35rem;
    color: rgba(255,255,255,.7);
    font-size: .75rem;
    font-weight: 600;
    z-index: 1;
    transition: color .2s;
}
.social-tile-inner i { font-size: 1.5rem; }

.social-tile-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,.35);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    color: rgba(255,255,255,.0);
    transition: all .25s;
}
.social-tile:hover .social-tile-overlay {
    color: rgba(255,255,255,.9);
    background: rgba(0,0,0,.5);
}
.social-tile:hover .social-tile-inner { color: transparent; }

/* Facebook & TikTok brand panels */
.social-brand-panel {
    display: block;
    position: relative;
    overflow: hidden;
    border-radius: 0;
    text-decoration: none;
    aspect-ratio: unset;
    min-height: 240px;
    flex: 1;
}
.sbp-bg {
    position: absolute;
    inset: 0;
    opacity: 0.92;
    transition: opacity .3s;
}
.social-brand-panel:hover .sbp-bg { opacity: 1; }

.facebook-panel .sbp-bg { background: linear-gradient(145deg, #1877f2 0%, #0d5abf 40%, #1565c0 100%); }
.tiktok-panel .sbp-bg   { background: linear-gradient(145deg, #010101 0%, #1a1a2e 50%, #16213e 100%); }

.sbp-content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2.25rem 1.75rem;
    gap: 0.75rem;
    height: 100%;
    color: #fff;
}
.sbp-icon {
    font-size: 2.6rem;
    opacity: 0.9;
    margin-bottom: 0.25rem;
}
.sbp-title {
    font-size: 1.2rem;
    font-weight: 800;
    letter-spacing: -0.01em;
}
.sbp-desc {
    font-size: 0.82rem;
    line-height: 1.55;
    opacity: 0.85;
    max-width: 220px;
    margin: 0;
}
.sbp-highlights {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 0.25rem;
}
.sbp-highlights span {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    font-size: 0.72rem;
    font-weight: 600;
    background: rgba(255,255,255,.15);
    padding: 0.3rem 0.65rem;
    border-radius: 50px;
    border: 1px solid rgba(255,255,255,.2);
    white-space: nowrap;
}
.sbp-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    margin-top: 0.5rem;
    padding: 0.6rem 1.4rem;
    background: rgba(255,255,255,.2);
    border: 1.5px solid rgba(255,255,255,.5);
    border-radius: 50px;
    font-size: 0.82rem;
    font-weight: 700;
    transition: background .2s, border-color .2s;
}
.social-brand-panel:hover .sbp-cta {
    background: rgba(255,255,255,.3);
    border-color: rgba(255,255,255,.8);
}

/* Real Instagram photo tiles */
.ig-real-tile {
    background: #111;
    display: block;
    padding: 0;
}
.ig-real-tile img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .3s ease;
}
.ig-real-tile:hover img { transform: scale(1.05); }
.ig-tile-hover {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    color: transparent;
    transition: all .25s;
}
.ig-real-tile:hover .ig-tile-hover {
    background: rgba(0,0,0,.45);
    color: #fff;
}

.social-view-all {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    padding: .875rem;
    font-size: .85rem;
    font-weight: 600;
    color: var(--primary);
    text-decoration: none;
    border-top: 1px solid #f1f5f9;
    transition: background .15s;
}
.social-view-all:hover { background: var(--bg-light); }

/* ═══════════════════════════════════════════════════════
   BOOKING FORM — CALL NOTE
═══════════════════════════════════════════════════════ */
.booking-call-note {
    display: flex;
    align-items: flex-start;
    gap: .75rem;
    background: linear-gradient(135deg, #fff7ed, #fef3c7);
    border: 1px solid #fcd34d;
    border-radius: 10px;
    padding: 1rem 1.25rem;
    margin-top: 1rem;
}
.booking-call-note i {
    font-size: 1.25rem;
    color: var(--accent);
    margin-top: .1rem;
    flex-shrink: 0;
}
.booking-call-note div { line-height: 1.4; }
.booking-call-note strong {
    display: block;
    font-size: .9rem;
    color: var(--text-dark);
    margin-bottom: .2rem;
}
.booking-call-note span {
    font-size: .82rem;
    color: #92400e;
}

/* Inline calendar inside form — compact */
#inlineCalendarContainer .calendar-header { padding: .75rem 1rem; }
#inlineCalendarContainer .calendar-grid { padding: .5rem .75rem; }
#inlineCalendarContainer .calendar-day { font-size: .82rem; height: 34px; }
#inlineCalendarContainer .calendar-header h3 { font-size: 1rem; }


/* ─── HOMEPAGE REVAMP (compact, vehicles-first) ────────────────── */
.hero--compact { min-height: 0; }
.hero--compact .hero-content,
.hero-content--compact { max-width: 760px; padding: 2.75rem 0; }
.hero--compact h1 { font-size: 2.3rem; margin-bottom: 1.1rem; }
.hero--compact .hero-badge { margin-bottom: 1rem; }

.home-page .section--tight { padding: 3rem 0; }

.section-header--row {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 1.5rem;
    text-align: left;
    max-width: none;
    margin: 0 0 1.75rem;
}
.section-header--row .section-label { margin-bottom: 0.35rem; }
.section-header--row .section-title { font-size: 1.85rem; margin-bottom: 0; }
.section-header--row .btn { flex-shrink: 0; white-space: nowrap; }

/* slim trust bar */
.features-bar--slim { padding: 1.1rem 0; }
.features-grid--slim { gap: 1rem; }
.features-grid--slim .feature-item { justify-content: center; gap: 0.65rem; }
.features-grid--slim .feature-icon { width: 38px; height: 38px; font-size: 1rem; }
.features-grid--slim .feature-text h4 { font-size: 0.82rem; }
.features-grid--slim .feature-text p { font-size: 0.72rem; }

/* vehicles first: 3 per row */
.vehicles-grid--home { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 900px) { .vehicles-grid--home { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .vehicles-grid--home { grid-template-columns: 1fr; } }

/* accessories: 6 compact tiles with images */
.categories-grid--six { grid-template-columns: repeat(6, 1fr); gap: 1rem; }
.categories-grid--six .category-card { height: 158px; }
.categories-grid--six .category-card-content { padding: 1rem; }
.categories-grid--six .category-card h3 { font-size: 1rem; margin-bottom: 0.1rem; }
.categories-grid--six .category-card p { font-size: 0.72rem; }
.categories-grid--six .category-card .card-arrow { width: 30px; height: 30px; top: 0.6rem; right: 0.6rem; font-size: 0.8rem; }
@media (max-width: 1100px) { .categories-grid--six { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 640px)  { .categories-grid--six { grid-template-columns: repeat(2, 1fr); } }

/* services: 6 compact cards in one row */
.services-grid--six { grid-template-columns: repeat(6, 1fr); gap: 1rem; }
.services-grid--six .service-card { padding: 1.25rem 1rem; text-align: center; align-items: center; text-decoration: none; }
.services-grid--six .service-card-icon { width: 46px; height: 46px; font-size: 1.2rem; margin-bottom: 0.8rem; }
.services-grid--six .service-card h3 { font-size: 0.92rem; margin-bottom: 0.4rem; }
.services-grid--six .service-card p { font-size: 0.76rem; margin-bottom: 0; flex: 0; line-height: 1.45; }
@media (max-width: 1100px) { .services-grid--six { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 640px)  { .services-grid--six { grid-template-columns: repeat(2, 1fr); } }

/* slim follow-us strip */
.follow-strip { padding: 2rem 0; border-top: 1px solid var(--border); background: var(--bg); }
.follow-strip .container { display: flex; align-items: center; justify-content: center; gap: 1.25rem; flex-wrap: wrap; }
.follow-strip-label { font-weight: 700; color: var(--text); font-size: 0.95rem; }
.follow-strip-links { display: flex; gap: 0.6rem; flex-wrap: wrap; }
.follow-strip-links a {
    display: inline-flex; align-items: center; gap: 0.5rem;
    padding: 0.5rem 1.1rem; border: 1px solid var(--border); border-radius: 100px;
    color: var(--text); text-decoration: none; font-size: 0.88rem; font-weight: 600;
    transition: var(--transition);
}
.follow-strip-links a:hover { border-color: var(--accent); color: var(--accent); transform: translateY(-1px); }
