/*
Theme Name: XO Cars
Theme URI: https://xocars.be
Author: Your Web Handler
Author URI: https://yourwebhandler.com
Description: Premium car dealership theme for XO Cars - Modern, elegant black and yellow design with vehicle management system
Version: 1.0.2
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: xocars
Tags: automotive, car-dealer, business, custom-colors, custom-menu, responsive-layout, theme-options

XO Cars WordPress Theme, Copyright 2026 Your Web Handler
XO Cars is distributed under the terms of the GNU GPL
*/

/* ==========================================================================
   Base Styles & CSS Reset
   ========================================================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --color-black: #121212;
    --color-yellow: #FFCC00;
    --color-gray: #F7F7F8;
    --color-dark-gray: #1a1a1a;
    --color-text-gray: #a0a0a0;
    --color-white: #ffffff;
    --color-green: #25D366;
    
    --font-primary: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.15);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.2);
    
    --border-radius: 12px;
    --button-height: 44px;
    --button-padding-x: 16px;
    --transition: background-color 0.25s ease, border-color 0.25s ease, color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease, opacity 0.25s ease;
}

body {
    font-family: var(--font-primary);
    background-color: var(--color-black);
    color: var(--color-white);
    line-height: 1.6;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

html {
    overflow-y: scroll;
    scrollbar-gutter: stable;
    scrollbar-color: rgba(255, 204, 0, 0.82) rgba(255, 255, 255, 0.08);
    scrollbar-width: thin;
}

html::-webkit-scrollbar,
body::-webkit-scrollbar,
.xo-modal__dialog::-webkit-scrollbar,
.xo-modal__message-body::-webkit-scrollbar {
    width: 12px;
    height: 12px;
}

html::-webkit-scrollbar-track,
body::-webkit-scrollbar-track,
.xo-modal__dialog::-webkit-scrollbar-track,
.xo-modal__message-body::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.08);
}

html::-webkit-scrollbar-thumb,
body::-webkit-scrollbar-thumb,
.xo-modal__dialog::-webkit-scrollbar-thumb,
.xo-modal__message-body::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, rgba(255, 214, 74, 0.96), rgba(224, 174, 0, 0.96));
    border-radius: 999px;
    border: 2px solid rgba(10, 10, 12, 0.65);
}

html::-webkit-scrollbar-thumb:hover,
body::-webkit-scrollbar-thumb:hover,
.xo-modal__dialog::-webkit-scrollbar-thumb:hover,
.xo-modal__message-body::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, #ffdf70, #ffcc00);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: var(--color-yellow);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    opacity: 0.8;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.container-wide {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Section Spacing */
.section {
    padding: 80px 0;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-align: center;
}

.has-signature-underline::after {
    content: "";
    display: block;
    width: 64px;
    height: 3px;
    margin: 12px auto 0;
    background: var(--color-yellow);
    border-radius: 999px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--color-text-gray);
    text-align: center;
    margin-bottom: 3rem;
}

.inventory-section-lead {
    margin: 0 0 0.9rem;
}

/* ==========================================================================
   Header & Navigation
   ========================================================================== */

.site-header {
    background-color: transparent;
    border-bottom: 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 15px 0;
    isolation: isolate;
}

.header-nav-stack {
    position: relative;
    z-index: 6;
    overflow: visible;
}

.site-header.secondary-nav-animating .header-nav-stack {
    overflow: hidden;
}


.header-top {
    background:
      linear-gradient(120deg, rgba(255, 204, 0, 0.035), rgba(86, 120, 214, 0.055) 58%, rgba(6, 8, 12, 0.96)),
      linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0) 34%),
      rgba(6, 8, 12, 0.88);
    border-bottom: 0;
    position: relative;
    z-index: 7;
    backdrop-filter: blur(10px) saturate(118%);
    -webkit-backdrop-filter: blur(10px) saturate(118%);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.header-container {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 14px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 12px 20px;
}

.site-logo img {
    height: 34px;
    width: auto;
    display: block;
}

.header-center {
    display: flex;
    justify-content: center;
}

.header-search {
    position: relative;
    display: flex;
    align-items: center;
    width: min(860px, 100%);
    background: #0d1016;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 14px;
    padding: 3px 8px;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.09);
    transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.header-search.is-focused {
    border-color: rgba(255, 204, 0, 0.55);
    box-shadow: 0 0 0 4px rgba(255, 204, 0, 0.10);
}

.header-search .search-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-left: 10px;
    color: rgba(255, 255, 255, 0.75);
}

.header-search .search-input {
    flex: 1;
    background: transparent;
    border: none;
    outline: none;
    padding: 7px 10px;
    color: var(--color-white);
    font-size: 14px;
    min-width: 180px;
}

.header-search .search-input::placeholder {
    color: rgba(255, 255, 255, 0.55);
}

.search-toggle {
    display: inline-flex;
    align-items: center;
    background: rgba(0, 0, 0, 0.35);
    border: 1px solid rgba(255, 255, 255, 0.10);
    border-radius: 12px;
    padding: 2px;
    gap: 4px;
    margin-left: 6px;
    flex-shrink: 0;
}

.toggle-btn {
    appearance: none;
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.75);
    padding: 6px 12px;
    border-radius: 10px;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.18s ease, color 0.18s ease, transform 0.18s ease;
}

.toggle-btn:hover {
    color: var(--color-white);
}

.toggle-btn.is-active {
    background: var(--color-yellow);
    color: #111;
}

.header-right {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 12px;
}

.btn-login.btn-secondary {
    background: rgba(255, 255, 255, 0.10);
    border: 1px solid rgba(255, 255, 255, 0.14);
    color: rgba(255, 255, 255, 0.92);
    min-height: var(--button-height);
    padding: 0 14px;
    border-radius: 12px;
    font-weight: 700;
}

.btn-login.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.14);
}

.btn-icon.btn-secondary {
    width: 40px;
    height: 40px;
    padding: 0;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

/* Language dropdown */
.lang-dropdown {
    position: relative;
}

.lang-btn {
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 14px;
  min-height: var(--button-height);
  padding: 0 14px;
  font-weight: 800;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-width: 64px;
  justify-content: center;
  color: rgba(255, 255, 255, 0.92);
}
.lang-btn:hover { background: rgba(255,255,255,0.14); }


.lang-menu {
    position: absolute;
    right: 0;
    top: calc(100% + 8px);
    background: rgba(15, 15, 15, 0.98);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 12px;
    padding: 6px;
    min-width: 120px;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.5);
    display: none;
    z-index: 1000;
}

.lang-dropdown.is-open .lang-menu {
    display: block;
}

.lang-menu a {
    display: block;
    padding: 10px 10px;
    border-radius: 10px;
    color: rgba(255, 255, 255, 0.88);
    font-weight: 700;
    text-decoration: none;
}

.lang-menu .lang-option {
    display: block;
    width: 100%;
    padding: 10px 10px;
    border-radius: 10px;
    color: rgba(255, 255, 255, 0.88);
    font-weight: 700;
    text-decoration: none;
    background: transparent;
    border: 0;
    text-align: left;
    cursor: pointer;
}

.lang-menu a:hover {
    background: rgba(255, 204, 0, 0.12);
    color: var(--color-white);
}
.lang-menu .lang-option:hover {
    background: rgba(255, 204, 0, 0.12);
    color: var(--color-white);
}

.mobile-menu-toggle {
    display: none;
    background: transparent;
    border: none;
    color: var(--color-white);
    font-size: 24px;
    cursor: pointer;
    padding: 8px 10px;
    border-radius: 10px;
}

.mobile-menu-toggle:hover {
    background: rgba(255, 255, 255, 0.08);
}

/* Main Navigation (menu bar) */
.main-navigation {
    background:
      linear-gradient(120deg, rgba(255, 204, 0, 0.055), rgba(86, 120, 214, 0.085) 56%, rgba(6, 8, 12, 0.95)),
      linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0) 34%),
      rgba(7, 9, 13, 0.78);
    border-top: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.10);
    position: relative;
    z-index: 6;
    backdrop-filter: blur(10px) saturate(120%);
    -webkit-backdrop-filter: blur(10px) saturate(120%);
    box-shadow: inset 0 -1px 0 rgba(255, 255, 255, 0.05);
}

.main-navigation .container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.primary-menu {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 26px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.primary-menu a {
    color: rgba(235, 240, 250, 0.92);
    text-decoration: none;
    font-weight: 700;
    padding: 11px 12px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    border-radius: 999px;
    transition: color 0.2s ease, background-color 0.2s ease;
}

.primary-menu a:hover {
    color: var(--color-yellow);
    background: rgba(255, 255, 255, 0.08);
}

.primary-menu .menu-item-has-children > a::after {
    content: "▾";
    font-size: 12px;
    opacity: 0.8;
}

.primary-menu li {
    position: relative;
}

.primary-menu .sub-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    min-width: 220px;
    background: rgba(10, 12, 16, 0.96);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 14px;
    padding: 10px;
    list-style: none;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.58);
    backdrop-filter: blur(22px) saturate(135%);
    -webkit-backdrop-filter: blur(22px) saturate(135%);
    z-index: 999;
}

.primary-menu li:hover > .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(6px);
}

.primary-menu .sub-menu a {
    width: 100%;
    min-height: 34px;
    padding: 7px 12px;
    border-radius: 10px;
    justify-content: flex-start;
}

.primary-menu .sub-menu li + li {
    margin-top: 6px;
}

.primary-menu .sub-menu a:hover {
    background: rgba(255, 204, 0, 0.12);
    color: var(--color-white);
}

/* Secondary menu */
.secondary-navigation {
    background:
      linear-gradient(120deg, rgba(255, 204, 0, 0.11), rgba(90, 126, 230, 0.12) 58%, rgba(12, 14, 18, 0.86)),
      rgba(12, 14, 18, 0.62);
    border-top: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    position: relative;
    z-index: 3;
    transform: translateY(0);
    transition: transform 0.24s ease;
    will-change: transform;
    backdrop-filter: blur(8px) saturate(115%);
    -webkit-backdrop-filter: blur(8px) saturate(115%);
    box-shadow: none;
}

.secondary-navigation.is-scroll-driven {
    transition: transform 0.22s ease;
}

.secondary-navigation.is-scroll-driven.is-hidden {
    transform: translateY(-100%);
}
.secondary-navigation .container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}
.secondary-menu {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 22px;
    list-style: none;
    margin: 0;
    padding: 10px 0;
}
.secondary-menu a {
    color: rgba(235, 240, 250, 0.92);
    text-decoration: none;
    font-weight: 700;
    padding: 8px 10px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    letter-spacing: 0.2px;
    border-radius: 999px;
    transition: color 0.2s ease, background-color 0.2s ease;
}
.secondary-menu a:hover {
    color: var(--color-yellow);
    background: rgba(255, 255, 255, 0.08);
}
.secondary-menu a:focus-visible {
    outline: 2px solid rgba(255, 204, 0, 0.6);
    outline-offset: 3px;
}
.secondary-menu .menu-item-has-children > a::after {
    content: "▾";
    font-size: 12px;
    opacity: 0.8;
}
.secondary-menu li {
    position: relative;
}
.secondary-menu .sub-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    min-width: 200px;
    background: rgba(10, 12, 16, 0.96);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 14px;
    padding: 10px;
    list-style: none;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.58);
    backdrop-filter: blur(22px) saturate(135%);
    -webkit-backdrop-filter: blur(22px) saturate(135%);
    z-index: 999;
}
.secondary-menu li:hover > .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(6px);
}
.secondary-menu .sub-menu a {
    width: 100%;
    min-height: 34px;
    padding: 7px 12px;
    border-radius: 10px;
    justify-content: flex-start;
}

.secondary-menu .sub-menu li + li {
    margin-top: 6px;
}
.secondary-menu .sub-menu a:hover {
    background: rgba(255, 204, 0, 0.12);
    color: var(--color-white);
}


/* ==========================================================================
   Hero Section
   ========================================================================== */

.hero-section {
    background:
      linear-gradient(128deg, rgba(6, 8, 12, 0.78) 0%, rgba(8, 10, 16, 0.60) 56%, rgba(12, 12, 14, 0.76) 100%),
      url('images/homebkg.png'),
      url('images/homebkg.jpg');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    min-height: 100vh;
    min-height: 100svh;
    padding: 76px 0 64px;
    text-align: left;
    position: relative;
    z-index: 5;
    overflow: visible;
    display: flex;
    align-items: flex-start;
    justify-content: center;
}

.hero-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
      radial-gradient(760px 280px at 32% 4%, rgba(255, 204, 0, 0.11), transparent 58%),
      radial-gradient(980px 420px at 86% 82%, rgba(26, 40, 70, 0.08), transparent 62%),
      linear-gradient(180deg, rgba(8, 10, 14, 0.02) 0%, rgba(8, 10, 14, 0.46) 100%);
    pointer-events: none;
}

.hero-section::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
      linear-gradient(160deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.018) 46%, rgba(255, 255, 255, 0.035) 100%),
      linear-gradient(120deg, rgba(255, 204, 0, 0.05), rgba(22, 34, 58, 0.068) 60%, rgba(4, 6, 10, 0.28));
    backdrop-filter: blur(6px) saturate(102%);
    -webkit-backdrop-filter: blur(6px) saturate(102%);
}

.hero-content {
    position: relative;
    z-index: 1;
    width: min(100%, 1240px);
    margin: 0 auto;
    padding-inline: clamp(24px, 3vw, 42px);
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 28px;
}

.hero-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    width: 100%;
    max-width: 720px;
    margin: 0;
    padding: 0;
    background: transparent;
    border: 0;
    backdrop-filter: none;
    box-shadow: none;
}

.hero-copy {
    width: min(100%, 860px);
    max-width: 860px;
    margin: 0 auto;
    padding-inline: 0;
    box-sizing: border-box;
    display: grid;
    justify-items: center;
    align-items: center;
    text-align: center;
    gap: 12px;
}

.hero-brand-heading {
    margin: 0;
    color: rgba(255, 204, 0, 0.94);
    font-size: clamp(1rem, 1.4vw, 1.15rem);
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    line-height: 1.2;
    text-align: center;
}

.hero-kicker {
    margin: 0 0 14px;
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 0 14px;
    border-radius: 999px;
    border: 1px solid rgba(255, 204, 0, 0.35);
    background: rgba(14, 16, 21, 0.48);
    color: rgba(255, 230, 150, 0.94);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.hero-seo-heading {
    width: auto;
    font-size: clamp(2.45rem, 3.7vw, 3.6rem);
    line-height: 1.04;
    font-weight: 850;
    letter-spacing: -0.03em;
    margin: 0 auto;
    max-width: min(22ch, 100%);
    padding-bottom: 0.06em;
    text-wrap: balance;
    overflow-wrap: anywhere;
    background: linear-gradient(128deg, #ffffff 0%, #f4f7ff 38%, #dbe7ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 10px 26px rgba(0, 0, 0, 0.24);
}

.hero-text h1 .hero-line-secondary {
    display: block;
    font-size: 0.8em;
    font-weight: 780;
    letter-spacing: -0.015em;
    line-height: 1.08;
    margin-top: 0.08em;
    padding-bottom: 0.04em;
    white-space: normal;
}

.hero-text .subtitle {
    margin: 0;
    max-width: 700px;
    font-size: clamp(1rem, 1.4vw, 1.12rem);
    font-weight: 520;
    line-height: 1.5;
    letter-spacing: 0;
    color: rgba(233, 238, 249, 0.86);
    text-wrap: pretty;
}

.hero-copy .subtitle {
    margin: 4px auto 0;
    max-width: 31ch;
    text-align: center;
    line-height: 1.55;
    text-wrap: balance;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--color-white) 0%, rgba(255, 255, 255, 0.8) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: var(--color-yellow);
    margin-bottom: 2.5rem;
    font-weight: 500;
}

.hero-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-copy .hero-actions {
    justify-content: center;
}

.hero-actions .btn {
    padding-inline: 34px;
    font-size: 16px;
    min-height: 48px;
    border-radius: 14px;
}

.hero-actions .btn.primary {
    background: linear-gradient(135deg, #ffd84a 0%, #ffcc00 56%, #e0ae00 100%);
    color: #111214;
    border: 0;
    box-shadow: 0 10px 22px rgba(255, 204, 0, 0.26);
}

.hero-actions .btn.primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 14px 30px rgba(255, 204, 0, 0.35);
}

.hero-actions .btn.outline {
    border-color: rgba(255, 255, 255, 0.24);
    background: rgba(255, 255, 255, 0.05);
}

.hero-actions .btn.outline:hover {
    border-color: rgba(255, 255, 255, 0.42);
    background: rgba(255, 255, 255, 0.1);
}

.hero-proof {
    margin-top: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px 12px;
    flex-wrap: wrap;
}

.hero-proof span {
    display: inline-flex;
    align-items: center;
    min-height: 38px;
    padding: 0 16px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: rgba(14, 16, 20, 0.32);
    color: rgba(236, 242, 255, 0.86);
    font-size: 0.92rem;
    font-weight: 650;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.hero-proof span::before {
    content: "•";
    margin-right: 8px;
    color: var(--color-yellow);
}

.hero-search-shell {
    position: relative;
    z-index: 20;
    overflow: visible;
    width: min(100%, 1120px);
    margin-top: 4px;
    padding: 20px 22px 22px;
    border-radius: 28px;
    background:
      linear-gradient(135deg, rgba(255, 204, 0, 0.08), rgba(90, 126, 230, 0.1) 56%, rgba(8, 10, 14, 0.82)),
      rgba(10, 12, 16, 0.66);
    border: 1px solid rgba(255, 255, 255, 0.14);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.28);
    backdrop-filter: blur(24px) saturate(138%);
    -webkit-backdrop-filter: blur(24px) saturate(138%);
}

.hero-search-shell__top {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 12px;
    margin-bottom: 12px;
}

.hero-search-shell__eyebrow,
.hero-search-shell__meta {
    margin: 0;
}

.hero-search-shell__eyebrow {
    color: rgba(238, 243, 252, 0.86);
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.hero-search-shell__meta {
    color: rgba(232, 238, 248, 0.72);
    font-size: 0.95rem;
    font-weight: 600;
}

.hero-search-form {
    display: grid;
    grid-template-columns: minmax(0, 2.2fr) repeat(3, minmax(150px, 1fr));
    gap: 12px;
    align-items: end;
    overflow: visible;
}

.hero-search-form__field {
    position: relative;
    min-width: 0;
    overflow: visible;
}

.hero-search-form__field--wide {
    grid-column: auto;
}

.hero-search-form__actions {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(230px, 0.36fr) minmax(210px, 0.32fr);
    align-items: end;
    grid-column: 1 / -1;
    gap: 14px;
    margin-top: 8px;
    padding-top: 8px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    overflow: visible;
}

.hero-search-form__price {
    min-width: 0;
    display: flex;
    align-items: flex-end;
}

.hero-search-form__price .inventory-price-filter {
    width: 100%;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
}

.hero-search-form__price-row {
    min-height: 44px;
    display: grid;
    grid-template-columns: minmax(44px, auto) 1fr minmax(84px, auto);
    align-items: center;
    gap: 12px;
}

.hero-search-form__price-label {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.hero-search-form__price .vehicle-archive-filters__price-value {
    font-size: 0.9rem;
}

.hero-search-form__price .inventory-price-slider {
    height: 18px;
}

.hero-search-form__price .inventory-price-slider__ticks,
.hero-search-form__price .inventory-price-slider__track {
    top: 50%;
}

.hero-search-form__actions .btn {
    min-height: 44px;
    min-width: 0;
    width: 100%;
    height: 44px;
    padding-inline: 34px;
    border-radius: 14px;
    font-size: 16px;
    justify-content: center;
    align-self: end;
}

.hero-search-form__actions .btn.btn-primary {
    background: linear-gradient(135deg, #ffd84a 0%, #ffcc00 56%, #e0ae00 100%);
    color: #111214;
    border: 0;
    box-shadow: 0 10px 22px rgba(255, 204, 0, 0.26);
}

.hero-search-form__actions .btn.btn-primary:hover,
.hero-search-form__actions .btn.btn-primary:focus-visible {
    transform: translateY(-1px);
    box-shadow: 0 14px 28px rgba(255, 204, 0, 0.32);
}

.hero-search-form .vehicle-archive-filters__label {
    margin-bottom: 8px;
    text-align: left;
}

.hero-search-form .vehicle-archive-filters__control {
    min-height: 50px;
    background:
      linear-gradient(140deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.015)),
      rgba(11, 14, 20, 0.34);
    border-color: rgba(255, 255, 255, 0.16);
    backdrop-filter: blur(18px) saturate(130%);
    -webkit-backdrop-filter: blur(18px) saturate(130%);
}

.hero-search-form__link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    height: 44px;
    width: 100%;
    padding: 0 28px;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.24);
    background: rgba(255, 255, 255, 0.05);
    color: #ffffff;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    transition: border-color 0.2s ease, background-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
    align-self: end;
}

.hero-search-form__link:hover,
.hero-search-form__link:focus-visible {
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.42);
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-1px);
    box-shadow: 0 10px 22px rgba(0, 0, 0, 0.16);
}

.hero-search-form__link--more {
    gap: 10px;
}

.hero-search-form__link-icon {
    display: inline-flex;
    width: 16px;
    height: 16px;
    flex: 0 0 16px;
    align-items: center;
    justify-content: center;
}

.hero-search-form__link-icon svg {
    width: 100%;
    height: 100%;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.9;
    stroke-linecap: round;
    stroke-linejoin: round;
}

/* ==========================================================================
   Vehicle Cards & Listings
   ========================================================================== */

.vehicles-section {
    background-color: var(--color-black);
    padding: 80px 0;
}

.vehicles-section .container {
    max-width: 1280px;
}

#inventory.vehicles-section .container {
    max-width: 1360px;
}

.vehicle-archive-filters {
    position: relative;
    z-index: 20;
    overflow: visible;
    margin-bottom: 40px;
    padding: 30px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    background:
        radial-gradient(120% 120% at 0% 0%, rgba(255, 204, 0, 0.08), transparent 38%),
        linear-gradient(135deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0.005)),
        var(--color-dark-gray);
    backdrop-filter: blur(8px) saturate(120%);
    -webkit-backdrop-filter: blur(8px) saturate(120%);
}

.vehicle-archive-filters__form {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 12px;
    align-items: end;
    overflow: visible;
}

.vehicle-archive-filters__field {
    position: relative;
    min-width: 0;
    overflow: visible;
}

.vehicle-archive-filters__field--search {
    grid-column: 1 / span 2;
}

.vehicle-archive-filters__field--brand {
    grid-column: 3 / span 1;
}

.vehicle-archive-filters__field--fuel {
    grid-column: 4 / span 1;
}

.vehicle-archive-filters__field--transmission {
    grid-column: 5 / span 1;
}

.vehicle-archive-filters__field--body {
    grid-column: 6 / span 1;
}

.vehicle-archive-filters__field--year {
    grid-column: 1 / span 1;
}

.vehicle-archive-filters__field--mileage {
    grid-column: 2 / span 1;
}

.vehicle-archive-filters__field--sort {
    grid-column: 3 / span 1;
}

.vehicle-archive-filters__label {
    display: block;
    margin-bottom: 8px;
    font-size: 14px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.94);
}

.vehicle-archive-filters__control {
    width: 100%;
    min-height: 46px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: linear-gradient(160deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02));
    color: var(--color-white);
    font-size: 16px;
    font-weight: 600;
    font-family: var(--font-primary);
    transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.vehicle-archive-filters__control--text {
    padding: 10px 16px;
}

.vehicle-archive-filters__control::placeholder {
    color: rgba(255, 255, 255, 0.48);
    font-weight: 500;
}

.vehicle-archive-filters__control--select {
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    padding: 10px 44px 10px 16px;
    background-image:
        linear-gradient(160deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02)),
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 14 14'%3E%3Cpath fill='%23ffcc00' d='M7 9.8 2.6 5.4l1-1L7 7.9l3.4-3.5 1 1z'/%3E%3C/svg%3E");
    background-repeat: no-repeat, no-repeat;
    background-position: 0 0, right 14px center;
    background-size: auto, 14px;
}

.vehicle-archive-filters__control:focus {
    outline: none;
    border-color: rgba(255, 204, 0, 0.92);
    box-shadow: 0 0 0 3px rgba(255, 204, 0, 0.18), 0 10px 20px rgba(0, 0, 0, 0.25);
    background-color: rgba(255, 255, 255, 0.06);
}

.vehicle-archive-filters__control--select option {
    color: #f5f5f5;
    background: #16181c;
}

.vehicle-archive-filters .custom-select {
    position: relative;
    width: 100%;
}

.vehicle-archive-filters .custom-select.is-open {
    z-index: 60;
}

.vehicle-archive-filters .custom-select__trigger {
    width: 100%;
    min-height: 46px;
    padding: 10px 44px 10px 16px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    background:
        linear-gradient(160deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02));
    color: var(--color-white);
    font-size: 16px;
    font-weight: 600;
    line-height: 1.25;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    box-shadow: none;
}

.vehicle-archive-filters .custom-select__trigger::after {
    right: 14px;
    width: 14px;
    height: 14px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 14 14'%3E%3Cpath fill='%23ffcc00' d='M7 9.8 2.6 5.4l1-1L7 7.9l3.4-3.5 1 1z'/%3E%3C/svg%3E");
}

.vehicle-archive-filters .custom-select__trigger--placeholder {
    color: rgba(255, 255, 255, 0.48);
    font-weight: 500;
}

.vehicle-archive-filters .custom-select.is-open .custom-select__trigger,
.vehicle-archive-filters .custom-select__trigger:focus-visible,
.vehicle-archive-filters .custom-select--focused .custom-select__trigger {
    border-color: rgba(255, 204, 0, 0.92);
    box-shadow: 0 0 0 3px rgba(255, 204, 0, 0.18), 0 10px 20px rgba(0, 0, 0, 0.25);
    background:
        linear-gradient(160deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
}

.vehicle-archive-filters .custom-select__menu {
    top: calc(100% + 8px);
    z-index: 120;
    padding: 6px 0;
    border-radius: 14px;
    background: linear-gradient(180deg, rgba(22, 24, 30, 0.98), rgba(14, 16, 22, 0.98));
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 18px 36px rgba(0, 0, 0, 0.42);
}

.vehicle-archive-filters .custom-select__option {
    padding: 10px 16px;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.3;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.vehicle-archive-filters .custom-select__option.is-selected {
    font-weight: 700;
}

.hero-search-shell .custom-select {
    position: relative;
    width: 100%;
}

.hero-search-shell .custom-select.is-open {
    z-index: 60;
}

.hero-search-shell .custom-select__trigger {
    width: 100%;
    min-height: 50px;
    padding: 10px 44px 10px 16px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    background:
      linear-gradient(140deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.015)),
      rgba(11, 14, 20, 0.34);
    color: var(--color-white);
    font-size: 16px;
    font-weight: 600;
    line-height: 1.25;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    box-shadow: none;
    backdrop-filter: blur(18px) saturate(130%);
    -webkit-backdrop-filter: blur(18px) saturate(130%);
}

.hero-search-shell .custom-select__trigger::after {
    right: 14px;
    width: 14px;
    height: 14px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 14 14'%3E%3Cpath fill='%23ffcc00' d='M7 9.8 2.6 5.4l1-1L7 7.9l3.4-3.5 1 1z'/%3E%3C/svg%3E");
}

.hero-search-shell .custom-select__trigger--placeholder {
    color: rgba(255, 255, 255, 0.48);
    font-weight: 500;
}

.hero-search-shell .custom-select.is-open .custom-select__trigger,
.hero-search-shell .custom-select__trigger:focus-visible,
.hero-search-shell .custom-select--focused .custom-select__trigger {
    border-color: rgba(255, 204, 0, 0.92);
    box-shadow: 0 0 0 3px rgba(255, 204, 0, 0.18), 0 10px 20px rgba(0, 0, 0, 0.25);
    background:
      linear-gradient(140deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.025)),
      rgba(11, 14, 20, 0.42);
}

.hero-search-shell .custom-select__menu {
    top: calc(100% + 8px);
    z-index: 120;
    padding: 6px 0;
    border-radius: 14px;
    background: linear-gradient(180deg, rgba(22, 24, 30, 0.98), rgba(14, 16, 22, 0.98));
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 18px 36px rgba(0, 0, 0, 0.42);
}

.hero-search-shell .custom-select__option {
    padding: 10px 16px;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.3;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.hero-search-shell .custom-select__option.is-selected {
    font-weight: 700;
}

.vehicle-archive-filters__actions {
    display: grid;
    align-content: end;
    gap: 12px;
    grid-column: 6 / span 1;
}

.vehicle-archive-filters__reset,
.vehicle-archive-filters__submit {
    width: 100%;
    min-width: 0;
    min-height: 56px;
    border-radius: 18px;
    padding: 0 24px;
    font-size: 16px;
    font-weight: 700;
    justify-content: center;
}

.vehicle-archive-filters__submit {
    background: linear-gradient(135deg, #ffd84a 0%, #ffcc00 56%, #e0ae00 100%);
    color: #111214;
    border: 0;
    box-shadow: 0 8px 16px rgba(255, 204, 0, 0.16);
}

.vehicle-archive-filters__submit:hover,
.vehicle-archive-filters__submit:focus-visible {
    transform: translateY(-1px);
    box-shadow: 0 10px 18px rgba(255, 204, 0, 0.2);
}

.vehicle-archive-filters__reset {
    border: 1px solid rgba(255, 255, 255, 0.24);
    background: rgba(255, 255, 255, 0.05);
    color: #ffffff;
    text-decoration: none;
}

.vehicle-archive-filters__reset:hover,
.vehicle-archive-filters__reset:focus-visible {
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.42);
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-1px);
    box-shadow: 0 10px 22px rgba(0, 0, 0, 0.16);
}

.vehicle-archive-filters__field--price .inventory-price-filter {
    min-height: 72px;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    overflow: visible;
}

.vehicle-archive-filters__field--price {
    grid-column: 4 / span 2;
}

.vehicle-archive-filters__price-value {
    font-size: 14px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.9);
    white-space: nowrap;
}

.vehicle-archive-filters__field--price .inventory-price-filter__row {
    position: relative;
    min-height: 22px;
    grid-template-columns: minmax(0, 1fr);
    gap: 0;
}

.vehicle-archive-filters__field--price .inventory-price-slider {
    width: 100%;
}

.vehicle-archive-filters__price-range {
    position: absolute;
    top: calc(100% + 6px);
    left: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.hero-filter-panel.vehicle-archive-filters {
    width: min(100%, 1100px);
    margin: 0 auto;
    padding: 18px 20px 16px;
    border-radius: 24px;
    background:
      radial-gradient(120% 120% at 0% 0%, rgba(255, 204, 0, 0.08), transparent 34%),
      radial-gradient(120% 140% at 100% 100%, rgba(86, 120, 214, 0.08), transparent 40%),
      linear-gradient(155deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.018) 58%),
      rgba(10, 12, 16, 0.78);
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 24px 56px rgba(0, 0, 0, 0.34);
    backdrop-filter: blur(16px) saturate(126%);
    -webkit-backdrop-filter: blur(16px) saturate(126%);
}

@media (max-width: 1200px) {
    .vehicle-archive-filters__form {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

    .vehicle-archive-filters__field--search {
        grid-column: 1 / span 2;
    }

    .vehicle-archive-filters__field--brand {
        grid-column: 3 / span 1;
    }

    .vehicle-archive-filters__field--fuel {
        grid-column: 4 / span 1;
    }

    .vehicle-archive-filters__field--transmission {
        grid-column: 1 / span 1;
    }

    .vehicle-archive-filters__field--body {
        grid-column: 2 / span 1;
    }

    .vehicle-archive-filters__field--year {
        grid-column: 3 / span 1;
    }

    .vehicle-archive-filters__field--mileage {
        grid-column: 4 / span 1;
    }

    .vehicle-archive-filters__field--sort {
        grid-column: 1 / span 1;
    }

    .vehicle-archive-filters__field--price {
        grid-column: 2 / span 2;
    }

    .vehicle-archive-filters__actions {
        grid-column: 4 / span 1;
    }

    .hero-search-form {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

    .hero-search-form__field--wide,
    .hero-search-form__actions {
        grid-column: 1 / -1;
    }

    .hero-search-form__actions {
        grid-template-columns: minmax(0, 1fr) repeat(2, minmax(0, 200px));
    }
}

@media (max-width: 980px) {
    .vehicle-archive-filters__form {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .vehicle-archive-filters__field--search,
    .vehicle-archive-filters__field--price {
        grid-column: 1 / -1;
    }

    .vehicle-archive-filters__field--brand,
    .vehicle-archive-filters__field--fuel,
    .vehicle-archive-filters__field--transmission,
    .vehicle-archive-filters__field--body,
    .vehicle-archive-filters__field--year,
    .vehicle-archive-filters__field--mileage,
    .vehicle-archive-filters__field--sort {
        grid-column: auto;
    }

    .vehicle-archive-filters__actions {
        grid-column: 1 / -1;
    }
}

@media (max-width: 768px) {
    .vehicle-archive-filters {
        padding: 22px;
        border-radius: 14px;
    }

    .vehicle-archive-filters__form {
        grid-template-columns: 1fr;
    }

    .vehicle-archive-filters__field--search,
    .vehicle-archive-filters__field--brand,
    .vehicle-archive-filters__field--fuel,
    .vehicle-archive-filters__field--transmission,
    .vehicle-archive-filters__field--body,
    .vehicle-archive-filters__field--year,
    .vehicle-archive-filters__field--mileage,
    .vehicle-archive-filters__field--sort,
    .vehicle-archive-filters__field--price,
    .vehicle-archive-filters__actions {
        grid-column: 1 / -1;
    }

    .vehicle-archive-filters__actions {
        gap: 12px;
    }

    .vehicle-archive-filters__reset,
    .vehicle-archive-filters__submit {
        width: 100%;
    }

    .hero-filter-panel.vehicle-archive-filters {
        padding: 18px 18px 16px;
        border-radius: 22px;
    }

    .hero-filter-form {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .hero-filter-form__field--search,
    .hero-filter-form__actions {
        grid-column: 1 / -1;
    }

    .hero-section {
        padding: 72px 0 54px;
    }

    .hero-content {
        gap: 16px;
    }

    .hero-brand-heading {
        margin-bottom: 8px;
        font-size: 0.95rem;
    }

    .hero-seo-heading {
        font-size: clamp(2.15rem, 11vw, 3.3rem);
    }

    .hero-copy .subtitle {
        font-size: 1rem;
    }

    .hero-search-shell {
        padding: 18px;
        border-radius: 22px;
    }

    .hero-search-shell__top {
        flex-direction: column;
        align-items: flex-start;
        margin-bottom: 14px;
    }

    .hero-search-form {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .hero-search-form__field--wide,
    .hero-search-form__actions {
        grid-column: auto;
    }

    .hero-search-form__actions {
        flex-direction: column;
        display: flex;
        justify-content: stretch;
    }

    .hero-search-form__price .inventory-price-filter {
        padding: 0;
    }

    .hero-search-form__actions .btn,
    .hero-search-form__link {
        width: 100%;
        min-width: 0;
    }
}

#inventory .vehicles-grid {
    grid-template-columns: repeat(3, minmax(360px, 1fr));
    gap: 28px;
}

#inventory .vehicle-content {
    padding: 24px;
}

#inventory .vehicle-title {
    font-size: 1.5rem;
}

#inventory .vehicle-price {
    font-size: 2rem;
}

.vehicles-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(330px, 1fr));
    gap: 24px;
    margin-top: 50px;
}

.vehicle-card {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    background: linear-gradient(160deg, rgba(33, 33, 33, 0.95) 0%, rgba(20, 20, 20, 0.98) 55%, rgba(14, 14, 14, 1) 100%);
    border-radius: 16px;
    overflow: hidden;
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
    border: 1px solid rgba(255, 204, 0, 0.14);
    box-shadow: 0 14px 32px rgba(0, 0, 0, 0.3);
    min-height: 0;
}

.vehicle-card:hover {
    transform: translateY(-1px);
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.38);
    border-color: rgba(255, 204, 0, 0.35);
}

.vehicle-card::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(180deg, rgba(255, 204, 0, 0.05) 0%, transparent 30%);
}

.vehicle-image {
    position: relative;
    flex: 0 0 auto;
    aspect-ratio: 16/10;
    overflow: hidden;
    background-color: rgba(255, 255, 255, 0.02);
}

.vehicle-image a {
    display: block;
    height: 100%;
}

.vehicle-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.vehicle-card:hover .vehicle-image img {
    transform: scale(1.02);
}

.vehicle-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background-color: var(--color-yellow);
    color: var(--color-black);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.vehicle-content {
    flex: 1 1 auto;
    min-height: 0;
    padding: 22px;
    display: flex;
    flex-direction: column;
}

.vehicle-title {
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--color-white);
    line-height: 1.25;
}

.vehicle-title a {
    color: inherit;
    text-decoration: none;
    transition: color 0.25s ease;
}

.vehicle-title a:hover {
    color: var(--color-yellow);
}

.vehicle-price {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--color-yellow);
    margin-bottom: 14px;
    line-height: 1.15;
    letter-spacing: 0.01em;
}

.vehicle-specs {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.vehicle-spec {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    color: var(--color-text-gray);
}

.vehicle-spec svg {
    width: 16px;
    height: 16px;
    fill: var(--color-yellow);
}

.vehicle-actions {
    display: grid;
    grid-template-columns: 1.55fr 0.85fr;
    gap: 10px;
    margin-top: auto;
}

@media (min-width: 1400px) {
    .vehicles-grid {
        grid-template-columns: repeat(4, minmax(280px, 1fr));
    }

    #inventory .vehicles-grid {
        grid-template-columns: repeat(4, minmax(280px, 1fr));
    }
}

@media (max-width: 1024px) {
    .vehicles-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    #inventory .vehicles-grid {
        grid-template-columns: repeat(2, minmax(320px, 1fr));
    }
}

@media (max-width: 540px) {
    .vehicles-grid {
        grid-template-columns: 1fr;
    }

    #inventory .vehicles-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

#inventory .home-featured-carousel {
    --home-card-width: 420px;
    --home-card-gap: 26px;
    position: relative;
    padding: 0 58px;
    max-width: 1440px;
    margin: 0 auto;
}

#inventory .home-featured-carousel .vehicles-carousel__viewport {
    width: min(100%, calc((var(--home-card-width) * 3) + (var(--home-card-gap) * 2)));
    max-width: calc((var(--home-card-width) * 3) + (var(--home-card-gap) * 2));
    margin: 0 auto;
    overflow: hidden;
}

#inventory .home-featured-carousel .vehicles-carousel__track {
    display: grid;
    grid-template-columns: none;
    grid-auto-flow: column;
    grid-auto-columns: calc((100% - (var(--home-card-gap) * 2)) / 3);
    gap: var(--home-card-gap);
    margin-top: 18px;
    width: 100%;
    transform: translateX(0);
    transition: transform 0.42s cubic-bezier(0.22, 0.61, 0.36, 1);
    will-change: transform;
}

#inventory .home-featured-carousel .vehicle-card {
    width: 100%;
    min-width: 0;
}

#inventory .home-featured-carousel .vehicles-carousel__nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 42px;
    height: 42px;
    padding: 0;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    background: rgba(20, 20, 22, 0.82);
    color: rgba(255, 255, 255, 0.9);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: border-color 0.24s ease, background-color 0.24s ease, color 0.24s ease, opacity 0.24s ease;
    z-index: 2;
}

#inventory .home-featured-carousel .vehicles-carousel__nav img {
    width: 20px;
    height: 20px;
    display: block;
    object-fit: contain;
    pointer-events: none;
}

#inventory .home-featured-carousel .vehicles-carousel__nav:hover {
    border-color: rgba(255, 204, 0, 0.58);
    background: rgba(34, 34, 36, 0.95);
    color: var(--color-yellow);
}

#inventory .home-featured-carousel .vehicles-carousel__nav[disabled] {
    opacity: 0.35;
    cursor: default;
}

#inventory .home-featured-carousel .vehicles-carousel__nav--prev {
    left: 8px;
}

#inventory .home-featured-carousel .vehicles-carousel__nav--next {
    right: 8px;
}

#inventory .home-featured-carousel.is-static .vehicles-carousel__track {
    justify-content: center;
}

#inventory .home-featured-carousel.is-static .vehicles-carousel__nav {
    display: none;
}

@media (max-width: 1199px) {
    #inventory .home-featured-carousel {
        --home-card-width: 390px;
        --home-card-gap: 22px;
    }

    #inventory .home-featured-carousel .vehicles-carousel__viewport {
        max-width: calc((var(--home-card-width) * 2) + var(--home-card-gap));
    }

    #inventory .home-featured-carousel .vehicles-carousel__track {
        grid-auto-columns: calc((100% - var(--home-card-gap)) / 2);
    }
}

@media (max-width: 760px) {
    #inventory .home-featured-carousel {
        --home-card-width: min(90vw, 420px);
        --home-card-gap: 16px;
        padding: 0 8px;
    }

    #inventory .home-featured-carousel .vehicles-carousel__viewport {
        max-width: 100%;
    }

    #inventory .home-featured-carousel .vehicles-carousel__track {
        margin-top: 14px;
        grid-auto-columns: 100%;
    }

    #inventory .home-featured-carousel .vehicles-carousel__nav {
        top: auto;
        bottom: -52px;
        transform: none;
        width: 38px;
        height: 38px;
    }

    #inventory .home-featured-carousel .vehicles-carousel__nav--prev {
        left: calc(50% - 48px);
    }

    #inventory .home-featured-carousel .vehicles-carousel__nav--next {
        right: calc(50% - 48px);
    }
}

.vehicle-actions .btn,
.single-vehicle__contact-actions .btn {
    justify-content: center;
    min-height: 40px;
    padding: 0 12px;
    font-size: 13px;
    line-height: 1.25;
    white-space: nowrap;
    border-radius: 10px;
    position: relative;
    overflow: hidden;
    isolation: isolate;
    border: 1px solid rgba(255, 255, 255, 0.16);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.04));
    box-shadow: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    transition: border-color 0.3s ease, background-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}

.vehicle-actions .btn.btn-secondary,
.single-vehicle__contact-actions .btn.btn-secondary {
    --glass-r: 255;
    --glass-g: 204;
    --glass-b: 0;
    font-size: 14px;
    font-weight: 600;
    padding: 0 14px;
}

.vehicle-actions .btn.btn-whatsapp,
.single-vehicle__contact-actions .btn.btn-whatsapp {
    --glass-r: 37;
    --glass-g: 211;
    --glass-b: 102;
    font-size: 12px;
    padding: 0 10px;
}

.single-vehicle__contact-actions .btn.btn-secondary {
    --glass-r: 86;
    --glass-g: 120;
    --glass-b: 214;
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(86, 120, 214, 0.18) 48%, rgba(86, 120, 214, 0.1));
    border-color: rgba(86, 120, 214, 0.38);
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.28),
      inset 0 -10px 18px rgba(24, 34, 66, 0.18);
}

.vehicle-actions .btn::before,
.single-vehicle__contact-actions .btn::before {
    content: "";
    position: absolute;
    inset: -40% -55%;
    border-radius: 999px;
    pointer-events: none;
    opacity: 0;
    transform: translateX(-26%) rotate(-5deg) scale(1.04);
    background:
      radial-gradient(55% 60% at 26% 40%, rgba(255, 255, 255, 0.42), rgba(255, 255, 255, 0) 72%),
      radial-gradient(80% 80% at 70% 70%, rgba(var(--glass-r), var(--glass-g), var(--glass-b), 0.14), rgba(var(--glass-r), var(--glass-g), var(--glass-b), 0) 76%);
    transition: opacity 0.35s ease, transform 0.45s ease;
    z-index: 0;
}

.vehicle-actions .btn::after,
.single-vehicle__contact-actions .btn::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    pointer-events: none;
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.42), rgba(255, 255, 255, 0.08) 32%, rgba(255, 255, 255, 0) 66%);
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.38),
      inset 0 -1px 0 rgba(255, 255, 255, 0.12);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.vehicle-actions .btn:hover::before,
.single-vehicle__contact-actions .btn:hover::before {
    opacity: 1;
    transform: translateX(14%) rotate(-2deg) scale(1.08);
}

.vehicle-actions .btn:hover,
.single-vehicle__contact-actions .btn:hover {
    border-color: rgba(var(--glass-r), var(--glass-g), var(--glass-b), 0.46);
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.18), rgba(var(--glass-r), var(--glass-g), var(--glass-b), 0.07) 52%, rgba(var(--glass-r), var(--glass-g), var(--glass-b), 0.03));
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.46),
      inset 0 -10px 18px rgba(7, 10, 18, 0.22),
      0 6px 16px rgba(0, 0, 0, 0.22);
    backdrop-filter: blur(12px) saturate(125%);
    -webkit-backdrop-filter: blur(12px) saturate(125%);
    transform: translateY(-0.5px);
}

.vehicle-actions .btn:hover::after,
.single-vehicle__contact-actions .btn:hover::after {
    opacity: 0.86;
}

.vehicle-btn-icon {
    display: inline-flex;
    width: 18px;
    height: 18px;
    margin-right: 8px;
    color: currentColor;
    opacity: 0.9;
    flex-shrink: 0;
    align-items: center;
    justify-content: center;
}

.vehicle-btn-icon svg {
    width: 100%;
    height: 100%;
    fill: currentColor;
    display: block;
}

.vehicle-btn-icon img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: contain;
}

/* ==========================================================================
   Stats Section
   ========================================================================== */

.why-section {
    position: relative;
    isolation: isolate;
    z-index: 1;
    overflow: hidden;
    padding: 56px 0 80px;
    background:
      radial-gradient(820px 280px at 14% 0%, rgba(255, 204, 0, 0.10), transparent 60%),
      radial-gradient(760px 260px at 88% 100%, rgba(120, 160, 255, 0.09), transparent 62%),
      rgba(14, 15, 18, 0.8);
}

.why-section .container {
    position: relative;
    z-index: 2;
}

.why-section__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
}

.why-section__bg video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.why-section::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
      radial-gradient(760px 260px at 30% 0%, rgba(255, 204, 0, 0.12), transparent 60%),
      radial-gradient(920px 340px at 86% 78%, rgba(26, 40, 70, 0.12), transparent 64%),
      linear-gradient(135deg, rgba(8, 10, 14, 0.76), rgba(8, 10, 14, 0.54) 44%, rgba(8, 10, 14, 0.82)),
      linear-gradient(180deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0) 34%);
    backdrop-filter: blur(6px) saturate(114%);
    -webkit-backdrop-filter: blur(6px) saturate(114%);
    pointer-events: none;
}

.why-section::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
      linear-gradient(160deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.016) 48%, rgba(255, 255, 255, 0.035)),
      linear-gradient(120deg, rgba(255, 204, 0, 0.055), rgba(22, 34, 58, 0.065) 60%, rgba(4, 6, 10, 0.24));
    pointer-events: none;
}

.why-section .section-title {
    margin-bottom: 0.7rem;
}

.why-section .section-subtitle {
    max-width: 720px;
    margin: 0 auto 2.5rem;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.why-card {
    position: relative;
    min-height: 250px;
    padding: 26px 22px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    border-radius: 18px;
    background:
      linear-gradient(160deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.025) 60%),
      rgba(10, 12, 16, 0.92);
    border: 1px solid rgba(255, 255, 255, 0.14);
    box-shadow: 0 16px 42px rgba(0, 0, 0, 0.36);
    backdrop-filter: blur(8px);
    transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.why-card__icon {
    width: 112px;
    height: 112px;
    margin: 0 auto 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 204, 0, 0.24) 0%, rgba(255, 204, 0, 0) 70%);
}

.why-card__icon img {
    width: 54px;
    height: 54px;
    object-fit: contain;
    filter: drop-shadow(0 6px 14px rgba(255, 204, 0, 0.35));
}

.why-card::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    pointer-events: none;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.20), rgba(255, 255, 255, 0) 34%);
    opacity: 0.42;
}

.why-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 204, 0, 0.4);
    box-shadow: 0 22px 56px rgba(0, 0, 0, 0.48);
}

.why-card__eyebrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 44px;
    height: 28px;
    border-radius: 999px;
    background: rgba(255, 204, 0, 0.14);
    border: 1px solid rgba(255, 204, 0, 0.42);
    color: var(--color-yellow);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    margin-bottom: 16px;
}

.why-card__title {
    margin: 0 0 10px;
    color: var(--color-white);
    font-size: clamp(1.1rem, 2vw, 1.38rem);
    line-height: 1.24;
    font-weight: 700;
    min-height: calc(1.24em * 2);
}

.why-card__text {
    margin: 0;
    color: rgba(232, 237, 245, 0.76);
    font-size: 0.98rem;
    line-height: 1.55;
}

.why-card--award {
    background:
      linear-gradient(155deg, rgba(255, 204, 0, 0.11), rgba(255, 204, 0, 0.03) 42%, rgba(255, 255, 255, 0.025)),
      rgba(10, 12, 16, 0.92);
    border-color: rgba(255, 204, 0, 0.28);
}

.why-card--award .why-card__icon {
    margin-top: 0;
    background: radial-gradient(circle, rgba(255, 204, 0, 0.15) 0%, rgba(255, 204, 0, 0) 72%);
}

.why-card--award .why-card__icon img {
    width: 98px;
    height: auto;
    max-height: 76px;
    filter: drop-shadow(0 4px 10px rgba(255, 204, 0, 0.2));
}

.why-card--award:hover {
    border-color: rgba(255, 204, 0, 0.4);
    box-shadow: 0 22px 56px rgba(0, 0, 0, 0.46);
}

@media (max-width: 1180px) {
    .why-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 720px) {
    .why-section {
        padding: 42px 0 60px;
    }

    .why-grid {
        grid-template-columns: 1fr;
    }

    .why-card {
        min-height: 0;
    }
}

/* ==========================================================================
   Forms
   ========================================================================== */

.form-section {
    background-color: var(--color-black);
    padding: 80px 0;
}

.form-container {
    max-width: 700px;
    margin: 0 auto;
    background-color: var(--color-dark-gray);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius);
    padding: 50px;
}

.form-intro {
    text-align: center;
    margin-bottom: 40px;
}

.form-intro p {
    color: var(--color-text-gray);
    font-size: 1.1rem;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.form-group {
    margin-bottom: 25px;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--color-white);
    font-size: 14px;
}

.form-input,
.form-select,
.form-textarea {
    width: 100%;
    padding: 12px 15px;
    background-color: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: var(--color-white);
    font-size: 15px;
    font-family: var(--font-primary);
    transition: var(--transition);
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--color-yellow);
    background-color: rgba(255, 255, 255, 0.05);
}

.form-textarea {
    resize: vertical;
    min-height: 120px;
}

.form-select {
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    color-scheme: dark;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23a0a0a0' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
    padding-right: 40px;
}

.custom-select {
    position: relative;
    width: 100%;
}

.form-select.is-customized {
    position: absolute;
    inset: 0;
    opacity: 0;
    pointer-events: none;
    width: 100%;
    height: 100%;
}

.custom-select__trigger {
    width: 100%;
    min-height: 51px;
    padding: 12px 40px 12px 15px;
    background-color: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: var(--color-white);
    font-size: 15px;
    font-family: var(--font-primary);
    line-height: 1.35;
    text-align: left;
    display: flex;
    align-items: center;
    transition: var(--transition);
    cursor: pointer;
    position: relative;
}

.custom-select__trigger::after {
    content: "";
    position: absolute;
    right: 15px;
    top: 50%;
    width: 12px;
    height: 12px;
    transform: translateY(-50%);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23a0a0a0' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    transition: transform 0.2s ease;
}

.custom-select.is-open .custom-select__trigger,
.custom-select__trigger:focus-visible,
.custom-select--focused .custom-select__trigger {
    outline: none;
    border-color: var(--color-yellow);
    background-color: rgba(255, 255, 255, 0.05);
}

.custom-select.is-open .custom-select__trigger::after {
    transform: translateY(-50%) rotate(180deg);
}

.custom-select__trigger--placeholder {
    color: rgba(255, 255, 255, 0.62);
}

.custom-select__menu {
    position: absolute;
    top: calc(100% + 6px);
    left: 0;
    right: 0;
    z-index: 70;
    display: none;
    padding: 8px 0;
    border-radius: 12px;
    background: linear-gradient(180deg, rgba(21, 24, 33, 0.98), rgba(15, 18, 26, 0.98));
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 16px 34px rgba(0, 0, 0, 0.42);
    max-height: 260px;
    overflow-y: auto;
}

.custom-select__menu--portal {
    position: absolute;
    right: auto;
    z-index: 2500;
    display: block;
}

.custom-select__menu--top {
    transform-origin: center bottom;
}

.custom-select.is-open .custom-select__menu {
    display: block;
}

.custom-select__option {
    width: 100%;
    border: 0;
    background: transparent;
    color: #f5f7fb;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.3;
    text-align: left;
    padding: 11px 18px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    cursor: pointer;
    transition: background 0.18s ease, color 0.18s ease;
}

.custom-select__option:hover,
.custom-select__option.is-active {
    background: linear-gradient(135deg, rgba(255, 212, 54, 0.96), rgba(243, 184, 0, 0.96));
    color: #111111;
}

.custom-select__option.is-selected {
    font-weight: 700;
}

.form-submit {
    width: 100%;
    margin-top: 10px;
}

/* ==========================================================================
   FAQ / Accordion
   ========================================================================== */

.faq-section {
    background-color: rgba(26, 26, 26, 0.5);
    padding: 80px 0;
}

.faq-container {
    max-width: 900px;
    margin: 50px auto 0;
}

.faq-item {
    background-color: var(--color-dark-gray);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius);
    margin-bottom: 15px;
    overflow: hidden;
    transition: var(--transition);
}

.faq-item:hover {
    border-color: rgba(255, 204, 0, 0.2);
}

.faq-question {
    padding: 25px 30px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--color-white);
    user-select: none;
}

.faq-question:hover {
    background-color: rgba(255, 255, 255, 0.02);
}

.faq-icon {
    font-size: 1.2rem;
    color: var(--color-yellow);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer-content {
    padding: 0 30px 25px;
    color: var(--color-text-gray);
    line-height: 1.8;
}

/* ==========================================================================
   Contact Section
   ========================================================================== */

.contact-section {
    background:
      radial-gradient(1200px 560px at 50% 0%, rgba(255, 204, 0, 0.09), transparent 56%),
      linear-gradient(180deg, #0d0f14, #090b10);
    padding: 72px 0 26px;
}

.contact-hub {
    position: relative;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    background:
      radial-gradient(700px 260px at 28% 0%, rgba(255, 204, 0, 0.18), transparent 58%),
      linear-gradient(135deg, rgba(255, 255, 255, 0.065), rgba(255, 255, 255, 0.03));
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.55), inset 0 0 0 1px rgba(255, 255, 255, 0.04);
    padding: 28px;
}

.contact-hub__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 18px;
}

.contact-hub__brand {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 24px;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.contact-hub__brand img {
    height: 44px;
    width: auto;
    display: block;
}

.contact-hub__status {
    display: inline-flex;
    align-items: center;
    min-height: 42px;
    padding: 0 16px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    background: rgba(255, 255, 255, 0.04);
    color: rgba(255, 255, 255, 0.8);
    font-weight: 600;
    white-space: nowrap;
}

.contact-hub__body {
    display: grid;
    grid-template-columns: 1.15fr 0.95fr;
    gap: 28px;
    align-items: stretch;
}

.contact-hub__title {
    margin: 0;
    font-size: clamp(34px, 4.5vw, 56px);
    line-height: 1.02;
    letter-spacing: -0.03em;
    font-weight: 900;
    color: #fff;
}

.contact-hub__title.has-signature-underline::after {
    margin: 14px 0 0;
}

.contact-hub__title span {
    display: block;
    color: var(--color-yellow);
}

.contact-hub__subtitle {
    margin: 14px 0 0;
    max-width: 58ch;
    font-size: 1.2rem;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.78);
}

.contact-hub__actions {
    margin-top: 22px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, max-content));
    gap: 12px;
    align-content: start;
}

.contact-hub__btn {
    min-height: 52px;
    padding: 0 22px;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    background: rgba(255, 255, 255, 0.06);
    color: #fff;
    font-weight: 800;
    letter-spacing: 0.01em;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.contact-hub .contact-hub__btn.contact-hub__btn--whatsapp {
    background: linear-gradient(135deg, rgba(37, 211, 102, 0.96), rgba(18, 178, 84, 0.96));
    border-color: rgba(37, 211, 102, 0.75);
    color: #07190e;
}

.contact-hub .contact-hub__btn.contact-hub__btn--call {
    background: linear-gradient(135deg, #ffc800, #f7b901);
    border-color: rgba(255, 204, 0, 0.85);
    color: #111;
}

.contact-hub .contact-hub__btn.contact-hub__btn--whatsapp:hover {
    background: linear-gradient(135deg, rgba(44, 219, 110, 0.98), rgba(22, 188, 90, 0.98));
    border-color: rgba(37, 211, 102, 0.9);
    color: #07190e;
}

.contact-hub .contact-hub__btn.contact-hub__btn--call:hover {
    background: linear-gradient(135deg, #ffd436, #ffc800);
    border-color: rgba(255, 204, 0, 0.95);
    color: #111;
}

.contact-hub .contact-hub__btn.contact-hub__btn--callback {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
    color: #fff;
    transition: background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.contact-hub .contact-hub__btn.contact-hub__btn--callback:hover {
    background: linear-gradient(135deg, rgba(255, 212, 54, 0.22), rgba(255, 200, 0, 0.1));
    border-color: rgba(255, 204, 0, 0.62);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.34);
    transform: translateY(-1px);
}

/* Mobile keeps source order (Call second). Desktop swaps Call and Callback. */
@media (min-width: 769px) {
    .contact-hub__actions .contact-hub__btn--callback {
        order: 2;
    }
    .contact-hub__actions .contact-hub__btn--call {
        order: 5;
    }
}

.contact-hub__btn-icon {
    width: 16px;
    height: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: currentColor;
    flex-shrink: 0;
}

.contact-hub .contact-hub__btn--callback .contact-hub__btn-icon {
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.contact-hub .contact-hub__btn--callback:hover .contact-hub__btn-icon {
    transform: scale(1.12);
}

.contact-hub__btn-icon svg {
    width: 16px;
    height: 16px;
    display: block;
    fill: currentColor;
}

.contact-hub__btn-icon img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: contain;
}

.callback-modal {
    width: min(660px, calc(100vw - 24px));
}

.callback-form__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.callback-form .form-group {
    margin-bottom: 0;
}

.callback-form__note {
    margin: 14px 0 0;
    color: rgba(255, 255, 255, 0.68);
    font-size: 13px;
}

.callback-form__error {
    min-height: 22px;
    margin-top: 8px;
    color: #fda4af;
    font-size: 13px;
    font-weight: 700;
}

.contact-hub__cards {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.contact-detail-card {
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 16px;
    background: rgba(12, 14, 18, 0.5);
    padding: 16px 16px 14px;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.03);
}

.contact-detail-card__label {
    display: block;
    margin-bottom: 8px;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.65);
}

.contact-detail-card__value {
    margin: 0;
    color: #fff;
    font-size: 1.12rem;
    line-height: 1.4;
    font-weight: 800;
}

.contact-detail-card__value a {
    color: #fff;
    text-decoration: none;
}

.contact-detail-card__value a:hover {
    color: var(--color-yellow);
}

.contact-detail-card__meta {
    margin: 6px 0 0;
    color: rgba(255, 255, 255, 0.66);
    font-size: 0.98rem;
}

.contact-icon {
    width: 50px;
    height: 50px;
    margin: 0 auto 20px;
    background-color: rgba(255, 204, 0, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-yellow);
    font-size: 20px;
}

.contact-label {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--color-white);
    margin-bottom: 10px;
}

.contact-value {
    color: var(--color-text-gray);
    font-size: 1.05rem;
}

.contact-actions {
    margin-top: 40px;
    text-align: center;
}

/* Offer image grid */
.offer-image-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
    margin-top: 12px;
}
@media (max-width: 1024px){
    .offer-image-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
@media (max-width: 768px){
    .offer-image-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 480px){
    .offer-image-grid { grid-template-columns: repeat(1, minmax(0, 1fr)); }
}
.offer-image-card {
    position: relative;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.10);
    border-radius: 12px;
    padding: 8px;
    transition: border-color 0.18s ease, box-shadow 0.18s ease;
}
.offer-image-card--pending {
    border-style: dashed;
    border-color: rgba(255, 204, 0, 0.55);
    box-shadow: 0 0 0 1px rgba(255, 204, 0, 0.15);
}
.offer-image-card:hover {
    border-color: rgba(255, 204, 0, 0.65);
    box-shadow: 0 8px 24px rgba(0,0,0,0.35);
}
.offer-image-thumb {
    width: 100%;
    aspect-ratio: 1 / 1;
    border-radius: 10px;
    overflow: hidden;
}
.offer-image-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.offer-image-meta {
    margin-top: 8px;
}
.offer-image-remove {
    position: absolute;
    top: 6px;
    right: 6px;
    width: 26px;
    height: 26px;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,0.2);
    background: rgba(0,0,0,0.5);
    color: #fff;
    cursor: pointer;
    line-height: 1;
    font-size: 18px;
}

.offer-lightbox {
    position: fixed;
    inset: 0;
    display: none;
    align-items: center;
    justify-content: center;
    background: rgba(0,0,0,0.75);
    z-index: 10000;
    padding: 20px;
}
.offer-lightbox.is-open {
    display: flex;
}
.offer-lightbox__img {
    max-width: min(96vw, 1400px);
    max-height: 92vh;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.2);
    box-shadow: 0 20px 60px rgba(0,0,0,0.6);
}
.offer-lightbox__close {
    position: absolute;
    top: 20px;
    right: 24px;
    width: 36px;
    height: 36px;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,0.25);
    background: rgba(0,0,0,0.6);
    color: #fff;
    font-size: 22px;
    cursor: pointer;
}
.offer-lightbox__nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,0.25);
    background: rgba(0,0,0,0.6);
    color: #fff;
    font-size: 28px;
    cursor: pointer;
}
.offer-lightbox__prev { left: 24px; }
.offer-lightbox__next { right: 24px; }
.offer-lightbox__download {
    position: absolute;
    top: 20px;
    left: 24px;
    padding: 8px 12px;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,0.25);
    background: rgba(0,0,0,0.6);
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    font-size: 13px;
}
.contact-map-section {
    padding-top: 18px;
    padding-bottom: 10px;
}
.contact-map-card {
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.14);
    box-shadow: 0 18px 42px rgba(0, 0, 0, 0.42);
    padding: 0;
}
.contact-form-section {
    padding-top: 28px;
    padding-bottom: 82px;
}

.contact-form-panel {
    border-radius: 22px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    background:
      radial-gradient(520px 200px at 30% 0%, rgba(255, 204, 0, 0.08), transparent 62%),
      rgba(255, 255, 255, 0.04);
    box-shadow: 0 18px 44px rgba(0, 0, 0, 0.45);
}

.contact-form-title {
    font-size: clamp(30px, 4vw, 42px);
    margin-bottom: 8px;
    letter-spacing: -0.02em;
}

/* Header profile button */
.btn-user {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    line-height: 1.1;
    padding: 10px 14px;
}
.btn-user__label {
    font-weight: 700;
}
.btn-user__name {
    font-size: 12px;
    color: rgba(255,255,255,0.75);
}

/* ==========================================================================
   Footer
   ========================================================================== */

.site-footer {
    background-color: rgba(10, 10, 10, 0.8);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 50px;
    margin-bottom: 40px;
}

.footer-about {
    max-width: 350px;
}

.footer-logo img {
    height: 45px;
    margin-bottom: 20px;
}

.footer-description {
    color: var(--color-text-gray);
    line-height: 1.8;
    margin-bottom: 20px;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.social-icon {
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    transition: var(--transition);
}

.social-icon:hover {
    background-color: var(--color-yellow);
    color: var(--color-black);
    transform: translateY(-3px);
}

.footer-section h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--color-white);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: var(--color-text-gray);
    transition: var(--transition);
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: var(--color-yellow);
    padding-left: 5px;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--color-text-gray);
    font-size: 0.9rem;
}

.footer-bottom a {
    color: var(--color-yellow);
}

/* ==========================================================================
   Floating WhatsApp Button
   ========================================================================== */

.floating-whatsapp {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: var(--color-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    font-size: 28px;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    cursor: pointer;
    transition: var(--transition);
    z-index: 999;
}

.floating-whatsapp:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6);
}

/* ==========================================================================
   Responsive Design
   ========================================================================== */


@media (max-width: 992px) {
    .header-container {
        grid-template-columns: 1fr auto;
        grid-template-rows: auto auto;
        padding-top: 10px;
        padding-bottom: 10px;
    }

    .header-center {
        grid-column: 1 / -1;
        justify-content: stretch;
    }

    .header-search {
        width: 100%;
    }

    .main-navigation {
        display: none;
    }

    .secondary-navigation {
        display: none;
    }

    .mobile-menu-toggle {
        display: block;
    }

    .site-header.mobile-menu-open .main-navigation,
    .site-header.mobile-menu-open .secondary-navigation {
        display: block;
    }

    .site-header.mobile-menu-open .main-navigation .container,
    .site-header.mobile-menu-open .secondary-navigation .container {
        padding: 0 14px 10px;
    }

    .site-header.mobile-menu-open .primary-menu,
    .site-header.mobile-menu-open .secondary-menu {
        flex-direction: column;
        align-items: stretch;
        gap: 8px;
    }

    .site-header.mobile-menu-open .primary-menu a,
    .site-header.mobile-menu-open .secondary-menu a {
        width: 100%;
        justify-content: flex-start;
    }

    .site-header.mobile-menu-open .primary-menu .menu-item-has-children > a,
    .site-header.mobile-menu-open .secondary-menu .menu-item-has-children > a {
        justify-content: space-between;
    }

    .site-header.mobile-menu-open .primary-menu .sub-menu,
    .site-header.mobile-menu-open .secondary-menu .sub-menu {
        position: static;
        left: auto;
        top: auto;
        transform: none;
        min-width: 0;
        margin-top: 6px;
        opacity: 1;
        visibility: visible;
        display: none;
    }

    .site-header.mobile-menu-open .primary-menu .menu-item-has-children.is-open > .sub-menu,
    .site-header.mobile-menu-open .secondary-menu .menu-item-has-children.is-open > .sub-menu {
        display: block;
    }

    .site-header.mobile-menu-open .secondary-menu > li.menu-item-buy > .sub-menu {
        min-width: 0;
        grid-template-columns: 1fr;
        gap: 6px;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    :root {
        --button-height: 40px;
        --button-padding-x: 14px;
    }

    .section {
        padding: 50px 0;
    }
    
    .hero-section {
        padding: 80px 0 60px;
    }

    .hero-content {
        gap: 24px;
    }

    .hero-copy .subtitle {
        margin-bottom: 24px;
        font-size: 1rem;
    }

    .hero-actions {
        flex-direction: column;
        align-items: stretch;
        width: min(100%, 360px);
    }

    .hero-actions .btn {
        width: 100%;
    }

    .hero-proof {
        gap: 8px;
    }

    .hero-proof span {
        min-height: 36px;
        font-size: 0.86rem;
    }

    .hero-search-shell {
        padding: 18px;
        border-radius: 22px;
    }

    .hero-search-shell__top {
        flex-direction: column;
        align-items: flex-start;
        margin-bottom: 14px;
    }

    .hero-search-form {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .hero-search-form__field--wide,
    .hero-search-form__actions {
        grid-column: auto;
    }

    .hero-search-form__actions {
        flex-direction: column;
        justify-content: stretch;
    }

    .hero-search-form__actions .btn,
    .hero-search-form__link {
        width: 100%;
        min-width: 0;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: stretch;
    }
    
    .header-search .search-input {
		min-width: 0; 
	}
    .header-right { 
		gap: 8px;
	}
    
	.btn-login.btn-secondary { 
		padding: 0 12px;
		font-size: 13px;
	}
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .form-container {
        padding: 30px 20px;
    }
    
    .form-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-section {
        padding-top: 48px;
    }

    .contact-hub {
        border-radius: 18px;
        padding: 18px;
    }

    .contact-hub__header {
        flex-direction: column;
        align-items: flex-start;
        margin-bottom: 14px;
    }

    .contact-hub__body {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .contact-hub__title {
        font-size: clamp(30px, 8.2vw, 44px);
    }

    .contact-hub__subtitle {
        font-size: 1.04rem;
    }

    .contact-hub__actions {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .contact-hub__btn {
        width: 100%;
        justify-content: center;
    }

    .contact-hub__cards {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .floating-whatsapp {
        width: 50px;
        height: 50px;
        font-size: 24px;
        bottom: 20px;
        right: 20px;
    }
}

@media (max-width: 992px) {
    .hero-content {
        gap: 20px;
    }

    .hero-copy {
        max-width: 720px;
        margin: 0;
        align-items: flex-start;
        text-align: left;
    }

    .hero-copy .subtitle {
        margin: 0;
        text-align: left;
    }

    .hero-search-shell {
        max-width: none;
        margin: 0;
    }

    .hero-search-shell__top {
        align-items: flex-start;
    }

    .hero-search-form {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .hero-search-form__field--wide,
    .hero-search-form__actions {
        grid-column: 1 / -1;
    }

    .hero-search-form__actions {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .section-title {
        font-size: 1.8rem;
    }
    
    .hero-brand-heading {
        font-size: 0.88rem;
        letter-spacing: 0.14em;
    }

    .hero-seo-heading {
        font-size: clamp(1.95rem, 12vw, 2.7rem);
    }
        
        .header-search { width: 100%; }
        .header-search .search-input { width: 100%; }
	
	.header-container {
		gap: 10px;
		padding: 10px 14px;
	}

        .site-logo img { height: 30px; }

	.lang-btn {
		padding: 0 10px;
		min-width: 56px;
	}

        .btn-login.btn-secondary {
                padding: 0 10px;
        }

        .hero-search-shell {
                padding: 16px;
        }
}


/* ==========================================================================
   Utility Classes
   ========================================================================== */

.text-center {
    text-align: center;
}

.text-yellow {
    color: var(--color-yellow);
}

.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mt-5 { margin-top: 3rem; }

.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.mb-5 { margin-bottom: 3rem; }

.hidden {
    display: none;
}

.loading {
    opacity: 0.6;
    pointer-events: none;
}


/* Navigation dropdown polish */
.main-navigation ul ul{
    background: rgba(15, 15, 15, 0.96);
    border: 1px solid rgba(255,255,255,0.10);
    border-radius: 14px;
    padding: 10px;
    min-width: 220px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.55);
    backdrop-filter: blur(10px);
}
.main-navigation ul ul li a{
    padding: 10px 12px;
    border-radius: 12px;
}
.main-navigation ul ul li a:hover{
    background: rgba(255,255,255,0.08);
    color: rgba(255,255,255,0.95);
}

/* Language dropdown polish */
.lang-menu{
    background: rgba(15, 15, 15, 0.96);
    border: 1px solid rgba(255,255,255,0.10);
    border-radius: 14px;
    padding: 10px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.55);
    backdrop-filter: blur(10px);
}
.lang-menu a{
    border-radius: 12px;
    padding: 10px 12px;
}
.lang-menu a:hover{
    background: rgba(255,255,255,0.08);
}


/* Registration section */
.registration-section{
    padding: 70px 0;
}
.registration-card{
    position: relative;
    max-width: 980px;
    margin: 0 auto;
    padding: 44px 46px;
    border-radius: 22px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.10);
    box-shadow: 0 22px 70px rgba(0,0,0,0.55);
    backdrop-filter: blur(14px);
    text-align: center;
}
.registration-icon{
    width: 64px;
    height: 64px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    background: rgba(255, 204, 0, 0.16);
    color: var(--color-yellow);
}
.registration-card h2{
    font-size: clamp(28px, 3vw, 40px);
    margin: 0 0 10px;
}
.registration-card p{
    margin: 0 0 24px;
    color: rgba(255,255,255,0.72);
}
.registration-card .btn{
    padding-inline: 28px;
}

/* -----------------------------
   Generic WP templates additions
   ----------------------------- */
.page-hero {
  padding: 64px 0 24px;
  background: radial-gradient(ellipse at top, rgba(255, 196, 0, 0.12), rgba(0,0,0,0) 55%),
              linear-gradient(180deg, rgba(20,20,20,0.95), rgba(10,10,10,0.95));
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.page-title {
  margin: 0;
  font-size: clamp(28px, 4vw, 44px);
  letter-spacing: -0.02em;
}
.page-subtitle {
  margin: 10px 0 0;
  color: rgba(255,255,255,0.72);
  max-width: 70ch;
}
.page-content {
  padding: 32px 0 80px;
}
.page-template-page-about .page-content {
  padding-top: 42px;
}
.page-content .container {
  max-width: 1200px;
}

/* About page blocks */
.about-hero {
  padding: 2px 0 10px;
}
.about-hero,
.about-card,
.about-quote,
.about-values,
.about-contact,
.about-socials {
  position: relative;
}
.about-hero h2 {
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 800;
  letter-spacing: -0.02em;
}
.about-hero h2::after {
  content: "";
  display: block;
  width: 64px;
  height: 3px;
  margin: 14px auto 0;
  background: var(--color-yellow);
  border-radius: 999px;
}
.about-card {
  margin: 18px auto 34px;
  padding: 0 28px 18px;
  border-radius: 18px;
  background: radial-gradient(1200px 400px at -10% -20%, rgba(255, 204, 0, 0.10), transparent 60%),
              radial-gradient(600px 280px at 120% 0%, rgba(255, 255, 255, 0.04), transparent 60%),
              rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.14);
  box-shadow: 0 25px 80px rgba(0,0,0,0.55);
  overflow: hidden;
}
.about-card p {
  color: rgba(255,255,255,0.86);
  line-height: 1.8;
}
.about-quote {
  margin: 24px auto 28px;
  padding: 18px 22px;
  border-radius: 16px;
  border: 1px solid rgba(255, 204, 0, 0.55);
  background: linear-gradient(135deg, rgba(255, 204, 0, 0.22), rgba(0,0,0,0.35));
  color: #fff;
  font-weight: 800;
  text-shadow: 0 8px 20px rgba(0,0,0,0.45);
}
.about-values {
  margin: 10px 0 22px;
  align-items: stretch;
}
.about-values .wp-block-column {
  display: flex;
}
.about-value-card {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 220px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 26px 18px;
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.02));
  border: 1px solid rgba(255,255,255,0.14);
  text-align: center;
  transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
  --about-value-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='black'%3E%3Cpath d='M12 2.25c.17 0 .34.04.5.12l7 3.5a.75.75 0 0 1 .41.67v4.96c0 4.06-2.44 7.75-6.18 9.35l-1.45.62a.75.75 0 0 1-.56 0l-1.45-.62A10.18 10.18 0 0 1 4.09 11.5V6.54a.75.75 0 0 1 .41-.67l7-3.5a.75.75 0 0 1 .5-.12zM11 14.19 8.78 12a.75.75 0 1 0-1.06 1.06l2.75 2.75a.75.75 0 0 0 1.06 0l4.75-4.75A.75.75 0 0 0 15.22 10L11 14.19z'/%3E%3C/svg%3E");
}
.about-value-card::before {
  content: "";
  display: block;
  width: 52px;
  height: 52px;
  margin: 0 auto 14px;
  border-radius: 14px;
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
  border: 1px solid rgba(255, 255, 255, 0.28);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.12), 0 8px 16px rgba(0,0,0,0.24);
}
.about-value-card::after {
  content: "";
  position: absolute;
  top: 40px;
  left: 50%;
  transform: translateX(-50%);
  width: 24px;
  height: 24px;
  background-color: #f7f9ff;
  -webkit-mask-image: var(--about-value-mask);
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  -webkit-mask-size: contain;
  mask-image: var(--about-value-mask);
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: contain;
  pointer-events: none;
}
.about-values .wp-block-column:nth-child(1) .about-value-card {
  --about-value-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m8.5 11.5 2.2 2.2a2 2 0 0 0 2.8 0l2.1-2.1a1.7 1.7 0 0 0 0-2.4l-1.1-1.1a2.4 2.4 0 0 0-3.4 0L9 10.2'/%3E%3Cpath d='M3 10.2 5.9 7.3a2 2 0 0 1 2.8 0l1.5 1.5'/%3E%3Cpath d='M21 10.2l-2.9-2.9a2 2 0 0 0-2.8 0l-1.5 1.5'/%3E%3Cpath d='m6.8 14.7 1.7 1.7a2 2 0 0 0 2.8 0l.4-.4'/%3E%3Cpath d='m17.2 14.7-1.7 1.7a2 2 0 0 1-2.8 0l-.4-.4'/%3E%3C/svg%3E");
}
.about-values .wp-block-column:nth-child(2) .about-value-card {
  --about-value-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='black'%3E%3Cpath d='M13.25 2.75a.75.75 0 0 0-1.34-.44l-7.5 10A.75.75 0 0 0 5 13.5h5.2l-1.45 7.24a.75.75 0 0 0 1.33.57l9-12a.75.75 0 0 0-.6-1.2h-5.18l-.05-5.36z'/%3E%3C/svg%3E");
}
.about-values .wp-block-column:nth-child(3) .about-value-card {
  --about-value-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='black'%3E%3Cpath d='M11.2 3.1a.75.75 0 0 1 1.19 0c1.33 1.7 2.1 3.44 2.1 5.07 0 1.26-.47 2.5-1.35 3.6a.75.75 0 0 0 .95 1.12c2.26-1.32 3.66-3.49 3.66-5.78 0-1.4-.53-2.79-1.49-4.05a.75.75 0 1 1 1.2-.9c1.15 1.53 1.79 3.24 1.79 4.95 0 2.22-.98 4.34-2.67 5.92 1.62.9 2.67 2.6 2.67 4.5 0 2.9-2.35 5.25-5.25 5.25H9.99a5.25 5.25 0 0 1-3.7-8.98l4.91-4.9c.84-.84 1.3-1.97 1.3-3.15 0-.75-.19-1.57-.62-2.65a.75.75 0 0 1 .32-.95z'/%3E%3C/svg%3E");
}
.about-value-card h3 {
  margin-top: 12px;
  margin-bottom: 8px;
  color: var(--color-white);
  font-weight: 800;
}
.about-value-card p {
  color: rgba(255,255,255,0.68);
  margin: 0;
}
@media (max-width: 768px) {
  .about-value-card {
    min-height: 180px;
  }
}
.about-value-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 204, 0, 0.55);
  box-shadow: 0 16px 40px rgba(0,0,0,0.45);
}
.about-contact {
  margin: 16px 0 30px;
  padding: 28px 28px;
  border-radius: 20px;
  background:
    linear-gradient(135deg, rgba(255, 204, 0, 0.12), rgba(18,18,20,0.96) 40%, rgba(12,12,14,0.98));
  border: 1px solid rgba(255,255,255,0.14);
  box-shadow: 0 18px 46px rgba(0,0,0,0.5), inset 0 0 0 1px rgba(255,255,255,0.05);
}
.about-contact h3 {
  margin-bottom: 12px;
  font-weight: 800;
  letter-spacing: -0.01em;
}
.about-contact h3::after {
  content: "";
  display: block;
  width: 64px;
  height: 3px;
  margin: 12px auto 0;
  background: var(--color-yellow);
  border-radius: 999px;
}
.about-contact-sub {
  margin: 0 0 12px;
  color: rgba(255,255,255,0.72);
}
.about-contact-grid {
  margin-top: 18px;
}
.about-contact-row {
  gap: 18px;
  margin-bottom: 18px;
}
.about-contact-row:last-child {
  margin-bottom: 0;
}
.about-contact-card {
  padding: 18px 20px;
  border-radius: 16px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.12);
  display: flex;
  align-items: flex-start;
  gap: 14px;
  min-height: 94px;
  box-shadow: 0 14px 34px rgba(0,0,0,0.38);
  transition: transform 0.16s ease, border-color 0.16s ease, box-shadow 0.16s ease;
}
.about-contact-card:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 204, 0, 0.45);
  box-shadow: 0 18px 40px rgba(0,0,0,0.45);
}
.about-contact-card p {
  margin: 0;
  color: rgba(255,255,255,0.82);
  line-height: 1.6;
}
.about-contact-card strong {
  color: #fff;
  display: block;
  margin-bottom: 4px;
  font-weight: 800;
  letter-spacing: 0.01em;
}
.about-contact-value {
  display: block;
  color: rgba(255,255,255,0.72);
}
.about-contact-icon {
  display: inline-flex;
  width: 36px;
  height: 36px;
  border-radius: 12px;
  align-items: center;
  justify-content: center;
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
  border: 1px solid rgba(255, 204, 0, 0.35);
  font-size: 14px;
  flex: 0 0 36px;
  position: relative;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.12), 0 8px 16px rgba(0,0,0,0.24);
  --about-contact-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='black'%3E%3Cpath d='M12 2C8.686 2 6 4.686 6 8c0 4.418 5.373 11.264 5.602 11.553a.5.5 0 0 0 .796 0C12.627 19.264 18 12.418 18 8c0-3.314-2.686-6-6-6zm0 8.5A2.5 2.5 0 1 1 12 5a2.5 2.5 0 0 1 0 5.5z'/%3E%3C/svg%3E");
}
.about-contact-icon::before,
.about-contact-icon::after {
  content: "";
  display: block;
}
.about-contact-icon::before {
  width: 18px;
  height: 18px;
  background-color: #ffcc00;
  -webkit-mask-image: var(--about-contact-mask);
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  -webkit-mask-size: contain;
  mask-image: var(--about-contact-mask);
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: contain;
}
.about-contact-icon::after {
  display: none;
}
.about-contact-icon--pin {
  --about-contact-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='black'%3E%3Cpath d='M12 2C8.686 2 6 4.686 6 8c0 4.418 5.373 11.264 5.602 11.553a.5.5 0 0 0 .796 0C12.627 19.264 18 12.418 18 8c0-3.314-2.686-6-6-6zm0 8.5A2.5 2.5 0 1 1 12 5a2.5 2.5 0 0 1 0 5.5z'/%3E%3C/svg%3E");
}
.about-contact-icon--phone {
  --about-contact-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='black'%3E%3Cpath d='M2.5 4.5a2 2 0 0 1 2-2h2a1 1 0 0 1 1 .8l.7 3.5a1 1 0 0 1-.3.9l-1.7 1.4a12.5 12.5 0 0 0 5.9 5.9l1.4-1.7a1 1 0 0 1 .9-.3l3.5.7a1 1 0 0 1 .8 1v2a2 2 0 0 1-2 2h-1c-7.18 0-13-5.82-13-13v-1z'/%3E%3C/svg%3E");
}
.about-contact-icon--mail {
  --about-contact-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='black'%3E%3Cpath d='M3 5.5A2.5 2.5 0 0 1 5.5 3h13A2.5 2.5 0 0 1 21 5.5v13A2.5 2.5 0 0 1 18.5 21h-13A2.5 2.5 0 0 1 3 18.5v-13zm2.3.5 7.2 5.1L19.7 6H5.3zm14.2 2.2-6.7 4.8a1 1 0 0 1-1.2 0L4.9 8.2V18.5c0 .55.45 1 1 1h13a1 1 0 0 0 1-1V8.2z'/%3E%3C/svg%3E");
}
.about-contact-icon--clock {
  --about-contact-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='black'%3E%3Cpath d='M12 2a10 10 0 1 0 0 20 10 10 0 0 0 0-20zm0 2a8 8 0 1 1 0 16 8 8 0 0 1 0-16zm-.5 3a1 1 0 0 1 1 1v4.2l3 1.8a1 1 0 1 1-1 1.7l-3.5-2.1a1 1 0 0 1-.5-.86V8a1 1 0 0 1 1-1z'/%3E%3C/svg%3E");
}
.about-cinematic {
  position: relative;
  margin: 24px 0 20px;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.14);
  box-shadow: 0 24px 56px rgba(0,0,0,0.42);
  background: #090b10;
  isolation: isolate;
}
.about-cinematic__media {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 7;
  object-fit: cover;
}
.about-cinematic__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, rgba(0,0,0,0.64) 0%, rgba(0,0,0,0.35) 45%, rgba(0,0,0,0.68) 100%),
    radial-gradient(90% 120% at 12% 0%, rgba(255, 204, 0, 0.24), transparent 52%);
}
.about-cinematic__content {
  position: absolute;
  left: clamp(16px, 3vw, 34px);
  right: clamp(16px, 3vw, 34px);
  bottom: clamp(16px, 3vw, 30px);
  z-index: 2;
  max-width: 520px;
}
.about-cinematic__kicker {
  margin: 0 0 8px;
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 204, 0, 0.55);
  background: rgba(18, 20, 25, 0.58);
  color: #ffe698;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 800;
}
.about-cinematic__title {
  margin: 0;
  color: #fff;
  font-weight: 900;
  letter-spacing: -0.02em;
  font-size: clamp(24px, 3.4vw, 40px);
  line-height: 1.1;
  text-shadow: 0 10px 24px rgba(0,0,0,0.5);
}
.about-card .about-cinematic {
  margin: 0 -28px;
  border-radius: 18px 18px 0 0;
  border-left: 0;
  border-right: 0;
  border-top: 0;
  box-shadow: none;
}
.about-card .about-cinematic__media {
  aspect-ratio: auto;
  height: clamp(250px, 40vh, 420px);
}
.about-card .about-cinematic__content {
  left: 20px;
  right: 20px;
  bottom: 14px;
  max-width: 460px;
}
.about-card .about-cinematic__title {
  font-size: clamp(18px, 2.1vw, 32px);
  line-height: 1.14;
}
.about-card > p {
  width: min(820px, 100%);
  margin-left: auto;
  margin-right: auto;
  margin-top: 0;
  margin-bottom: 10px;
  padding-left: 0;
  padding-right: 0;
  color: rgba(255,255,255,0.86);
  line-height: 1.5;
  font-size: 0.96rem;
}
.about-card > .about-cinematic + p {
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid rgba(255,255,255,0.12);
}
.about-card > p:last-child {
  margin-bottom: 0;
  padding-bottom: 18px;
}
.about-timeline-block {
  margin: 44px 0 52px;
}
.about-timeline-heading {
  margin: 0 0 22px;
  font-size: clamp(30px, 3.2vw, 46px);
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1.06;
  color: #fff;
}
.about-timeline {
  margin: 0;
  padding: 28px 24px;
  border-radius: 20px;
  background:
    radial-gradient(120% 80% at 0% 0%, rgba(255, 204, 0, 0.18), transparent 48%),
    radial-gradient(100% 70% at 100% 100%, rgba(86, 120, 214, 0.14), transparent 52%),
    rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.14);
  box-shadow: 0 18px 42px rgba(0,0,0,0.4);
}
.about-timeline h3 {
  margin: 0 0 10px;
  font-weight: 800;
  letter-spacing: -0.01em;
}
.about-timeline-intro {
  margin: 0 0 22px;
  color: rgba(255,255,255,0.72);
}
.about-timeline-carousel {
  position: relative;
}
.about-timeline-track-wrap {
  overflow: hidden;
  padding: 6px 0 8px;
}
.about-timeline-list {
  list-style: none;
  margin: 0;
  padding: 0;
  position: relative;
  transition: transform 0.58s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}
.about-timeline-list::before {
  content: none;
}
.about-timeline-item {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: start;
  justify-content: flex-start;
  min-height: 154px;
  padding: 20px 18px 16px;
  margin-top: 0;
  border-radius: 16px;
  background:
    linear-gradient(158deg, rgba(255,255,255,0.08), rgba(255,255,255,0.02) 62%),
    rgba(12,14,18,0.9);
  border: 1px solid rgba(255,255,255,0.14);
  box-shadow: 0 16px 34px rgba(0,0,0,0.34);
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}
.about-timeline-item:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 204, 0, 0.5);
  box-shadow: 0 18px 42px rgba(0,0,0,0.42);
}
.about-timeline-item::before {
  content: none;
}
.about-timeline--stacked .about-timeline-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  padding-top: 34px;
}
.about-timeline--stacked .about-timeline-track-wrap {
  overflow: visible;
  padding: 6px 0 2px;
}
.about-timeline--stacked .about-timeline-list::before {
  content: "";
  position: absolute;
  left: 8%;
  right: 8%;
  top: 14px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(to right, rgba(255, 204, 0, 0.72), rgba(255,255,255,0.24));
}
.about-timeline--stacked .about-timeline-item {
  width: auto;
}
.about-timeline--stacked .about-timeline-item::before {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: -26px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--color-yellow);
  border: 2px solid #0f1115;
  box-shadow: 0 0 0 5px rgba(255, 204, 0, 0.2), 0 0 22px rgba(255, 204, 0, 0.34);
}
.about-timeline--stacked .vehicles-carousel__nav {
  display: none;
}

.about-timeline--slider .about-timeline-track-wrap {
  overflow: hidden;
  padding: 6px 4px 8px;
}
.about-timeline--slider .about-timeline-list {
  width: max-content;
  min-width: 100%;
  display: flex;
  align-items: stretch;
  gap: 16px;
  padding: 34px 0 0;
}
.about-timeline--slider .about-timeline-list::before {
  content: "";
  position: absolute;
  left: 8%;
  right: 8%;
  top: 14px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(to right, rgba(255, 204, 0, 0.72), rgba(255,255,255,0.24));
}
.about-timeline--slider .about-timeline-item {
  width: 245px;
  flex: 0 0 245px;
}
.about-timeline--slider .about-timeline-item::before {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: -26px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--color-yellow);
  border: 2px solid #0f1115;
  box-shadow: 0 0 0 5px rgba(255, 204, 0, 0.2), 0 0 22px rgba(255, 204, 0, 0.34);
}
.about-timeline--slider .vehicles-carousel__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 58px;
  height: 58px;
  border: 1px solid rgba(255, 204, 0, 0.45);
  border-radius: 999px;
  background: linear-gradient(145deg, rgba(16, 18, 23, 0.88), rgba(13, 15, 20, 0.74));
  box-shadow: 0 14px 26px rgba(0, 0, 0, 0.34);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
  cursor: pointer;
  transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease, opacity 0.25s ease;
}
.about-timeline--slider .vehicles-carousel__nav img {
  width: 26px;
  height: 26px;
  object-fit: contain;
}
.about-timeline--slider .vehicles-carousel__nav:hover {
  transform: translateY(-50%) scale(1.05);
  border-color: rgba(255, 204, 0, 0.78);
}
.about-timeline--slider .vehicles-carousel__nav[disabled] {
  opacity: 0.4;
  cursor: not-allowed;
}
.about-timeline--slider .vehicles-carousel__nav--prev {
  left: -74px;
}
.about-timeline--slider .vehicles-carousel__nav--next {
  right: -74px;
}
.about-timeline-year {
  display: inline-flex;
  justify-content: center;
  min-width: 70px;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255, 204, 0, 0.5);
  background: linear-gradient(135deg, rgba(255, 204, 0, 0.26), rgba(255, 204, 0, 0.12));
  color: #fff0b1;
  font-weight: 800;
  letter-spacing: 0.02em;
  line-height: 1;
}
.about-timeline-item-title {
  margin: 2px 0 0;
  color: #fff;
  font-size: clamp(17px, 1.45vw, 20px);
  font-weight: 800;
  letter-spacing: -0.01em;
  line-height: 1.25;
}
.about-timeline-item-desc {
  margin: 0;
  padding-left: 0;
  color: rgba(255,255,255,0.80);
  font-size: 15px;
  line-height: 1.6;
}
.about-socials {
  margin: 18px auto 0;
  padding: 10px 0 0;
}
.about-socials .wp-block-button__link {
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.06);
  color: #fff;
  font-weight: 700;
  padding: 12px 22px;
}
.about-socials .wp-block-button__link[href*="wa.me"] {
  background: linear-gradient(135deg, rgba(37, 211, 102, 0.95), rgba(20, 170, 80, 0.95));
  border-color: rgba(37, 211, 102, 0.7);
  color: #0b1b11;
}
.about-socials .wp-block-button__link[href*="instagram.com"] {
  background: linear-gradient(135deg, #f58529, #dd2a7b, #8134af, #515bd4);
  border-color: rgba(221, 42, 123, 0.7);
  color: #fff;
}
.about-socials .wp-block-button__link:hover {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255, 204, 0, 0.5);
  color: #fff;
}
.about-socials .wp-block-button__link[href*="wa.me"]:hover,
.about-socials .wp-block-button__link[href*="instagram.com"]:hover {
  filter: brightness(1.05);
  border-color: rgba(255,255,255,0.5);
}
@media (max-width: 640px) {
  .page-template-page-about .page-content {
    padding-top: 62px;
  }
  .about-cinematic {
    border-radius: 16px;
    margin: 18px 0 16px;
  }
  .about-card .about-cinematic {
    margin: 0 -16px;
    border-radius: 16px 16px 0 0;
  }
  .about-card > p {
    width: 100%;
    margin-bottom: 8px;
    font-size: 0.92rem;
    line-height: 1.46;
  }
  .about-card > .about-cinematic + p {
    margin-top: 10px;
    padding-top: 10px;
  }
  .about-card > p:last-child {
    padding-bottom: 14px;
  }
  .about-cinematic__media {
    aspect-ratio: 16 / 10;
  }
  .about-card .about-cinematic__media {
    aspect-ratio: auto;
    height: clamp(200px, 32dvh, 290px);
  }
  .about-card .about-cinematic__content {
    bottom: 8px;
    left: 16px;
    right: 16px;
  }
  .about-cinematic__kicker {
    min-height: 26px;
    font-size: 11px;
    letter-spacing: 0.08em;
  }
  .about-cinematic__title {
    font-size: clamp(17px, 6vw, 24px);
  }
  .about-timeline-block {
    margin: 34px 0 40px;
  }
  .about-timeline-heading {
    margin-bottom: 16px;
    font-size: clamp(26px, 8.4vw, 34px);
  }
  .about-timeline {
    padding: 20px 16px;
  }
  .about-timeline--stacked .about-timeline-list {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .about-timeline--slider .about-timeline-list {
    width: max-content;
    min-width: 100%;
    display: flex;
    gap: 12px;
    padding-top: 30px;
    scroll-snap-type: x proximity;
  }
  .about-timeline-list::before {
    left: 26px;
    right: 26px;
  }
  .about-timeline--slider .about-timeline-item {
    width: min(240px, 78vw);
    min-height: 148px;
    padding: 18px 14px 14px;
    scroll-snap-align: start;
  }
  .about-timeline--slider .vehicles-carousel__nav {
    width: 46px;
    height: 46px;
  }
  .about-timeline--slider .vehicles-carousel__nav img {
    width: 20px;
    height: 20px;
  }
  .about-timeline--slider .vehicles-carousel__nav--prev {
    left: 8px;
  }
  .about-timeline--slider .vehicles-carousel__nav--next {
    right: 8px;
  }
  .about-timeline-year {
    min-width: 54px;
    padding: 6px 8px;
    font-size: 12px;
  }
  .about-timeline-item-title {
    font-size: 16px;
  }
  .about-timeline-item-desc {
    padding-left: 0;
    font-size: 14px;
  }
}
@media (max-width: 1100px) and (min-width: 641px) {
  .about-timeline--stacked .about-timeline-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .about-timeline--slider .about-timeline-list {
    padding-top: 32px;
  }
  .about-timeline--slider .about-timeline-item {
    width: 245px;
    min-height: 150px;
  }
  .about-timeline--slider .vehicles-carousel__nav {
    width: 52px;
    height: 52px;
  }
  .about-timeline--slider .vehicles-carousel__nav--prev {
    left: 10px;
  }
  .about-timeline--slider .vehicles-carousel__nav--next {
    right: 10px;
  }
}

/* Basic button system (used by archive filters, pagination, etc.) */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: var(--button-height);
  padding: 0 var(--button-padding-x);
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.06);
  color: #fff;
  line-height: 1;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.06s ease, background 0.2s ease, border-color 0.2s ease;
}
.btn:hover {
  background: rgba(255,255,255,0.10);
}
.btn:active {
  transform: translateY(1px);
}

.btn-primary {
  background: #ffc400;
  border-color: #ffc400;
  color: #111;
  font-weight: 700;
}
.btn-primary:hover {
  background: #ffd24a;
  border-color: #ffd24a;
}

.btn-outline {
  background: transparent;
}

input.btn,
button.btn {
  appearance: none;
  -webkit-appearance: none;
}

.pagination {
  margin-top: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.06);
  color: #fff;
  text-decoration: none;
}
.pagination .page-numbers.current {
  background: #ffc400;
  border-color: #ffc400;
  color: #111;
  font-weight: 800;
}

/* XO Cars Login */
.xocars-login {
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 16px;
}

.xocars-login__card {
  width: 100%;
  max-width: 460px;
  background: rgba(20,20,20,0.9);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 28px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.4);
}

.xocars-login__brand h1 {
  margin: 0 0 6px 0;
}

.xocars-login__brand p {
  margin: 0 0 18px 0;
  opacity: 0.8;
}

.xocars-login__errors {
  background: rgba(255, 80, 80, 0.12);
  border: 1px solid rgba(255, 80, 80, 0.35);
  padding: 10px 12px;
  border-radius: 10px;
  margin-bottom: 14px;
}

.xocars-login form p {
  margin-bottom: 12px;
}

.xocars-login input[type="text"],
.xocars-login input[type="password"] {
  width: 100%;
  padding: 12px 12px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(0,0,0,0.25);
  color: #fff;
}

.xocars-login input[type="submit"] {
  width: 100%;
  padding: 12px 14px;
  border-radius: 10px;
  border: 0;
  cursor: pointer;
  font-weight: 600;
}

.xocars-login__links {
  margin-top: 10px;
  text-align: center;
}

:focus-visible {
  outline: 2px solid rgba(255, 204, 0, 0.85);
  outline-offset: 3px;
}

html { scroll-padding-top: 90px; }


@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}


/* =========================
   AUTH (Login / Signup)
   ========================= */

.xo-login-wrap{
  padding: 56px 0;
}

.xo-auth-card{
  max-width: 560px;
  margin: 0 auto;
  padding: 28px;
  border-radius: 18px;
  border: 1px solid var(--stroke, rgba(255,255,255,.14));
  background: linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.03));
  box-shadow: 0 20px 60px rgba(0,0,0,.35);
}

.xo-auth-header{
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 14px;
}

.xo-auth-logo{
  font-weight: 900;
  letter-spacing: .3px;
  font-size: 18px;
  line-height: 1.1;
}

.xo-auth-sub{
  color: var(--muted, rgba(255,255,255,.68));
  font-size: 14px;
}

.xo-auth-tabs{
  display: flex;
  gap: 10px;
  margin: 14px 0 18px;
}

.xo-auth-tab,
.xo-tab{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  text-decoration: none;
  appearance: none;
  border: 1px solid rgba(255,255,255,.18);
  background: linear-gradient(135deg, rgba(255,255,255,.10), rgba(255,255,255,.04));
  color: #ffffff;
  padding: 12px 16px;
  border-radius: 18px;
  cursor: pointer;
  font-weight: 700;
  line-height: 1;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease, background .2s ease, color .2s ease;
}

.xo-auth-tab:hover,
.xo-tab:hover{
  transform: translateY(-1px);
  border-color: rgba(255,255,255,.26);
  box-shadow: 0 10px 20px rgba(0,0,0,.20);
}

.xo-auth-tab.is-active,
.xo-tab.is-active{
  border-color: rgba(246,201,14,.95);
  background: linear-gradient(180deg, rgba(255,216,69,1) 0%, rgba(246,201,14,1) 100%);
  color: #111111;
  box-shadow: 0 6px 16px rgba(246,201,14,.16);
}

.xo-auth-form form{ margin: 0; }

.xo-auth-form p{
  margin: 0 0 14px;
}

.xo-auth-form label{
  display: block;
  margin: 0 0 6px;
  color: var(--muted, rgba(255,255,255,.68));
  font-size: 13px;
}

.xo-auth-form input[type="text"],
.xo-auth-form input[type="email"],
.xo-auth-form input[type="password"]{
  width: 100%;
  border-radius: 12px;
  border: 1px solid var(--stroke, rgba(255,255,255,.14));
  background: rgba(0,0,0,.30);
  color: var(--text, #fff);
  padding: 12px 12px;
  outline: none;
}

.xo-auth-form input[type="text"]:focus,
.xo-auth-form input[type="email"]:focus,
.xo-auth-form input[type="password"]:focus{
  border-color: rgba(246,201,14,.55);
  box-shadow: 0 0 0 4px rgba(246,201,14,.14);
}

.xo-auth-form .login-remember label{
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 4px;
}

.xo-auth-form .login-remember input{
  width: 18px;
  height: 18px;
}

.xo-auth-actions{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 8px;
}

.xo-auth-form input[type="submit"]{
  appearance: none;
  border: 0;
  border-radius: 12px;
  padding: 12px 16px;
  font-weight: 800;
  cursor: pointer;
  background: var(--accent, #f6c90e);
  color: #111;
}

.xo-auth-form input[type="submit"]:hover{
  filter: brightness(1.05);
}

.xo-auth-form .login-submit{
  margin-top: 6px;
}

.xo-auth-form .login-submit .xo-btn,
.xo-auth-form .login-submit button{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  border: 1px solid rgba(246,201,14,.95);
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(255,216,69,1) 0%, rgba(246,201,14,1) 100%);
  color: #111111;
  font-weight: 700;
  line-height: 1;
  padding: 14px 18px;
  text-decoration: none;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, filter .2s ease;
  box-shadow: 0 6px 16px rgba(246,201,14,.16);
}

.xo-auth-form .login-submit .xo-btn:hover,
.xo-auth-form .login-submit button:hover{
  transform: translateY(-1px);
  filter: brightness(1.03);
  box-shadow: 0 8px 20px rgba(246,201,14,.22);
}

.xo-auth-form .xo-link{
  color: var(--accent, #f6c90e);
  text-decoration: none;
  font-weight: 700;
}

.xo-auth-form .xo-link:hover{ text-decoration: underline; }

.xo-auth-note{
  margin-top: 14px;
  color: var(--muted, rgba(255,255,255,.68));
  font-size: 13px;
}

@media (max-width: 640px){
  .xo-login-wrap{ padding: 40px 0; }
  .xo-auth-card{ margin: 0 14px; padding: 22px; }
}

/* Offer status pill (site-wide) */
.offer-status-pill {
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
  padding: 6px 12px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.01em;
  border: 1px solid transparent;
}

.offer-status-pill.status-draft {
  background: rgba(148, 163, 184, 0.16);
  color: #cbd5f5;
  border-color: rgba(148, 163, 184, 0.35);
}

.offer-status-pill.status-in_review {
  background: rgba(59, 130, 246, 0.16);
  color: #93c5fd;
  border-color: rgba(59, 130, 246, 0.4);
}

.offer-status-pill.status-active {
  background: rgba(16, 185, 129, 0.16);
  color: #6ee7b7;
  border-color: rgba(16, 185, 129, 0.4);
}

.offer-status-pill.status-rejected {
  background: rgba(239, 68, 68, 0.16);
  color: #fca5a5;
  border-color: rgba(239, 68, 68, 0.4);
}

.offer-status-pill.status-sold {
  background: rgba(148, 163, 184, 0.16);
  color: #cbd5f5;
  border-color: rgba(148, 163, 184, 0.35);
}

.inventory-sort-btn {
  appearance: none;
  background: transparent;
  border: 0;
  color: rgba(255, 255, 255, 0.9);
  font: inherit;
  font-weight: 700;
  padding: 0;
  cursor: pointer;
}

.inventory-sort-btn:hover,
.inventory-sort-btn.is-active {
  color: var(--color-yellow);
}

.inventory-toolbar {
  display: grid;
  gap: 12px;
  margin-bottom: 18px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  background:
    radial-gradient(120% 120% at 0% 0%, rgba(255, 204, 0, 0.07), transparent 42%),
    rgba(255, 255, 255, 0.02);
}

.inventory-toolbar__search-price {
  display: grid;
  grid-template-columns: minmax(260px, 0.9fr) minmax(420px, 1.8fr);
  align-items: end;
  gap: 12px;
}

.inventory-toolbar__actions {
  display: grid;
  grid-template-columns: auto auto minmax(420px, 1fr);
  align-items: stretch;
  gap: 12px;
}

.inventory-toolbar__search {
  min-width: 0;
}

.inventory-toolbar__search .form-label {
  margin-bottom: 6px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.82);
}

.inventory-toolbar__search .form-input {
  min-height: 44px;
}

.inventory-toolbar__bulk {
  justify-self: start;
}

.inventory-toolbar__bulk .btn {
  min-height: 48px;
  padding-inline: 18px;
  font-weight: 800;
  border-radius: 12px;
}

.inventory-status-filter {
  margin: 0;
  min-height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  padding: 6px 10px;
  display: flex;
  align-items: center;
  gap: 10px;
  overflow: hidden;
}

.inventory-status-filter__label {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.66);
  white-space: nowrap;
}

.inventory-status-filter__items {
  display: flex;
  flex-wrap: nowrap;
  gap: 8px;
  overflow-x: auto;
  scrollbar-width: thin;
  min-width: 0;
  padding-bottom: 2px;
}

.inventory-status-option {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.03);
  font-size: 13px;
  color: rgba(255, 255, 255, 0.94);
  line-height: 1;
}

.inventory-status-option input[type="checkbox"] {
  margin: 0;
}

#inventory input[type="checkbox"] {
  -webkit-appearance: none;
  appearance: none;
  width: 16px;
  height: 16px;
  border-radius: 4px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.08);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background-color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

#inventory input[type="checkbox"]::before {
  content: "";
  width: 4px;
  height: 8px;
  border-right: 2px solid #111214;
  border-bottom: 2px solid #111214;
  transform: rotate(45deg) scale(0);
  transform-origin: center;
  transition: transform 0.15s ease;
  margin-top: -1px;
}

#inventory input[type="checkbox"]:checked {
  background: var(--color-yellow);
  border-color: var(--color-yellow);
}

#inventory input[type="checkbox"]:checked::before {
  transform: rotate(45deg) scale(1);
}

#inventory input[type="checkbox"]:focus-visible {
  outline: 2px solid rgba(255, 204, 0, 0.5);
  outline-offset: 2px;
}

.inventory-check {
  width: 16px;
  height: 16px;
  border-radius: 4px;
}

/* Compact table action buttons in admin dashboard tables */
.admin-dashboard__section table td .btn {
  min-height: 34px;
  padding: 0 12px;
  font-size: 13px;
  border-radius: 10px;
}

.inventory-price-filter {
  margin: 0;
  max-width: none;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 8px 12px;
}

.inventory-price-filter .form-label {
  margin-bottom: 6px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.82);
}

.inventory-price-filter__row {
  min-height: 44px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 10px;
}

.inventory-price-slider {
  position: relative;
  height: 22px;
  margin-top: 0;
}

.inventory-price-slider__ticks {
  position: absolute;
  left: 0;
  right: 0;
  width: 100%;
  top: 50%;
  height: 8px;
  transform: translateY(-50%);
  border-radius: 999px;
  background:
    repeating-linear-gradient(
      to right,
      rgba(255, 204, 0, 0.22) 0,
      rgba(255, 204, 0, 0.22) 2px,
      transparent 2px,
      transparent 10%
    ),
    linear-gradient(90deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.18));
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.06);
}

.inventory-price-slider__track {
  position: absolute;
  top: 50%;
  height: 8px;
  transform: translateY(-50%);
  border-radius: 999px;
  background: var(--color-yellow);
  box-shadow: 0 0 0 1px rgba(255, 204, 0, 0.25), 0 0 14px rgba(255, 204, 0, 0.25);
  left: 0;
  width: 100%;
}

.inventory-price-slider__input {
  -webkit-appearance: none;
  appearance: none;
  position: absolute;
  inset: 0;
  width: 100%;
  margin: 0;
  background: transparent;
  pointer-events: none;
  z-index: 1;
}

.inventory-price-slider__input--max {
  z-index: 2;
}

.inventory-price-slider__input.is-active-thumb {
  z-index: 4;
}

.inventory-price-slider__input::-webkit-slider-runnable-track {
  height: 8px;
  background: transparent;
  border: 0;
}

.inventory-price-slider__input::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 2px solid #121214;
  background: var(--color-yellow);
  box-shadow: 0 0 0 3px rgba(255, 204, 0, 0.25);
  margin-top: -4px;
  pointer-events: auto;
  cursor: pointer;
}

.inventory-price-slider__input::-moz-range-track {
  height: 8px;
  background: transparent;
  border: 0;
}

.inventory-price-slider__input::-moz-range-thumb {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 2px solid #121214;
  background: var(--color-yellow);
  box-shadow: 0 0 0 3px rgba(255, 204, 0, 0.25);
  pointer-events: auto;
  cursor: pointer;
}

.inventory-price-values {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.84);
  margin-top: 4px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
}

#xoInventoryBulkDeleteOpen:disabled {
  opacity: 0.45;
  cursor: not-allowed;
  box-shadow: none;
}

@media (max-width: 1200px) {
  .inventory-toolbar__search-price,
  .inventory-toolbar__actions {
    grid-template-columns: 1fr;
    align-items: stretch;
  }

  .inventory-toolbar__bulk {
    justify-self: start;
  }
}

/* Profile cards grid */
.profile-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}
@media (max-width: 1100px) {
  .profile-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
@media (max-width: 900px) {
  .profile-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 600px) {
  .profile-grid {
    grid-template-columns: 1fr;
  }
}

.profile-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 14px;
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  height: 100%;
  min-height: 220px;
}

.profile-card--offer {
  grid-template-rows: auto 1fr auto;
}

.profile-card__media {
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 12px;
  overflow: hidden;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
}
.profile-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.profile-card__placeholder {
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  color: rgba(255,255,255,0.6);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.profile-card__title {
  font-weight: 800;
}
.profile-card__code {
  font-size: 12px;
  color: rgba(255,255,255,0.6);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.profile-card__actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: auto;
}
.profile-card__actions form {
  margin: 0;
}
.profile-card__actions .btn {
  padding: 6px 12px;
  min-width: 76px;
  justify-content: center;
  line-height: 1;
  height: 32px;
}

/* Profile page buttons: match admin inventory table action button sizing */
.page-profile .form-container .btn,
.page-profile .profile-card__actions .btn,
.page-profile .card .btn {
  min-height: 34px;
  height: 34px;
  padding: 0 12px;
  font-size: 13px;
  font-weight: 700;
  border-radius: 10px;
  line-height: 1;
}

.page-profile .form-container .btn.form-submit {
  min-width: 140px;
}

/* Hard-targeted class used by page-profile.php buttons */
.profile-action-btn {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  box-sizing: border-box !important;
  vertical-align: middle !important;
  min-height: 34px !important;
  height: 34px !important;
  padding: 0 12px !important;
  font-size: 13px !important;
  font-weight: 700 !important;
  border-radius: 10px !important;
  line-height: 1 !important;
}

.profile-action-row {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: max-content;
  align-items: stretch;
  gap: 12px;
  justify-content: start;
}

.profile-action-row .profile-action-btn {
  min-width: 164px !important;
  height: 36px !important;
  min-height: 36px !important;
  margin: 0 !important;
}

/* Themed delete confirmation modal on profile page */
.profile-delete-modal .xo-modal__dialog {
  width: min(460px, calc(100vw - 24px));
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background:
    radial-gradient(420px 180px at 20% 0%, rgba(255, 204, 0, 0.10), transparent 64%),
    rgba(14, 16, 20, 0.96);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.55);
}

.profile-delete-modal .xo-modal__subtitle {
  color: rgba(255, 255, 255, 0.78);
}
.profile-delete {
  border-color: rgba(239, 68, 68, 0.6);
  color: #fca5a5;
}
.profile-delete:hover {
  background: rgba(239, 68, 68, 0.15);
  border-color: rgba(239, 68, 68, 0.8);
}

.profile-card--placeholder {
  text-decoration: none;
  border-style: dashed;
  border-color: rgba(255,255,255,0.18);
  background: rgba(255,255,255,0.03);
  transition: border-color 0.2s ease, transform 0.2s ease;
}
.profile-card--placeholder:hover {
  border-color: rgba(255, 204, 0, 0.6);
  transform: translateY(-2px);
}
.profile-card__placeholder-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: rgba(255, 204, 0, 0.15);
  color: #f6c90e;
  font-size: 26px;
  font-weight: 800;
}

/* Admin vehicle form layout */
.admin-vehicle-form .form-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.admin-vehicle-form .form-group.full-width {
  grid-column: span 3;
}
@media (max-width: 1100px) {
  .admin-vehicle-form .form-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .admin-vehicle-form .form-group.full-width {
    grid-column: span 2;
  }
}
@media (max-width: 720px) {
  .admin-vehicle-form .form-grid {
    grid-template-columns: 1fr;
  }
  .admin-vehicle-form .form-group.full-width {
    grid-column: span 1;
  }
}

.admin-vehicle-container {
  max-width: 100%;
  width: 100%;
}

.admin-dashboard .form-container {
  max-width: 100%;
  width: 100%;
  padding: 32px 24px;
}

#inventory .form-intro {
  margin-bottom: 14px;
}

#inventory .form-container {
  padding-left: 22px;
  padding-right: 44px;
}

.admin-dashboard__actions {
  margin-bottom: 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

/* Admin dashboard shell */
.admin-dashboard {
  position: relative;
  padding-top: 26px;
  padding-bottom: 40px;
  background:
    radial-gradient(980px 340px at -4% -10%, rgba(255, 204, 0, 0.11), transparent 62%),
    radial-gradient(900px 360px at 108% 0%, rgba(86, 120, 214, 0.14), transparent 64%);
}

.admin-dashboard__layout {
  display: grid;
  grid-template-columns: 250px minmax(0, 1fr);
  gap: 26px;
  align-items: start;
}

.admin-dashboard__side {
  position: sticky;
  top: 128px;
  width: 100%;
  padding: 18px;
  border-radius: 18px;
  background:
    linear-gradient(158deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.015) 58%),
    rgba(9, 11, 16, 0.86);
  border: 1px solid rgba(255, 255, 255, 0.13);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.34);
  backdrop-filter: blur(8px) saturate(112%);
  -webkit-backdrop-filter: blur(8px) saturate(112%);
  height: fit-content;
}

.admin-dashboard__side-title {
  margin: 0 0 14px;
  font-weight: 800;
  color: rgba(244, 247, 255, 0.96);
  letter-spacing: 0.02em;
}

.admin-dashboard__nav {
  display: grid;
  gap: 9px;
}

.admin-dashboard__nav a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  min-height: 46px;
  padding: 0 13px;
  border-radius: 13px;
  color: rgba(233, 239, 251, 0.86);
  text-decoration: none;
  border: 1px solid transparent;
  background: linear-gradient(140deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.015));
  transition: border-color 0.22s ease, box-shadow 0.22s ease, color 0.22s ease, transform 0.12s ease;
}

.admin-dashboard__nav a:hover {
  border-color: rgba(255, 204, 0, 0.46);
  color: #fff;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.28);
}

.admin-dashboard__nav a.is-active {
  color: #fff;
  border-color: rgba(255, 204, 0, 0.56);
  background:
    linear-gradient(140deg, rgba(255, 204, 0, 0.2), rgba(255, 204, 0, 0.06) 46%, rgba(255, 255, 255, 0.04)),
    rgba(255, 255, 255, 0.02);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.33);
}

.admin-nav-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 21px;
  height: 21px;
  padding: 0 6px;
  border-radius: 999px;
  background: var(--color-yellow);
  color: #101012;
  font-size: 11px;
  font-weight: 800;
  line-height: 1;
  border: 1px solid rgba(255, 204, 0, 0.72);
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.35);
}

.admin-dashboard__content {
  min-width: 0;
}

.admin-dashboard .container-wide {
  max-width: 1540px;
  padding-left: 18px;
  padding-right: 30px;
}

.admin-dashboard__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 22px;
  padding: 24px;
  border-radius: 18px;
  background:
    linear-gradient(155deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.02) 64%),
    rgba(10, 12, 16, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.13);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.34);
}

.admin-dashboard__top .section-title {
  margin-bottom: 0.4rem !important;
  text-align: left !important;
  font-size: clamp(2.05rem, 2.8vw, 2.6rem);
  line-height: 1.04;
}

.admin-dashboard__top .section-subtitle {
  margin-bottom: 0 !important;
  text-align: left !important;
  color: rgba(223, 230, 245, 0.82);
}

.admin-dashboard .stats-grid {
  margin-top: 18px !important;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.admin-dashboard .stat-card {
  position: relative;
  overflow: hidden;
  min-height: 148px;
  border-radius: 16px;
  padding: 20px 18px;
  background:
    linear-gradient(158deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.015) 58%),
    rgba(10, 12, 16, 0.86);
  border: 1px solid rgba(255, 255, 255, 0.13);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.32);
}

.admin-dashboard .stat-card::before {
  content: "";
  position: absolute;
  right: -42px;
  top: -34px;
  width: 126px;
  height: 126px;
  border-radius: 50%;
  background: radial-gradient(circle at center, rgba(255, 204, 0, 0.22), rgba(255, 204, 0, 0) 74%);
  pointer-events: none;
}

.admin-dashboard .stat-number {
  font-size: clamp(2rem, 3.2vw, 2.42rem);
  font-weight: 800;
  line-height: 1.04;
  color: #fff;
}

.admin-dashboard .stat-label {
  margin-top: 9px;
  color: rgba(241, 245, 255, 0.93);
  font-weight: 700;
  font-size: 1rem;
}

.admin-dashboard .stat-sublabel {
  margin-top: 4px;
  color: rgba(201, 210, 228, 0.74);
  font-size: 0.9rem;
}

.admin-dashboard__note {
  margin-top: 20px !important;
  padding: 18px 20px;
  border-radius: 14px;
  opacity: 1 !important;
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(235, 241, 252, 0.9);
}

.admin-dashboard__note .admin-dashboard__actions {
  margin-top: 12px !important;
}

.admin-dashboard .form-container {
  border-radius: 16px;
  background:
    linear-gradient(165deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.012) 60%),
    rgba(10, 12, 16, 0.84);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.3);
}

.admin-dashboard .btn-outline {
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.02);
}

.admin-dashboard .btn-outline:hover {
  border-color: rgba(255, 204, 0, 0.46);
  background: rgba(255, 255, 255, 0.08);
}

.admin-message-actions {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
  flex-wrap: wrap;
}

.admin-message-actions form {
  margin: 0;
}

.admin-message-unread-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-left: 8px;
  border-radius: 999px;
  background: var(--color-yellow);
  box-shadow: 0 0 0 2px rgba(255, 204, 0, 0.22), 0 0 10px rgba(255, 204, 0, 0.85);
  vertical-align: middle;
}

@media (max-width: 1180px) {
  .admin-dashboard__layout {
    grid-template-columns: 220px minmax(0, 1fr);
    gap: 20px;
  }

  .admin-dashboard__top {
    flex-direction: column;
    align-items: flex-start;
  }

  .admin-dashboard .stats-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 1024px) {
  .admin-dashboard__layout {
    grid-template-columns: 1fr;
  }

  .admin-dashboard__side {
    position: relative;
    top: auto;
    margin-bottom: 8px;
  }

  .admin-dashboard .stats-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .admin-dashboard .form-container {
    padding: 24px 18px;
  }
}

.admin-dashboard.section {
  padding-top: 10px;
}

/* Remove extra bar below secondary navigation */
.secondary-navigation {
  border-bottom: 0 !important;
  border-top: 0 !important;
  margin-bottom: 0 !important;
  box-shadow: none !important;
  background:
    linear-gradient(120deg, rgba(255, 204, 0, 0.11), rgba(90, 126, 230, 0.12) 58%, rgba(12, 14, 18, 0.86)),
    rgba(12, 14, 18, 0.62) !important;
  padding: 0 !important;
  backdrop-filter: blur(8px) saturate(115%) !important;
  -webkit-backdrop-filter: blur(8px) saturate(115%) !important;
}
.secondary-navigation::after {
  display: none !important;
}
.secondary-navigation + * {
  margin-top: 0 !important;
}
.site-header,
.main-navigation,
.main-navigation .container {
  border-bottom: 0 !important;
  box-shadow: none !important;
}

.main-navigation {
  background:
    linear-gradient(120deg, rgba(255, 204, 0, 0.055), rgba(86, 120, 214, 0.085) 56%, rgba(6, 8, 12, 0.95)),
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0) 34%),
    rgba(7, 9, 13, 0.78) !important;
  backdrop-filter: blur(10px) saturate(120%) !important;
  -webkit-backdrop-filter: blur(10px) saturate(120%) !important;
}
.site-header::after {
  display: none !important;
}
.secondary-navigation .container {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}
.secondary-navigation .secondary-menu {
  margin: 0 !important;
  padding: 6px 0 !important;
}

/* Secondary menu items + dropdowns: match secondary glass bar */
.secondary-navigation .secondary-menu > li > a {
  border: 1px solid transparent;
  border-radius: 14px;
  min-height: 42px;
  padding: 0 14px;
  color: rgba(236, 241, 252, 0.92);
  background: linear-gradient(140deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.015));
  transition: border-color 0.22s ease, background 0.22s ease, color 0.22s ease, box-shadow 0.22s ease;
}

.secondary-navigation .secondary-menu > li > a:hover,
.secondary-navigation .secondary-menu > li:hover > a,
.secondary-navigation .secondary-menu > li.current-menu-item > a,
.secondary-navigation .secondary-menu > li.current-menu-parent > a,
.secondary-navigation .secondary-menu > li.current-menu-ancestor > a,
.secondary-navigation .secondary-menu > li.current_page_item > a,
.secondary-navigation .secondary-menu > li.current_page_parent > a,
.secondary-navigation .secondary-menu > li.current_page_ancestor > a {
  color: var(--color-yellow);
  border-color: rgba(255, 204, 0, 0.38);
  background:
    linear-gradient(140deg, rgba(255, 204, 0, 0.13), rgba(255, 204, 0, 0.04) 42%, rgba(255, 255, 255, 0.04)),
    rgba(255, 255, 255, 0.04);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.secondary-navigation .secondary-menu .menu-item-has-children > a::after {
  opacity: 0.78;
  color: inherit;
}

.secondary-navigation .secondary-menu .sub-menu {
  top: calc(100% + 8px);
  min-width: 220px;
  padding: 10px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background:
    linear-gradient(135deg, rgba(255, 204, 0, 0.11), rgba(90, 126, 230, 0.12) 56%, rgba(8, 10, 14, 0.98)),
    rgba(10, 12, 16, 0.95);
  box-shadow: 0 20px 44px rgba(0, 0, 0, 0.62);
  backdrop-filter: blur(24px) saturate(138%);
  -webkit-backdrop-filter: blur(24px) saturate(138%);
}

.secondary-navigation .secondary-menu .sub-menu a {
  color: rgba(238, 242, 252, 0.92);
  border: 1px solid transparent;
  border-radius: 11px;
  min-height: 34px;
  padding: 6px 12px;
  background: linear-gradient(140deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.015));
}

.secondary-navigation .secondary-menu .sub-menu li + li {
  margin-top: 6px;
}

.secondary-navigation .secondary-menu .sub-menu a:hover,
.secondary-navigation .secondary-menu .sub-menu .current-menu-item > a {
  color: var(--color-yellow);
  border-color: rgba(255, 204, 0, 0.3);
  background:
    linear-gradient(140deg, rgba(255, 204, 0, 0.11), rgba(255, 255, 255, 0.04) 46%, rgba(255, 255, 255, 0.02));
}

/* Buy dropdown: 2-column brand list */
.secondary-navigation .secondary-menu > li.menu-item-buy > .sub-menu {
  min-width: 370px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 6px 8px;
}

.secondary-navigation .secondary-menu > li.menu-item-buy > .sub-menu li {
  margin: 0;
}

.secondary-navigation .secondary-menu > li.menu-item-buy > .sub-menu li + li {
  margin-top: 0;
}

.secondary-navigation .secondary-menu > li.menu-item-buy > .sub-menu li.buy-discover-all {
  grid-column: 1 / -1;
  order: 999;
}

.secondary-navigation .secondary-menu > li.menu-item-buy > .sub-menu a {
  width: 100%;
}

.secondary-navigation .secondary-menu > li.menu-item-buy > .sub-menu .buy-brand-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: 100%;
}

.secondary-navigation .secondary-menu > li.menu-item-buy > .sub-menu .buy-brand-icon {
  width: 1.05em;
  height: 1.05em;
  flex: 0 0 1.05em;
  object-fit: contain;
}

.secondary-navigation .secondary-menu > li.menu-item-buy > .sub-menu .buy-brand-text {
  display: inline-block;
}

/* Remove extra header padding gap (green area in devtools) */
.site-header {
  padding: 0 !important;
}
.header-top {
  padding-bottom: 0 !important;
}
.secondary-navigation .container {
  padding-bottom: 0 !important;
}

.admin-dashboard__section {
  display: none;
}
.admin-dashboard__section.is-active {
  display: block;
}

body.xo-modal-open {
  overflow-x: hidden;
  overflow-y: scroll;
}

.xo-modal {
  position: fixed;
  inset: 0;
  z-index: 10050;
  display: none;
  padding: 12px;
}

.xo-modal.is-open {
  display: grid;
  place-items: center;
}

.xo-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
}

.xo-modal__dialog {
  position: relative;
  width: min(560px, calc(100vw - 24px));
  max-width: 100%;
  max-height: calc(100vh - 24px);
  max-height: calc(100dvh - 24px);
  margin: 0;
  padding: 20px;
  border-radius: 16px;
  background: rgba(18, 18, 20, 0.98);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  overflow: auto;
  overscroll-behavior: contain;
}

.xo-modal__close {
  position: absolute;
  right: 10px;
  top: 10px;
  width: 32px;
  height: 32px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.04);
  color: #fff;
  font-size: 18px;
  cursor: pointer;
}

.xo-modal__title {
  margin: 0 36px 8px 0;
  font-size: 1.2rem;
}

.xo-modal__subtitle {
  margin: 0 0 16px;
  color: rgba(255, 255, 255, 0.72);
}

.xo-modal__actions {
  display: flex;
  gap: 10px;
  justify-content: flex-end;
  margin-top: 16px;
  flex-wrap: wrap;
}

.xo-modal__message-body {
  white-space: pre-wrap;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  padding: 12px 14px;
  max-height: min(52vh, 460px);
  overflow: auto;
}

@media (max-width: 640px) {
  .callback-form__grid {
    grid-template-columns: 1fr;
  }

  .xo-modal {
    padding: 10px;
  }

  .xo-modal__dialog {
    width: calc(100vw - 20px);
    width: calc(100dvw - 20px);
    max-height: calc(100vh - 20px);
    max-height: calc(100dvh - 20px);
    padding: 16px;
    border-radius: 14px;
  }

  .xo-modal__close {
    right: 8px;
    top: 8px;
  }
}

/* Single vehicle gallery */
.single-vehicle__details {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.single-vehicle__title {
  margin: 0;
  font-size: clamp(2.1rem, 4vw, 2.85rem);
  font-weight: 800;
  line-height: 1.04;
  color: var(--color-white);
  text-wrap: balance;
}

.single-vehicle__price {
  margin: 0;
  font-size: clamp(2.15rem, 4vw, 2.95rem);
  font-weight: 800;
  line-height: 1;
  color: var(--color-yellow);
}

.single-vehicle__specs-card {
  margin: 6px 0 0;
  padding: 28px;
  border-radius: 16px;
  background-color: var(--color-dark-gray);
  border: 1px solid rgba(255,255,255,0.05);
}

.single-vehicle__specs-offer-code {
  margin: 0 0 10px;
  font-size: 0.78rem;
  line-height: 1.2;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.58);
}

.single-vehicle__section-title {
  margin: 0 0 18px;
  font-size: 1.18rem;
  font-weight: 700;
  line-height: 1.2;
}

.single-vehicle__specs-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px 18px;
}

.single-vehicle__spec-item {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.single-vehicle__spec-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: rgba(255, 204, 0, 0.08);
  border: 1px solid rgba(255, 204, 0, 0.18);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--color-yellow);
  flex: 0 0 52px;
}

.single-vehicle__spec-copy {
  min-width: 0;
  display: grid;
  gap: 2px;
  align-content: center;
}

.single-vehicle__spec-label {
  font-size: 0.84rem;
  line-height: 1.25;
  color: var(--color-text-gray);
}

.single-vehicle__spec-value {
  font-size: 1.02rem;
  line-height: 1.22;
  font-weight: 600;
  color: var(--color-white);
  text-wrap: balance;
}

.single-vehicle__carpass {
  margin: -2px 0 2px;
  padding: 14px 18px;
  border-radius: 16px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  color: var(--color-white);
  text-decoration: none;
  transition: all 0.3s;
}

.single-vehicle__carpass-logo {
  height: 28px;
  width: auto;
  display: block;
}

.single-vehicle__carpass-text {
  font-size: 0.98rem;
  font-weight: 600;
  line-height: 1.2;
}

.single-vehicle__contact-card {
  margin-top: 26px;
  padding: 28px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(255, 204, 0, 0.1) 0%, rgba(26, 26, 26, 0.5) 100%);
}

.single-vehicle__contact-title {
  margin: 0 0 10px;
  font-size: 1.3rem;
  font-weight: 700;
  text-align: center;
}

.single-vehicle__contact-subtitle {
  margin: 0 0 24px;
  color: var(--color-text-gray);
  text-align: center;
}

.single-vehicle__contact-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.single-vehicle__contact-actions .btn {
  min-height: 56px;
  padding: 0 18px;
  font-size: 16px;
  font-weight: 700;
}

.single-vehicle__contact-actions .btn.btn-secondary:hover {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.18), rgba(86, 120, 214, 0.3) 52%, rgba(86, 120, 214, 0.18));
  border-color: rgba(86, 120, 214, 0.58);
}

.vehicle-gallery {
  display: grid;
  gap: 14px;
}
.vehicle-main {
  background-color: var(--color-dark-gray);
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 16/10;
}
.vehicle-main .vehicle-image-btn,
.vehicle-thumb.vehicle-image-btn {
  width: 100%;
  height: 100%;
  border: 0;
  background: transparent;
  padding: 0;
  margin: 0;
  position: relative;
  cursor: pointer;
  display: block;
}
.vehicle-main img,
.vehicle-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.vehicle-thumbs {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}
.vehicle-thumb {
  background-color: var(--color-dark-gray);
  border-radius: 10px;
  overflow: hidden;
  aspect-ratio: 16/10;
}
.vehicle-image-label {
  position: absolute;
  right: 8px;
  bottom: 8px;
  padding: 4px 8px;
  border-radius: 999px;
  background: rgba(0,0,0,0.65);
  border: 1px solid rgba(255, 204, 0, 0.5);
  color: #f6c90e;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.vehicle-main-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Vehicle lightbox */
.vehicle-lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.85);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  padding: 20px;
}
.vehicle-lightbox.is-open { display: flex; }
.vehicle-lightbox__img {
  max-width: min(1100px, 92vw);
  max-height: 82vh;
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}
.vehicle-lightbox__close {
  position: absolute;
  top: 16px;
  left: 16px;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.2);
  background: rgba(0,0,0,0.6);
  color: #fff;
  font-size: 24px;
  cursor: pointer;
}
.vehicle-lightbox__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.2);
  background: rgba(0,0,0,0.6);
  color: #fff;
  font-size: 28px;
  cursor: pointer;
}
.vehicle-lightbox__prev { left: 16px; }
.vehicle-lightbox__next { right: 16px; }
.vehicle-lightbox__download {
  position: absolute;
  right: 22px;
  top: 18px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 204, 0, 0.15);
  border: 1px solid rgba(255, 204, 0, 0.4);
  color: #f6c90e;
  font-weight: 700;
  text-decoration: none;
}

@media (max-width: 992px) {
  .single-vehicle__details {
    gap: 16px;
  }

  .single-vehicle__specs-card {
    padding: 22px;
  }

  .single-vehicle__specs-grid {
    grid-template-columns: 1fr;
  }

  .single-vehicle__contact-card {
    padding: 22px;
  }

  .single-vehicle__contact-actions {
    grid-template-columns: 1fr;
  }
}
/* Offer handler controls */
.admin-handler-form {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 6px;
}

.admin-handler-select {
  min-width: 130px;
  max-width: 180px;
  height: 36px;
}

.admin-handler-assign {
  height: 36px;
  min-width: 78px;
  padding: 0 12px;
}

.admin-handler-label {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.72);
}

/* About values: vertical rectangle cards */
.about-values {
  align-items: stretch;
}

.about-values .wp-block-column {
  display: flex;
  justify-content: center;
}

.about-values .about-value-card {
  width: min(100%, 280px);
  min-height: 300px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

@media (max-width: 1024px) {
  .about-values .about-value-card {
    width: min(100%, 320px);
    min-height: 260px;
  }
}

@media (max-width: 768px) {
  .about-values .wp-block-column {
    justify-content: stretch;
  }

  .about-values .about-value-card {
    width: 100%;
    min-height: 220px;
  }
}

/* About value icons (image assets) */
.about-values .about-value-card::before {
  content: "";
  display: block;
  width: 68px;
  height: 68px;
  margin: 0 auto 22px;
  border: 0 !important;
  border-radius: 0 !important;
  background-color: transparent !important;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  box-shadow: none !important;
  transition: none;
}

.about-values .wp-block-column:nth-child(1) .about-value-card::before {
  background-image: url("images/trust.png");
}

.about-values .wp-block-column:nth-child(2) .about-value-card::before {
  background-image: url("images/best_price.png");
}

.about-values .wp-block-column:nth-child(3) .about-value-card::before {
  background-image: url("images/best_service.png");
}

.about-values .wp-block-column:nth-child(4) .about-value-card::before {
  background-image: url("images/trophy.png");
}

.about-values .wp-block-column:nth-child(4) .about-value-icon {
  display: none;
}

.about-values .about-value-card::after {
  content: none !important;
  display: none !important;
}

.about-values .about-value-icon {
  width: 68px;
  height: 68px;
  margin: 0 auto 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  transition: none;
}

.about-values .about-value-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  border: 0 !important;
  box-shadow: none !important;
}

.about-values .about-value-card:hover::before,
.about-values .about-value-card:hover .about-value-icon {
  transform: none;
  box-shadow: none !important;
}

/* About page desktop sizing + responsive layout refinements */
.page-template-page-about .page-content .about-page-shell {
  max-width: 1440px;
  padding-inline: clamp(18px, 2.6vw, 30px);
}

.page-template-page-about .about-card {
  position: relative;
  margin: 18px auto 34px;
  padding: 0;
  max-width: 1360px;
  background:
    radial-gradient(1200px 480px at -10% -30%, rgba(255, 204, 0, 0.12), transparent 58%),
    linear-gradient(145deg, rgba(22, 24, 30, 0.98), rgba(16, 18, 24, 0.98));
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: 0 28px 70px rgba(0,0,0,0.42);
}

.page-template-page-about .about-card .about-cinematic {
  margin: 0;
}

.page-template-page-about .about-card .about-cinematic__media {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: #090b10;
}

.page-template-page-about .about-card .about-cinematic__content {
  left: clamp(24px, 3vw, 38px);
  right: clamp(24px, 3vw, 38px);
  bottom: clamp(22px, 3vw, 38px);
  max-width: 560px;
}

.page-template-page-about .about-card .about-cinematic__title {
  font-size: clamp(26px, 2.5vw, 42px);
  text-wrap: balance;
}

.page-template-page-about .about-card > p {
  width: auto;
  margin: 0;
  font-size: clamp(0.98rem, 0.92vw, 1.05rem);
  line-height: 1.64;
  color: rgba(255,255,255,0.84);
}

.page-template-page-about .about-quote {
  width: min(100%, 1160px);
  padding: 20px 28px;
}

.page-template-page-about .about-values {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(16px, 2vw, 24px);
  align-items: stretch;
  margin: 16px 0 32px;
}

.page-template-page-about .about-values > .wp-block-column {
  margin: 0 !important;
}

.page-template-page-about .about-values .wp-block-column {
  display: flex;
}

.page-template-page-about .about-values .about-value-card {
  width: 100%;
  max-width: none;
  min-height: clamp(250px, 21vw, 320px);
  padding: 30px 22px;
}

.page-template-page-about .about-timeline-block {
  max-width: 1360px;
  margin: 54px auto 60px;
}

@media (min-width: 1100px) {
  .page-template-page-about .page-content {
    padding-top: 16px;
    padding-bottom: 52px;
  }

  .page-template-page-about .about-hero {
    padding: 0 0 8px;
  }

  .page-template-page-about .about-hero h2 {
    margin: 0;
    font-size: clamp(32px, 2.9vw, 52px);
  }

  .page-template-page-about .about-card {
    display: grid;
    grid-template-columns: minmax(0, 1.14fr) minmax(360px, 0.86fr);
    grid-template-rows: auto auto;
    align-items: stretch;
    min-height: min(58vh, 520px);
  }

  .page-template-page-about .about-card .about-cinematic {
    grid-column: 1;
    grid-row: 1 / span 2;
    min-height: min(58vh, 520px);
    border-right: 1px solid rgba(255,255,255,0.08);
  }

  .page-template-page-about .about-card .about-cinematic__overlay {
    background:
      linear-gradient(115deg, rgba(0,0,0,0.68) 0%, rgba(0,0,0,0.26) 48%, rgba(0,0,0,0.62) 100%),
      radial-gradient(90% 120% at 0% 0%, rgba(255, 204, 0, 0.18), transparent 52%);
  }

  .page-template-page-about .about-card > p {
    grid-column: 2;
    padding-inline: clamp(28px, 3vw, 44px);
  }

  .page-template-page-about .about-card > .about-cinematic + p {
    display: flex;
    align-items: flex-end;
    padding-top: clamp(30px, 4vh, 44px);
    padding-bottom: 16px;
    border-top: 0;
  }

  .page-template-page-about .about-card > .about-cinematic + p strong {
    display: block;
    font-size: clamp(1.34rem, 1.5vw, 1.72rem);
    line-height: 1.42;
    color: #f4f4f2;
  }

  .page-template-page-about .about-card > p:last-child {
    display: flex;
    align-items: flex-start;
    padding-top: 16px;
    padding-bottom: clamp(30px, 4vh, 42px);
    border-top: 1px solid rgba(255,255,255,0.10);
  }
}

@media (max-width: 1200px) {
  .page-template-page-about .page-content .about-page-shell {
    max-width: 1320px;
  }

  .page-template-page-about .about-card {
    max-width: 1240px;
  }

  .page-template-page-about .about-values {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 1099px) {
  .page-template-page-about .page-content {
    padding-top: 26px;
  }

  .page-template-page-about .about-card {
    padding: 0 22px 22px;
  }

  .page-template-page-about .about-card .about-cinematic {
    margin: 0 -22px;
    border-radius: 18px 18px 0 0;
  }

  .page-template-page-about .about-card .about-cinematic__media {
    height: clamp(280px, 42vw, 420px);
  }

  .page-template-page-about .about-card > p {
    width: min(900px, 100%);
    margin-left: auto;
    margin-right: auto;
  }

  .page-template-page-about .about-card > .about-cinematic + p {
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid rgba(255,255,255,0.10);
  }
}

@media (max-width: 782px) {
  .page-template-page-about .page-content .about-page-shell {
    padding-inline: 16px;
  }

  .page-template-page-about .about-card {
    padding: 0 16px 18px;
    padding-bottom: 18px;
  }

  .page-template-page-about .about-card .about-cinematic {
    margin: 0 -16px;
  }

  .page-template-page-about .about-card .about-cinematic__media {
    height: clamp(220px, 32dvh, 300px);
    object-fit: cover;
  }

  .page-template-page-about .about-card .about-cinematic__content {
    max-width: 100%;
  }

  .page-template-page-about .about-card > p,
  .page-template-page-about .about-quote {
    width: 100%;
    max-width: 100%;
  }

  .page-template-page-about .about-values {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .page-template-page-about .about-values .about-value-card {
    min-height: 220px;
  }
}

/* Keep Contact/Sell page headings aligned with other top-level page headings. */
.page-template-page-contact .contact-section {
  padding-top: 50px;
}

.page-template-page-sell-your-car .form-section {
  padding-top: 50px;
}

.page-template-template-contact .page-hero,
.page-template-template-sell .page-hero {
  padding-top: 50px;
}

.page-template-template-contact-php .page-hero,
.page-template-template-sell-php .page-hero {
  padding-top: 50px;
}

.page-template-page-contact-php .contact-section,
.page-template-page-sell-your-car-php .form-section {
  padding-top: 50px;
}

/* Blog index */
.blog-list {
  padding: 30px 0 80px;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  align-items: stretch;
}

@media (max-width: 1100px) {
  .blog-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 700px) {
  .blog-grid {
    grid-template-columns: 1fr;
  }
}

.blog-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  border-radius: 18px;
  overflow: hidden;
  background: linear-gradient(170deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.02));
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.34);
}

.blog-card__thumb {
  display: block;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #0d0f14;
}

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

.blog-card:hover .blog-card__thumb img {
  transform: scale(1.04);
}

.blog-card__thumb--placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(130deg, rgba(255, 204, 0, 0.12), rgba(86, 120, 214, 0.12) 56%, rgba(14, 16, 22, 0.95));
}

.blog-card__body {
  padding: 18px 18px 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

.blog-card__title {
  margin: 0;
  font-size: clamp(1.15rem, 1.7vw, 1.45rem);
  line-height: 1.3;
}

.blog-card__title a {
  color: #ffffff;
}

.blog-card__meta {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.92rem;
}

.blog-card__excerpt {
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.65;
}

.blog-card__excerpt p:last-child {
  margin-bottom: 0;
}

.blog-card__cta {
  margin-top: auto;
  align-self: flex-start;
}

/* Single post */
.single-post-main {
  padding: 22px 0 88px;
}

.single-post-main__container {
  max-width: 1200px;
}

.single-post-hero {
  padding-top: 42px;
  padding-bottom: 26px;
}

.single-post-hero__inner {
  max-width: 980px;
  margin: 0 auto;
}

.single-post-hero .page-title {
  max-width: 100%;
  line-height: 1.15;
  margin-top: 6px;
  font-size: clamp(1.55rem, 3.2vw, 2.75rem);
  text-wrap: balance;
}

.single-post-hero__back {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.05);
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.9rem;
  font-weight: 600;
}

.single-post-hero__back:hover {
  border-color: rgba(255, 204, 0, 0.52);
  color: #ffffff;
}

.single-post-hero__meta {
  margin: 14px 0 8px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.95rem;
}

.single-post-article {
  max-width: 980px;
  margin: 0 auto;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: linear-gradient(170deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.02));
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.38);
  overflow: hidden;
}

.single-post-article__thumb {
  margin: 0;
  max-height: 500px;
  overflow: hidden;
}

.single-post-article__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.single-post-article__content {
  padding: 34px 24px 34px;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.75;
  font-size: 1.05rem;
}

.single-post-article__content > * {
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.single-post-article__content h2,
.single-post-article__content h3,
.single-post-article__content h4 {
  margin-top: 1.5em;
  margin-bottom: 0.6em;
  color: #ffffff;
}

.single-post-article__content h2 {
  font-size: clamp(1.6rem, 2.3vw, 2rem);
}

.single-post-article__content p {
  margin: 0 0 1em;
  color: rgba(255, 255, 255, 0.86);
}

.single-post-article__content ul,
.single-post-article__content ol {
  margin: 0 0 1.2em 1.3em;
}

.single-post-article__content figure,
.single-post-article__content .wp-block-image,
.single-post-article__content .wp-block-cover,
.single-post-article__content .wp-block-gallery {
  max-width: 100%;
  margin: 1.4rem auto;
}

.single-post-article__content img {
  border-radius: 14px;
  width: 100%;
  height: auto;
  max-height: min(62vh, 560px);
  object-fit: cover;
}

.single-post-article__content .wp-block-button {
  margin-top: 1.1rem;
}

.single-post-article__content .alignwide,
.single-post-article__content .alignfull {
  max-width: 100%;
  margin-left: 0;
  margin-right: 0;
}

.xo-footer-award {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.xo-footer-award img {
  width: auto;
  height: 56px;
  object-fit: contain;
}

@media (max-width: 768px) {
  .single-post-hero .page-title {
    font-size: clamp(1.4rem, 7vw, 2rem);
  }

  .single-post-article__content {
    padding: 24px 18px 28px;
    font-size: 1rem;
  }

  .single-post-article__content img {
    max-height: 46vh;
  }
}
