/* Reinke Farm Supply – fully responsive, theme via CSS variables */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { font-size: 16px; scroll-behavior: smooth; }
body {
    font-family: 'Segoe UI', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--page-bg-gradient, #fff);
    background-color: var(--page-bg);
    color: #333;
    line-height: 1.6;
    min-height: 100vh;
    overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }

.container {
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 clamp(12px, 2.5vw, 20px);
}

/* ----- Header ----- */
.main-header {
    background-color: var(--header-bg);
    color: var(--header-text);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 12px rgba(0,0,0,0.12);
    min-height: 56px;
}
.top-bar {
    background: rgba(0,0,0,0.12);
    padding: 10px 0;
    font-size: clamp(0.8rem, 2vw, 0.9rem);
}
.top-bar .container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 10px 20px;
}
.top-link {
    color: var(--header-text);
    text-decoration: none;
    opacity: 0.95;
}
.top-link:hover { opacity: 1; text-decoration: underline; }
.btn-contact {
    background: rgba(255,255,255,0.2);
    color: var(--header-text);
    padding: 8px 16px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    border: 1px solid rgba(255,255,255,0.35);
    white-space: nowrap;
}
.btn-contact:hover { background: rgba(255,255,255,0.3); }

.main-nav { padding: 22px 0; min-height: 24px; }
.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}
.logo {
    font-size: clamp(1.2rem, 3vw, 1.5rem);
    font-weight: 700;
    color: var(--header-text);
    text-decoration: none;
    letter-spacing: -0.02em;
}
.nav-menu {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 8px 20px;
}
.nav-menu a {
    color: var(--header-text);
    text-decoration: none;
    font-weight: 500;
    padding: 10px 8px;
    font-size: clamp(0.9rem, 2vw, 1.05rem);
}
.nav-menu a:hover { text-decoration: underline; opacity: 0.95; }

/* Nav theme: Pill buttons */
.main-nav.nav-theme-pill .nav-menu a {
    padding: 10px 16px;
    border-radius: 999px;
    background: rgba(255,255,255,0.15);
    border: 1px solid rgba(255,255,255,0.25);
}
.main-nav.nav-theme-pill .nav-menu a:hover { background: rgba(255,255,255,0.25); text-decoration: none; }
/* Nav theme: Underline */
.main-nav.nav-theme-underline .nav-menu a {
    padding: 12px 4px;
    border-bottom: 3px solid transparent;
}
.main-nav.nav-theme-underline .nav-menu a:hover { border-bottom-color: currentColor; text-decoration: none; }
/* Nav theme: Minimal */
.main-nav.nav-theme-minimal .nav-menu a {
    font-weight: 400;
    opacity: 0.9;
    padding: 8px 6px;
}
.main-nav.nav-theme-minimal .nav-menu a:hover { opacity: 1; }
/* Nav theme: Bold caps */
.main-nav.nav-theme-bold .nav-menu a {
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-size: 0.85rem;
}
/* Nav theme: Rounded blocks */
.main-nav.nav-theme-rounded .nav-menu a {
    padding: 10px 14px;
    border-radius: 8px;
    background: rgba(0,0,0,0.12);
}
.main-nav.nav-theme-rounded .nav-menu a:hover { background: rgba(0,0,0,0.2); text-decoration: none; }

.menu-toggle {
    display: none;
    background: transparent;
    border: 1px solid rgba(255,255,255,0.5);
    color: var(--header-text);
    padding: 8px 12px;
    cursor: pointer;
    border-radius: 6px;
    font-size: 1.25rem;
}

@media (max-width: 768px) {
    .menu-toggle { display: block; }
    .nav-inner { position: relative; }
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--header-bg);
        flex-direction: column;
        padding: 16px;
        margin-top: 8px;
        border-radius: 0 0 8px 8px;
        box-shadow: 0 8px 20px rgba(0,0,0,0.2);
    }
    .nav-menu.active { display: flex; }
    .nav-menu li { width: 100%; }
    .nav-menu a { display: block; padding: 10px 0; }
}

/* ----- Main content ----- */
.main-content { min-height: 50vh; }
.main-content h1, .main-content .page-title, .section-title {
    color: var(--title-color);
    font-size: clamp(1.5rem, 4vw, 2rem);
    margin-bottom: 0.75em;
    font-weight: 700;
    line-height: 1.2;
}
.main-content h2 {
    color: var(--title-color);
    font-size: clamp(1.2rem, 3vw, 1.5rem);
    margin: 1.25em 0 0.5em;
}
.main-content h3 { font-size: 1.1rem; margin: 1em 0 0.4em; }
.main-content h4 { font-size: 1rem; margin: 0.75em 0 0.25em; }

.lead { font-size: 1.05rem; color: #555; margin-bottom: 1.5rem; }

/* ----- Buttons ----- */
.btn { display: inline-block; text-decoration: none; cursor: pointer; border: none; font: inherit; }
.btn-primary {
    background: var(--btn-primary);
    color: #fff;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    transition: background 0.2s, transform 0.1s;
}
.btn-primary:hover { background: var(--btn-primary-hover); }
.btn-primary:active { transform: scale(0.98); }

/* ----- Hero ----- */
/* Gradient only when no background image (so inline background-image is not overwritten) */
.hero:not(.hero-has-bg) {
    background: linear-gradient(135deg, var(--header-bg) 0%, var(--btn-primary-hover) 100%);
}
/* Desktop: hero FULL viewport width – edge to edge, nothing constrains it */
.hero {
    color: #fff;
    padding: clamp(48px, 10vw, 80px) 0;
    text-align: left;
    min-height: 520px;
    display: flex;
    align-items: center;
    width: 100vw;
    max-width: 100vw;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    box-sizing: border-box;
}
.hero .container.hero-inner { width: 100%; max-width: 1100px; margin: 0 auto; padding: 0 20px; box-sizing: border-box; }
/* Hero with image: full width + fixed height, image stretches to fill (cover) */
.hero.hero-has-bg {
    background-size: 100% 100%;
    background-position: center center;
    background-repeat: no-repeat;
    position: relative;
    min-height: 520px;
    background-color: var(--header-bg);
}
.hero.hero-has-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    pointer-events: none;
}
.hero.hero-has-bg .container { position: relative; z-index: 1; }
.hero h1 { color: #fff; font-size: clamp(1.75rem, 5vw, 2.75rem); margin-bottom: 12px; font-weight: 700; }
.hero .hero-sub { font-size: clamp(1rem, 2.5vw, 1.1rem); opacity: 0.95; margin-bottom: 20px; }
.hero .hero-cta,
.hero .btn-primary.hero-cta { background: var(--btn-primary); color: #fff; }
.hero .hero-cta:hover,
.hero .btn-primary.hero-cta:hover { background: var(--btn-primary-hover); color: #fff; }
/* Header logo image */
.main-header .logo-img { max-height: 52px; width: auto; display: block; vertical-align: middle; }
.main-header .logo { display: inline-flex; align-items: center; }

/* ----- Page hero (inner pages) ----- */
.page-hero {
    background: var(--about-bg);
    padding: clamp(32px, 6vw, 48px) 10px;
}
.about-page .page-hero { padding: clamp(32px, 6vw, 48px) 10px; }
.page-hero .page-title { margin-bottom: 0; }
.about-page .page-hero .page-title { text-align: center; }
.page-subtitle { font-size: 1.1rem; color: #555; margin-top: 8px; }

/* ----- Sections ----- */
.section { padding: clamp(24px, 4vw, 40px) 0; }
.section-alt { background: var(--about-bg); }

/* Home: three feature columns (Browse Inventory, About Us, Transportation) – same row */
.home-features-section { padding: clamp(28px, 4vw, 40px) 0; }
.home-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(20px, 3vw, 28px);
    max-width: 1100px;
    margin: 0 auto;
    width: 100%;
}
.home-feature-card {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: transform 0.2s, box-shadow 0.2s;
    min-width: 0;
}
.home-feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(0,0,0,0.12);
}
.home-feature-card:hover .home-feature-btn { background: var(--btn-primary-hover); }
.home-feature-image-wrap {
    width: 100%;
    height: clamp(190px, 18vw, 240px);
    background: linear-gradient(135deg, #e8ebe8 0%, #d0d8d0 100%);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.home-feature-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    object-position: center;
}
.home-feature-placeholder { font-size: 3.5rem; opacity: 0.7; }
.home-feature-title {
    padding: 16px 20px 8px;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--title-color);
    margin: 0;
    text-align: center;
}
.home-feature-btn {
    display: inline-block;
    align-self: center;
    margin: 0 20px 20px;
    padding: 12px 28px;
}

/* About preview: image left with overlay + content right */
.about-preview-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(24px, 4vw, 40px);
    align-items: stretch;
    max-width: 1100px;
    margin: 0 auto;
}
.about-preview-image-wrap {
    position: relative;
    /* Consistent visual size with the feature cards */
    min-height: clamp(240px, 22vw, 340px);
    background: linear-gradient(135deg, #e8ebe8 0%, #d0d8d0 100%);
    border-radius: 12px;
    overflow: hidden;
}
.about-preview-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.about-preview-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.4);
    color: #fff;
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 700;
}
.about-preview-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 0 0 8px;
}
.about-preview-desc { margin: 0 0 1rem; line-height: 1.6; color: #333; }
.about-bullets-check { list-style: none; margin: 0 0 1.5rem; padding: 0; }
.about-bullets-check li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 0.5rem;
}
.about-bullets-check li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--btn-primary);
    font-weight: 700;
    font-size: 1.1rem;
}

.about-preview-inner {
    max-width: 1100px;
    margin: 0 auto;
    background: var(--about-section-bg);
    padding: clamp(20px, 3vw, 28px);
    border-radius: 12px;
}
/* Mobile: smaller gap below header; Browse Inventory / About / Transport with 1px side padding */
@media (max-width: 768px) {
    .main-content { padding-top: 0; }
    .hero {
        width: 100%;
        max-width: 100%;
        margin-left: 0;
        margin-right: 0;
        text-align: center;
        padding-left: 0;
        padding-right: 0;
        padding-top: clamp(20px, 4vw, 32px);
        padding-bottom: clamp(24px, 5vw, 40px);
    }
    .hero.hero-has-bg { min-height: 320px; }
    .hero .container.hero-inner { text-align: center; padding-left: 12px; padding-right: 12px; max-width: none; }
    /* Browse Inventory, About, Transport: only 1px left/right padding on mobile */
    .home-features-section {
        width: 100%;
        padding-left: 0;
        padding-right: 0;
        box-sizing: border-box;
    }
    .home-features-section .container {
        padding-left: 1px;
        padding-right: 1px;
        max-width: none;
        width: 100%;
        box-sizing: border-box;
    }
    .home-features-grid {
        grid-template-columns: 1fr;
        max-width: none;
        width: 100%;
        margin: 0;
        gap: 0;
    }
    .home-feature-card { width: 100%; margin: 0; border-radius: 0; }
    .home-feature-image-wrap { width: 100%; min-height: 200px; }
    .home-feature-image-wrap img { width: 100%; min-width: 100%; }
    /* About preview – others unchanged */
    .about-preview .container { padding-left: 1px; padding-right: 1px; max-width: none; width: 100%; }
    .about-preview-layout { grid-template-columns: 1fr; width: 100%; }
    .about-preview-content { padding: 24px 0 0; }
}
@media (max-width: 992px) {
    .about-preview-layout { grid-template-columns: 1fr; }
    .about-preview-content { padding: 24px 0 0; }
}
.content-block {
    max-width: 900px;
    margin: 0 auto;
    background: var(--about-section-bg);
    padding: clamp(20px, 3vw, 28px);
    border-radius: 12px;
    box-shadow: 0 2px 16px rgba(0,0,0,0.06);
}
.about-bullets { margin: 1rem 0 1.5rem 1.5rem; }
.about-bullets li { margin-bottom: 0.5rem; }
.about-preview-inner .btn { margin-top: 8px; }

/* ----- Cards / grid ----- */
.card-grid {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(min(100%, 300px), 1fr));
    gap: clamp(20px, 3vw, 32px);
    padding: 0;
}
/* Inventory: cards span full container width (left to right, no extra centering) */
.inventory-section .card-grid {
    max-width: none;
    margin: 0;
    width: 100%;
}
/* Listing related cards: same full-width as inventory */
.listing-related-grid.card-grid {
    max-width: none;
    margin: 0;
    width: 100%;
}
.card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: transform 0.2s, box-shadow 0.2s;
    display: flex;
    flex-direction: column;
}
.card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(0,0,0,0.12);
}
.card-image {
    height: 160px;
    background: linear-gradient(135deg, #e8ebe8 0%, #d0d8d0 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.card-icon { font-size: 3rem; opacity: 0.85; }
.card-body {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}
.card-body h3 {
    color: var(--title-color);
    font-size: 1.1rem;
    margin-bottom: 8px;
    line-height: 1.3;
}
.card-body .meta { font-size: 0.9rem; color: #666; margin-bottom: 8px; }
.card-body .price { font-weight: 700; font-size: 1.2rem; color: var(--btn-primary); margin-bottom: 12px; }
.card-body .btn { margin-top: auto; align-self: flex-start; }

@media (max-width: 480px) {
    .card-grid { grid-template-columns: 1fr; }
    .card-image { height: 140px; }
}

/* ----- Get in touch ----- */
.getintouch-section .container,
.testimonials-section .container { max-width: 1100px; }
.getintouch-sub { font-size: 1.1rem; margin-bottom: 12px; }
.hours-list { list-style: none; margin: 12px 0 20px; }
.hours-list li { padding: 4px 0; }
.cta-wrap { margin-top: 1.5rem; }

/* ----- Testimonials ----- */
.testimonials-section { background: var(--about-bg); }
.testimonials-meta { margin-bottom: 20px; color: #555; }
.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(min(100%, 280px), 1fr));
    gap: 20px;
}
.testimonial-card {
    background: #fff;
    padding: 24px;
    border-radius: 12px;
    box-shadow: 0 2px 14px rgba(0,0,0,0.06);
}
.testimonial-card .author { font-weight: 600; color: var(--title-color); margin-bottom: 4px; }
.testimonial-card .stars { color: #e6b800; margin-bottom: 8px; font-size: 1rem; }
.testimonial-card .text { margin-bottom: 8px; }
.testimonial-card .source { font-size: 0.9rem; color: #777; }

/* ----- Forms ----- */
.theme-form input, .theme-form textarea, .theme-form select {
    background: var(--form-bg);
    border: 2px solid var(--form-border);
    color: var(--form-text);
    padding: 12px 14px;
    border-radius: 8px;
    width: 100%;
    font-size: 1rem;
    transition: border-color 0.2s, box-shadow 0.2s;
}
.theme-form input:focus, .theme-form textarea:focus, .theme-form select:focus {
    outline: none;
    border-color: var(--form-focus);
    box-shadow: 0 0 0 3px rgba(0,0,0,0.06);
}
.theme-form label { display: block; margin-bottom: 6px; font-weight: 500; color: var(--form-text); }
.theme-form .form-group { margin-bottom: 1rem; }
.form-message { padding: 12px 16px; border-radius: 8px; margin-bottom: 1.5rem; }
.form-message-success { background: #d4edda; color: #155724; border: 1px solid #c3e6cb; }
.form-message-error { background: #f8d7da; color: #721c24; border: 1px solid #f5c6cb; }
.form-hint { display: block; margin-top: 4px; font-size: 0.85rem; color: #666; }
.theme-form .custom-input { margin-top: 8px; }
.form-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 1.5rem; }
.btn-secondary { background: #6c757d; color: #fff; padding: 12px 24px; border-radius: 8px; text-decoration: none; font-weight: 600; }
.btn-secondary:hover { background: #5a6268; color: #fff; }
.btn-small { padding: 6px 12px; font-size: 0.9rem; border-radius: 6px; text-decoration: none; background: var(--btn-primary); color: #fff; display: inline-block; }
.btn-small:hover { background: var(--btn-primary-hover); color: #fff; }
.btn-small.btn-danger { background: #dc3545; }
.btn-small.btn-danger:hover { background: #c82333; color: #fff; }
.testimonial-admin-list { list-style: none; margin: 0; padding: 0; }
.testimonial-admin-item { display: flex; flex-wrap: wrap; justify-content: space-between; align-items: flex-start; gap: 12px; padding: 16px; margin-bottom: 12px; background: #fff; border-radius: 10px; box-shadow: 0 2px 10px rgba(0,0,0,0.06); }
.testimonial-admin-content { flex: 1; min-width: 0; }
.testimonial-admin-meta { display: block; font-size: 0.9rem; color: #666; margin: 4px 0 8px; }
.testimonial-admin-text { margin: 0 0 8px; color: #333; }
.testimonial-admin-actions { display: flex; gap: 8px; flex-shrink: 0; }
.product-admin-list { list-style: none; margin: 0; padding: 0; }
.product-admin-item { display: flex; flex-wrap: wrap; align-items: center; gap: 16px; padding: 12px 16px; margin-bottom: 10px; background: #fff; border-radius: 10px; box-shadow: 0 2px 10px rgba(0,0,0,0.06); }
.product-admin-thumb { width: 60px; height: 60px; flex-shrink: 0; background: #eee; border-radius: 8px; overflow: hidden; display: flex; align-items: center; justify-content: center; }
.product-admin-thumb img { width: 100%; height: 100%; object-fit: cover; }
.product-admin-noimg { font-size: 0.75rem; color: #999; }
.product-admin-info { flex: 1; min-width: 0; }
.product-admin-info strong { display: block; }
.product-admin-meta { font-size: 0.9rem; color: #666; }
.product-admin-actions { display: flex; gap: 8px; flex-shrink: 0; }
.inventory-empty { text-align: center; padding: 2rem; color: #666; }
.inventory-empty a { color: var(--title-color); }
.form-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1rem;
}
.form-block, .contact-form-wrap {
    background: var(--about-section-bg);
    padding: clamp(20px, 3vw, 28px);
    border-radius: 12px;
    box-shadow: 0 2px 16px rgba(0,0,0,0.06);
    margin-top: 24px;
}
.form-block-title { margin-bottom: 20px; }

.contact-map-wrap {
    width: 100%;
    margin: 20px 0 28px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 16px rgba(0,0,0,0.08);
}
.contact-map-iframe {
    display: block;
    width: 100%;
    min-height: 350px;
    height: 350px;
}
/* Form LEFT, image RIGHT – same width (50/50) and same height */
.theme-form-with-image {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(20px, 3vw, 32px);
    align-items: stretch;
    margin-top: 20px;
}
.theme-form-left { min-width: 0; display: flex; flex-direction: column; }
.theme-form-right-image {
    border-radius: 12px;
    overflow: hidden;
    background: linear-gradient(135deg, #e8ebe8 0%, #d0d8d0 100%);
    min-height: 0;
    display: flex;
}
.theme-form-right-image .theme-form-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.theme-form-right-image .theme-form-image-placeholder {
    width: 100%;
    flex: 1;
    min-height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #888;
    font-size: 1rem;
}
.theme-form-image-placeholder {
    width: 100%;
    flex: 1;
    min-height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #888;
    font-size: 1rem;
}

/* Contact page: row 1 = image | contact details, row 2 = form full width under */
.contact-page-layout { margin-top: 20px; }
.contact-top-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(20px, 3vw, 32px);
    align-items: stretch;
    margin-bottom: clamp(20px, 3vw, 28px);
}
.contact-image-col {
    border-radius: 12px;
    overflow: hidden;
    background: linear-gradient(135deg, #e8ebe8 0%, #d0d8d0 100%);
    min-height: 240px;
}
.contact-page-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    min-height: 240px;
}
.contact-image-placeholder {
    width: 100%;
    height: 100%;
    min-height: 240px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #888;
    font-size: 1rem;
}
.contact-form-row { width: 100%; }
.contact-page-layout .contact-form-wrap { margin-top: 0; }

.contact-grid,
.contact-grid-left-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(20px, 3vw, 36px);
    align-items: start;
    margin-top: 0;
}
.contact-grid-left-details .contact-details { order: 1; }
.contact-grid-left-details .contact-form-wrap { order: 2; }
.contact-details {
    background: var(--about-section-bg);
    padding: clamp(20px, 3vw, 28px);
    border-radius: 12px;
    box-shadow: 0 2px 16px rgba(0,0,0,0.06);
}
.contact-details h3 { margin-bottom: 8px; }
.contact-details h4 { margin-top: 16px; margin-bottom: 4px; }
.contact-details p { margin-bottom: 8px; }
.contact-details a { color: var(--btn-primary); text-decoration: underline; }

@media (max-width: 768px) {
    .contact-top-row { grid-template-columns: 1fr; }
    .contact-image-col { min-height: 200px; }
    .contact-page-image { min-height: 200px; }
    .contact-image-placeholder { min-height: 200px; }
    .theme-form-with-image { grid-template-columns: 1fr; }
    .theme-form-right-image { order: 1; min-height: 220px; }
    .theme-form-right-image .theme-form-image { min-height: 220px; }
    .theme-form-right-image .theme-form-image-placeholder,
    .theme-form-image-placeholder { min-height: 220px; }
    .contact-grid,
    .contact-grid-left-details { grid-template-columns: 1fr; }
    .contact-grid-left-details .contact-details,
    .contact-grid-left-details .contact-form-wrap { order: unset; }
    .contact-map-iframe { min-height: 280px; height: 280px; }
    .form-row { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
}

.alert { padding: 14px 18px; border-radius: 8px; margin-bottom: 20px; }
.alert-success { background: #d4edda; color: #155724; }
.alert-error { background: #f8d7da; color: #721c24; }

/* ----- Content pages ----- */
.content-section { padding: clamp(24px, 4vw, 36px) 0; }
.content-block p { margin-bottom: 1rem; line-height: 1.7; }
.about-content-block { margin: 0; }
.content-block.financing-content { max-width: none; margin-left: 0; margin-right: 0; }
.content-block.return-content { max-width: none; margin-left: 0; margin-right: 0; width: 100%; }

/* About page: uses same container as rest of site */
/* About page: top left description + right image */
.about-body-section { padding: clamp(24px, 4vw, 36px) 0; }
.about-page .about-body-section { padding: clamp(16px, 3vw, 24px) 0; }
.about-body-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(8px, 1.5vw, 16px);
    align-items: stretch;
    max-height: 500px;
}
.about-page .about-body-grid { gap: clamp(8px, 1.5vw, 14px); }
/* About: content left, image right – same as contact/transport */
.about-body-description {
    min-width: 0;
    display: flex;
    min-height: 0;
}
.about-body-description .content-block {
    max-width: none;
    flex: 1;
    min-height: 100%;
    max-height: 500px;
    overflow-y: auto;
}
.about-body-image-wrap {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    min-height: 100%;
    max-height: 500px;
    padding: 20px;
    background: var(--about-section-bg);
    box-sizing: border-box;
}
.about-body-image-wrap .about-body-image,
.about-body-image-wrap .about-body-image-placeholder {
    border-radius: 8px;
    width: 100%;
    height: 100%;
    display: block;
}
.about-body-image {
    width: 100%;
    height: 100%;
    max-height: 100%;
    display: block;
    object-fit: cover;
}
.about-body-image-placeholder {
    width: 100%;
    height: 100%;
    min-height: 180px;
    background: linear-gradient(135deg, #e8ebe8 0%, #d0d8d0 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #888;
    font-size: 1rem;
}
@media (max-width: 768px) {
    .about-body-grid { grid-template-columns: 1fr; max-height: none; }
    .about-body-description .content-block { max-height: none; overflow-y: visible; }
    .about-body-image-wrap { order: -1; min-height: 0; max-height: none; }
    .about-body-image { height: auto; object-fit: contain; }
    .about-body-image-placeholder { height: auto; min-height: 200px; }
}

/* About page: full-width map at bottom */
.about-map-section { margin-top: 0; padding: 0; }
.about-map-wrap {
    width: 100%;
    overflow: hidden;
}
.about-map-iframe {
    display: block;
    width: 100%;
    min-height: 400px;
    height: 400px;
}
@media (max-width: 768px) {
    .about-map-iframe { min-height: 300px; height: 300px; }
}

.transport-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 260px), 1fr));
    gap: 24px;
    margin-bottom: 28px;
}
.transport-feature {
    background: var(--about-section-bg);
    padding: 24px;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}
.transport-feature h3 { margin-top: 0; margin-bottom: 8px; }
.transport-visit { margin-bottom: 24px; color: #555; }
.transport-form-block { max-width: 600px; }

/* Return policy */
.return-subheading { margin-top: 1.5rem; margin-bottom: 0.75rem; font-size: 1.15rem; }
.return-bullets { margin: 0.5rem 0 1rem 1.5rem; }
.return-bullets li { margin-bottom: 0.5rem; }

/* Financing form sections */
.form-section-title { margin-top: 2rem; margin-bottom: 1rem; font-size: 1.2rem; color: var(--title-color); }
.form-section-title:first-of-type { margin-top: 1.5rem; }
.acknowledgment-block { margin-top: 1.5rem; padding: 1rem; background: var(--form-bg); border-radius: 8px; }
.acknowledgment-text { font-size: 0.9rem; margin: 0; line-height: 1.5; }

/* Inventory filters */
.inventory-showing { margin-top: 8px; color: #555; }
.inventory-filters { display: flex; flex-wrap: wrap; gap: 16px 24px; align-items: flex-end; margin-bottom: 28px; padding: 20px; background: var(--about-bg); border-radius: 10px; }
.pagination-wrap { margin-top: 32px; }
.pagination {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 8px;
    list-style: none;
    margin: 0;
    padding: 0;
}
.pagination li { display: inline-block; }
.pagination-btn {
    display: inline-block;
    padding: 10px 16px;
    min-width: 44px;
    text-align: center;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    color: var(--title-color);
    background: #fff;
    border: 1px solid #ccc;
    transition: background 0.2s, border-color 0.2s;
}
.pagination-btn:hover:not(.disabled) { background: var(--about-bg); border-color: var(--btn-primary); color: var(--btn-primary); }
.pagination-btn.current { background: var(--btn-primary); color: #fff; border-color: var(--btn-primary); cursor: default; }
.pagination-btn.disabled { opacity: 0.5; cursor: not-allowed; }
.pagination-prev, .pagination-next { min-width: 90px; }
.filter-row { display: flex; flex-direction: column; gap: 4px; }
.filter-row label { font-weight: 500; font-size: 0.9rem; }
.filter-select { padding: 8px 12px; border: 1px solid var(--form-border); border-radius: 6px; min-width: 140px; }
.filter-row input[type="number"] { width: 100px; padding: 8px 12px; border: 1px solid var(--form-border); border-radius: 6px; }
.filter-btn { margin-top: 4px; }
@media (max-width: 768px) { .inventory-filters { flex-direction: column; align-items: stretch; } }

/* ----- Listing (single) ----- */
.listing-breadcrumb {
    padding: 12px 0;
    font-size: 0.9rem;
    color: #666;
    border-bottom: 1px solid #eee;
}
.listing-breadcrumb a { color: var(--title-color); text-decoration: none; }
.listing-breadcrumb a:hover { text-decoration: underline; }
.breadcrumb-sep { margin: 0 6px; opacity: 0.7; }

.listing-hero { padding: clamp(20px, 3vw, 28px) 0; }
.listing-hero-row {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px 24px;
}
.listing-hero-left { flex: 1 1 auto; min-width: 0; }
.listing-title {
    font-size: clamp(1.5rem, 4vw, 2rem);
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 12px;
    line-height: 1.2;
}
.listing-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 16px;
}
.listing-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    background: #e8ece8;
    border-radius: 8px;
    font-size: 0.95rem;
    color: #333;
}
.listing-badge-icon { font-size: 1rem; opacity: 0.9; }
.listing-hero-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 12px;
}
.listing-actions {
    display: flex;
    gap: 8px;
}
.listing-action-btn {
    width: 36px;
    height: 36px;
    border: 1px solid #ddd;
    background: #f5f5f5;
    border-radius: 8px;
    font-size: 1rem;
    cursor: pointer;
    color: #555;
    display: flex;
    align-items: center;
    justify-content: center;
}
.listing-action-btn:hover { background: #eee; color: var(--title-color); border-color: #ccc; }
.listing-price { font-size: 1.5rem; font-weight: 700; color: #1a1a1a; margin: 0; }

/* Gallery: main and thumbs same height (square main); video below both, full width */
.listing-gallery-section { padding: clamp(20px, 3vw, 32px) 0; }
.listing-gallery-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 20px 24px;
    align-items: stretch;
    max-width: 100%;
}
.listing-main-col {
    min-width: 0;
    width: 100%;
}
.listing-slider-wrap {
    position: relative;
    width: 100%;
    min-width: 0;
}
.listing-slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border: none;
    border-radius: 8px;
    background: rgba(0,0,0,0.5);
    color: #fff;
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    transition: background 0.2s;
}
.listing-slider-btn:hover { background: rgba(0,0,0,0.75); }
.listing-slider-prev { left: 12px; }
.listing-slider-next { right: 12px; }
/* Main image: square (height = width), huge images contained and kept smaller */
.listing-main-image-wrap {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1;
    background: #e8ece8;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
}
.listing-main-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    display: block;
}
.listing-main-image-wrap:focus { outline: 2px solid var(--title-color); outline-offset: 2px; }
.listing-thumbs-col {
    display: flex;
    flex-direction: column;
    justify-content: stretch;
    min-width: 0;
    width: 100%;
    min-height: 0;
}
.listing-thumbs-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 10px;
    width: 100%;
    flex: 1;
    min-height: 0;
}
/* Video: full-width row below main + thumbs, centered, good height */
.listing-video-wrap {
    grid-column: 1 / -1;
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    margin-top: 8px;
    border-radius: 12px;
    overflow: hidden;
    background: #000;
    aspect-ratio: 16 / 9;
}
.listing-video-player {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: contain;
}
.listing-thumb {
    position: relative;
    min-width: 0;
    min-height: 0;
    width: 100%;
    height: 100%;
    border: 2px solid transparent;
    border-radius: 8px;
    overflow: hidden;
    padding: 0;
    cursor: pointer;
    background: #e8ece8;
}
.listing-thumb.active { border-color: var(--title-color); }
.listing-thumb img,
.listing-thumb .listing-thumb-placeholder {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.listing-thumb .listing-thumb-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #999;
}
.listing-thumb-all-photos {
    position: absolute;
    left: 50%;
    bottom: 6px;
    transform: translateX(-50%);
    padding: 4px 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    background: rgba(255,255,255,0.95);
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 600;
    color: #333;
    cursor: pointer;
    border: 1px solid rgba(0,0,0,0.1);
    white-space: nowrap;
}
.listing-thumb-all-photos:hover { background: #fff; color: var(--title-color); }

/* Lightbox */
.listing-lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.92);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.25s, visibility 0.25s;
}
.listing-lightbox.open {
    opacity: 1;
    visibility: visible;
}
.listing-lightbox-close {
    position: absolute;
    top: 16px;
    right: 20px;
    width: 44px;
    height: 44px;
    border: none;
    background: rgba(255,255,255,0.15);
    color: #fff;
    font-size: 2rem;
    line-height: 1;
    cursor: pointer;
    border-radius: 8px;
    z-index: 10;
}
.listing-lightbox-close:hover { background: rgba(255,255,255,0.25); }
.listing-lightbox-prev,
.listing-lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border: none;
    background: rgba(255,255,255,0.15);
    color: #fff;
    font-size: 2rem;
    cursor: pointer;
    border-radius: 8px;
    z-index: 10;
}
.listing-lightbox-prev { left: 16px; }
.listing-lightbox-next { right: 16px; }
.listing-lightbox-prev:hover,
.listing-lightbox-next:hover { background: rgba(255,255,255,0.3); }
.listing-lightbox-content {
    position: relative;
    max-width: 90vw;
    max-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
}
.listing-lightbox-slide {
    display: none;
    max-width: 100%;
    max-height: 85vh;
}
.listing-lightbox-slide.active {
    display: flex;
    align-items: center;
    justify-content: center;
}
.listing-lightbox-slide img {
    max-width: 100%;
    max-height: 85vh;
    object-fit: contain;
}
.listing-lightbox .listing-lightbox-placeholder {
    font-size: 6rem;
    color: rgba(255,255,255,0.5);
}

/* Check Availability modal */
.listing-availability-modal {
    position: fixed;
    inset: 0;
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s, visibility 0.2s;
}
.listing-availability-modal.open {
    opacity: 1;
    visibility: visible;
}
.listing-availability-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    cursor: pointer;
}
.listing-availability-box {
    position: relative;
    width: 100%;
    max-width: 440px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.2);
    padding: 28px 24px 24px;
}
.listing-availability-close {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 36px;
    height: 36px;
    border: none;
    background: transparent;
    font-size: 1.5rem;
    line-height: 1;
    color: #666;
    cursor: pointer;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}
.listing-availability-close:hover { color: #1a1a1a; background: #eee; }
.listing-availability-title {
    margin: 0 0 20px;
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
    padding-right: 40px;
}
.listing-availability-form .form-group {
    margin-bottom: 16px;
}
.listing-availability-form label {
    display: block;
    font-weight: 500;
    color: #333;
    margin-bottom: 6px;
    font-size: 0.95rem;
}
.listing-availability-form input,
.listing-availability-form textarea {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
}
.listing-availability-form input:focus,
.listing-availability-form textarea:focus {
    outline: none;
    border-color: var(--btn-primary);
    box-shadow: 0 0 0 2px rgba(26, 71, 42, 0.15);
}
.listing-availability-form textarea { resize: vertical; min-height: 100px; }
.listing-availability-submit {
    width: 100%;
    margin-top: 8px;
    padding: 14px 20px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 8px;
    background: var(--btn-primary);
    color: #fff;
    border: none;
    cursor: pointer;
}
.listing-availability-submit:hover { background: var(--btn-primary-hover); }

/* Content: left column (overview, description, form), right column (CTAs) */
.listing-content-section { padding: clamp(24px, 4vw, 40px) 0; }
.listing-content-layout {
    display: grid;
    grid-template-columns: 1fr 260px;
    gap: 40px 32px;
    align-items: start;
}
.listing-content-left { min-width: 0; }
.listing-overview,
.listing-description,
.listing-forms { margin-bottom: 2rem; }
.listing-overview h2,
.listing-description h2,
.listing-forms h2 {
    font-size: 1.35rem;
    color: #1a1a1a;
    margin-bottom: 1rem;
}
.listing-overview-list { list-style: none; padding: 0; margin: 0 0 1rem; }
.listing-overview-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid #eee;
}
.listing-overview-list li:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.listing-overview-icon { font-size: 1.1rem; }
.listing-description-text { color: #444; line-height: 1.7; }
.listing-forms .theme-form { max-width: 100%; }
.listing-inquiry-prompt {
    margin: 0 0 1rem;
    padding: 12px 14px;
    background: #f0f7f0;
    border-left: 4px solid var(--btn-primary);
    border-radius: 0 8px 8px 0;
    color: #333;
    font-size: 0.95rem;
    line-height: 1.5;
}
.listing-prompt-blink {
    animation: listing-prompt-blink 0.6s ease-in-out 3;
}
@keyframes listing-prompt-blink {
    0%, 100% { background: #f0f7f0; box-shadow: none; }
    50% { background: #e0f0e0; box-shadow: 0 0 0 2px var(--btn-primary); }
}
.listing-content-right {
    display: flex;
    flex-direction: column;
    gap: 12px;
    position: sticky;
    top: 100px;
}
.listing-cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 20px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    text-align: center;
    transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.listing-cta-phone {
    background: var(--btn-primary);
    color: #fff;
    border: none;
}
.listing-cta-phone:hover { background: var(--btn-primary-hover); color: #fff; }
.listing-cta-secondary {
    background: #444;
    color: #fff;
    border: none;
}
.listing-cta-secondary:hover { background: #333; color: #fff; }
.listing-cta-outline {
    background: transparent;
    color: #333;
    border: 2px solid #ccc;
}
.listing-cta-outline:hover { border-color: var(--title-color); color: var(--title-color); }

/* Related Listings */
.listing-related { margin-top: 3rem; padding-top: 2rem; border-top: 1px solid #eee; }
.listing-related-head {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 1.25rem;
}
.listing-related-head h2 { margin: 0; font-size: 1.35rem; color: #1a1a1a; }
.listing-view-all {
    color: var(--title-color);
    font-weight: 600;
    text-decoration: none;
}
.listing-view-all:hover { text-decoration: underline; }
.listing-related-grid { margin-top: 0; }
.listing-related-grid .card .card-body .btn { display: none; }
.card-link {
    display: inline-block;
    margin-top: 8px;
    color: var(--title-color);
    font-weight: 600;
    text-decoration: none;
}
.card-link:hover { text-decoration: underline; }

@media (max-width: 992px) {
    .listing-gallery-layout { grid-template-columns: 1fr; align-items: start; }
    .listing-thumbs-col { min-height: auto; }
    .listing-thumbs-grid { flex: none; min-height: auto; grid-template-rows: auto auto; width: 100%; max-width: 320px; margin: 0 auto; }
    .listing-thumb { height: auto; aspect-ratio: 1; }
    .listing-content-layout { grid-template-columns: 1fr; }
    .listing-content-right { position: static; flex-direction: row; flex-wrap: wrap; }
}
@media (max-width: 768px) {
    .listing-hero-row { flex-direction: column; align-items: flex-start; }
    .listing-hero-right { align-items: flex-start; }
    .listing-thumbs-grid { max-width: 200px; }
    .listing-lightbox-prev { left: 8px; width: 40px; height: 40px; font-size: 1.5rem; }
    .listing-lightbox-next { right: 8px; width: 40px; height: 40px; font-size: 1.5rem; }
    .listing-lightbox-close { top: 10px; right: 10px; width: 40px; height: 40px; font-size: 1.5rem; }
}
@media (max-width: 600px) {
    .listing-main-image-wrap { aspect-ratio: 4/3; }
    .listing-content-right { flex-direction: column; }
}

/* ----- Footer ----- */
.main-footer {
    background: var(--footer-bg);
    color: var(--footer-text);
    padding: clamp(28px, 4vw, 40px) 0 20px;
    margin-top: 48px;
}
.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 200px), 1fr));
    gap: 28px 32px;
    margin-bottom: 28px;
}
.main-footer h4 {
    font-size: 0.95rem;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    opacity: 0.95;
}
.main-footer ul { list-style: none; }
.main-footer a { color: var(--footer-text); text-decoration: none; opacity: 0.9; }
.main-footer a:hover { opacity: 1; text-decoration: underline; }
.main-footer .contact-info p { margin-bottom: 8px; opacity: 0.95; }
.footer-bottom {
    padding-top: 24px;
    border-top: 1px solid rgba(255,255,255,0.2);
    text-align: center;
    font-size: 0.9rem;
    opacity: 0.9;
}

/* Footer theme: Dark minimal */
.main-footer.footer-theme-dark {
    background: #0d1117;
    padding: 40px 0 24px;
}
.main-footer.footer-theme-dark .footer-bottom { border-top-color: rgba(255,255,255,0.1); }
/* Footer theme: Minimal light */
.main-footer.footer-theme-minimal {
    background: #f5f5f5;
    color: #333;
}
.main-footer.footer-theme-minimal a { color: #1a472a; }
.main-footer.footer-theme-minimal h4 { color: #111; }
.main-footer.footer-theme-minimal .footer-bottom { border-top-color: rgba(0,0,0,0.08); color: #666; }
/* Footer theme: Gradient */
.main-footer.footer-theme-gradient {
    background: linear-gradient(160deg, var(--footer-bg) 0%, #0f2d1a 100%);
    padding: 36px 0 24px;
}
.main-footer.footer-theme-gradient .footer-col { padding: 0 12px; }
/* Footer theme: Boxed columns */
.main-footer.footer-theme-boxed .footer-grid { gap: 20px; }
.main-footer.footer-theme-boxed .footer-col {
    background: rgba(255,255,255,0.08);
    padding: 20px;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.12);
}
.main-footer.footer-theme-boxed .footer-bottom { margin-top: 8px; }
/* Footer theme: Modern split */
.main-footer.footer-theme-modern {
    background: #1a1a2e;
    color: #eaeaea;
}
.main-footer.footer-theme-modern .footer-grid {
    grid-template-columns: 1fr 1fr 1.2fr;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 32px;
}
.main-footer.footer-theme-modern h4 {
    color: #fff;
    font-size: 0.85rem;
    letter-spacing: 0.1em;
}
.main-footer.footer-theme-modern a { color: #a0c4ff; }
.main-footer.footer-theme-modern .footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding-top: 20px;
    font-size: 0.85rem;
    color: #888;
}

@media (max-width: 600px) {
    .footer-grid { grid-template-columns: 1fr; text-align: center; }
    .footer-bottom { text-align: center; }
    .main-footer.footer-theme-modern .footer-grid { grid-template-columns: 1fr; }
}
