/* ========== Root variables ========== */
:root {
    --bg-top: #05141f;
    --ink-dark: #000000;
    --ink-light: #e5e7eb;
    --line: #e5e7eb;
    --brand: #e11d2e;
    --footer-bg: #05141f;
}

@font-face {
    font-family: 'kiaM';
    src: url('../fonts/KiaSignatureRegular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'kiaB';
    src: url('../fonts/KiaSignatureBold.woff2') format('woff2');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

body {
    font-family: 'kiaM';
}

p {
    font-family: 'kiaM';
    font-weight: normal;
    font-size: 14px;
}

h1 {
  font-size: 4vh;
}
h2 {
  font-size: 3vh;
}
h3 {
  font-size: 2.8vh;
}
h4 {
  font-size: 2.5vh;
}
h5 {
  font-size: 2vh;
}
h6 {
  font-size: 1vh;
}

a, button {
    text-decoration: none;
    transition: all 0.5s ease;
}

/* ========== Container Utility ========== */
.container {
    max-width: 1200px;
    margin: 0 auto;
}

/* ========== Topbar ========== */
.nav-top {
    background: var(--bg-top);
    color: #cbd5e1;
    font-size: 0.75rem;
    font-family: 'kiaB';
    border-bottom: 1px solid rgba(255,255,255,.06);
}

@media (max-width: 768px) {
    .nav-top {
        display: none;
    }
    #navMobile .nav-top {
        display: block;
        background: #f9fafb;
        color: #111827;
        border-bottom: 1px solid #e5e7eb;
    }
    #navMobile .nav-top .link {
        color: #111827;
    }
}

.top-links-left li {
    position: relative;
    display: inline-flex;
    align-items: center;
}

.top-links-left li:not(:last-child)::after {
    content: "|";
    margin: 0 8px;
    color: #999;
    font-size: 0.9em;
    line-height: 1;
}

.top-links-left li a.link {
    color: #999;
    text-decoration: none;
    font-size: 1.6vh;
    font-weight: 700;
}
.top-links-left li a.link:hover {
    color: #fff;
}

#searchWrapper {
    position: relative;
}
#searchForm input {
    width: 100px;
    height: 17px;
    border: none;
    background-color: var(--bg-top);
    color: #ddd;
    border: 1px #ddd solid;
}
#searchForm input:focus {
    outline: none;
}

/* ========== Main Navbar ========== */
/* Standard: solid/white everywhere */
.nav-main {
    background: #ffffff;
    color: var(--ink-dark);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 4px 20px rgba(0,0,0,.06);
}

/* Logo default (visible in black) */
.logo-light {
    display: none;
}
.logo-dark  {
    display: block;
}


/* Only on pages with body class .nav-transparent:
    Transparency applies ONLY as long as .active / :hover / .scrolled is not used */
.nav-transparent .nav-main:not(.active):not(:hover):not(.scrolled) {
    background: transparent;
    color: var(--ink-light);
    border-bottom: 1px solid rgba(255,255,255,0.6);
    box-shadow: none;
}

/* Logo exchange in transparent state */
.nav-transparent .nav-main:not(.active):not(:hover):not(.scrolled) .logo-light {
    display: block;
}
.nav-transparent .nav-main:not(.active):not(:hover):not(.scrolled) .logo-dark  {
    display: none;
}

/* As soon as active/hover/scrolled -> again white + black logo */
.nav-main.active,
.nav-main:hover,
.nav-main.scrolled {
    background: #ffffff;
    color: var(--ink-dark);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 4px 20px rgba(0,0,0,.06);
}

/* When navbar is scrolled OR hovered → show black logo */
.nav-main.scrolled .logo-light,
.nav-main.active .logo-light,
.nav-main:hover .logo-light {
    display: none;
}
.nav-main.scrolled .logo-dark,
.nav-main.active .logo-dark,
.nav-main:hover .logo-dark {
    display: block;
}
.nav-main .brand .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--brand);
    display: inline-block;
}

/* Main Menu Links */
.nav-main .item {
  position: relative;
  color: inherit;
  font-size: 2.2vh;
  text-decoration: none;
  padding-bottom: 4px;
  cursor: pointer;
}

/* Underline element (hidden by default) */
.nav-main .item::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background: currentColor;
    transition: width 0.3s ease;
}
/* On Hover → Animate underline */
.nav-main .item:hover::after,
.nav-main a:hover::after {
   width: 100%;
}
/* Active Link → Underline always visible */
.nav-main .item.is-active::after,
.nav-main a.is-active::after {
   width: 100%;
}


/* Scroll State */
.nav-main.scrolled {
    background: #ffffff;
    color: var(--ink-dark);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 4px 20px rgba(0,0,0,.06);
}
.nav-main.scrolled .item,
.nav-main.scrolled a,
.nav-main.scrolled .brand span {
    color: var(--ink-dark) !important;
}

/* ========== Mobile Menu ========== */
#navMobile {
    border-top: 1px solid #e5e7eb;
    border-bottom: 1px solid #e5e7eb;
    position: fixed;
    left: 0;
    right: 0;
    top: var(--navwrap-h, 80px);
    max-height: calc(100vh - var(--navwrap-h, 80px));
    overflow-y: auto;
    z-index: 9500;
    background: #fff;
}
.navMobile a:not(.filter-link) {
    display: block;
    padding: 10px 16px;
    border-bottom:1px solid #ebe6e7;
    color: inherit;
    text-decoration: none;
    font-weight: 500;
}
.navMobile a:hover {
    background: rgba(0,0,0,.04);
}
#navMobile .hidden{
    display: none !important;
}

/* ===== HERO SLIDER ===== */
.hero-slider {
    position: relative;
}
.hero-slider .mainPrev,
.hero-slider .mainNext {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 20;
    border: none;
    background: none;
    padding: 0;
    cursor: pointer;
}
.hero-slider .mainPrev {
    left: 16px;
}
.hero-slider .mainNext {
    right: 16px;
}
.hero-slider .mainPrev img,
.hero-slider .mainNext img {
    width: 85px; 
    height: 85px;
    display: block;
    overflow-clip-margin: content-box;
    overflow: clip;
}

@media (max-width: 768px) {
    .hero-slider .mainPrev img,
    .hero-slider .mainNext img {
        width: 50px;
        height: 50px;
    }
}

/* Hover Effect */
.hero-slider .mainPrev,
.hero-slider .mainNext {
    border-radius: 100%;
}
.hero-slider .mainPrev:hover,
.hero-slider .mainNext:hover {
    border-radius: 100%;
    background: rgba(0,0,0);
}
.hero-slider .dots {
    position:absolute;
    left:50%;
    transform:translateX(-50%);
    bottom:24px;
    display:flex;
    gap:10px;
    z-index:10;
}

.hero-slider .dot {
    width: 45px;
    height: 5px;
    margin: 0 4px;
    background: #fff;
    opacity: .4;
    cursor: pointer;
}
.hero-slider .dot.is-active {
    background:#fff;
    opacity: 1;
}
.hero-slider .slide {
    position:absolute;
    inset: 0;
    opacity:0;
    transition: opacity .45s ease;
}
.hero-slider .slide.is-active {
    opacity:1;
}
.hero-slider .slide .bg-img {
    position:absolute;
    inset:0;
    width:100%;
    height:100%;
    object-fit:cover;
}
.hero-slider .slide::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.3);
    z-index: 5;
}
.hero-slider .slide .caption {
    position: absolute;
    inset: 0;
    top: 55vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    z-index: 10;
    padding: 0 1rem;
    gap: 18px;
}
@media (max-width: 767px) {
    .hero-slider .slide .caption {
        top: 0vh;
    }
}

.hero-slider .slide .caption .title {
    color:#fff;
    font-weight:600;
    font-size: 6vh;
    text-shadow:0 2px 30px rgba(0,0,0,.45);
    line-height:1.2;
}
@media (max-width: 767px) {
    .hero-slider .slide .caption .title {
        font-size: 3vh;
    }
}
.hero-slider .slide .caption .cta {
    padding:2.5vh 4.5vh;
    margin-top: 4vh;
    background:#fff;
    color:#111;
    font-weight:600;
    text-decoration:none;
    transition: all 0.5s ease;
}
@media (max-width: 767px) {
    .hero-slider .slide .caption .cta {
        padding:1.5vh 3.5vh;
        margin-top: 4vh;
        background:#fff;
        color:#111;
        font-weight:600;
        text-decoration:none;
        transition: all 0.5s ease;
    }
}

.hero-slider .slide .cta:hover {
    background:#111;
    color:#FFF;
}


/* ===== 4 SECTIONS (Below Home Slider) ===== */
.tile-label {
    position:absolute;
    left:3rem;
    bottom:2rem;
    color:#fff;
}
.tile-title {
    font-weight: 600;
    margin-top: 15px;
    font-size: 3vh;
}
.tile-title-xl {
    font-size: 5vh;
    margin-bottom: 2vh;
}
.tile-sub {
    position: relative;
    display: inline-block;
    font-size: 1.8vh;
    font-weight: 600;
    opacity: .95;
    margin-top: 4px;
    letter-spacing: .02em;
}
.tile-sub::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 0;
    height: 2px;
    background: currentColor;
    transition: width 0.3s ease;
}
.tile-sub:hover::after {
    width: 100%;
}
.tile-solid {
    position:relative;
    display:block;
    background:#1e2b35;
    color:#fff;
    min-height:180px;
    height:100%;
    padding:0;
    display: flex;
    place-items: center;
    text-align: center;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.tile-light {
    position:relative;
    background:#ffffff;
    color:#111827;
    min-height:180px;
    height:100%;
    padding:0;
    border:1px solid #e5e7eb;
    display: flex;
    place-items: center;
    text-align: center;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.tile-center {
    place-items: center;
    text-align: center;
}

/* ========== Footer ========== */
.footer {
    width: 100%;
    background: var(--footer-bg);
    color: #9ca3af;
    font-size: 0.875rem;
    padding-top: 8vh;
}
.footer a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}
.footer a:hover {
    color: #fff;
}
.footer h3 {
    font-size: 2vh;
    margin-bottom: 0.75rem;
}
.footer ul li {
    font-size: 1.8vh;
    line-height: 1.6;
}

/* ===== WhatsApp Floating Button ===== */
.whatsapp-float {
  position: fixed;
  bottom: 50px;
  right: 22px;
  width: 56px;
  height: 56px;
  background-color: #25D366;
  border-radius: 50%;
  box-shadow: 0 3px 12px rgba(0,0,0,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.whatsapp-float:hover {
  transform: scale(1.08);
  box-shadow: 0 4px 14px rgba(0,0,0,0.3);
}

@media (max-width: 768px) {
  .whatsapp-float {
    width: 50px;
    height: 50px;
    bottom: 18px;
    right: 18px;
  }
}

/* Content */
#content {
    position: relative;
    display: block;
    padding-top: 20vh;
    background-color: #eee;
}
@media (max-width: 767px) {
    #content {
        padding-top: 100px;
    }
}
#content-features {
    position: relative;
    display: block;
    padding-top: 115px;
    background-color: #eee;
}
.content-container {
    width: 70%;
    margin: 0 auto;
}
@media (max-width: 768px) {
    .content-container {
        width: 95%;
    }
    #content-features {
        padding-top: 80px;
    }
}
#content .con_tit {
    display: block;
    font-weight: bold;
    text-transform: uppercase;
}
#content .con_tit:after {
    content: "";
    display: block;
    width: 80px;
    height: 1px;
    background: #000;
    margin-top: 18px;
    margin-bottom: 18px;
}
.content-text-wrapper {
    display: block;
    padding: 2vh 0;
    margin:  2% 0;
}
.content-desc {
    display: block;
    margin: 0 auto;
    font-size: 13px;
    font-weight: normal;
    font-family: 'KiaM';
    line-height: 1.7;
    color: #333;
}

/* Headings */
.content-desc h1,
.content-desc h2,
.content-desc h3,
.content-desc h4,
.content-desc h5,
.content-desc h6 {
    font-weight: 700;
    line-height: 1.3;
    margin-top: 2.5vh;
    margin-bottom: 1.2vh;
    color: #111;
}
.content-desc h1 {
    font-size: 4vh !important;
}
.content-desc h2 {
    font-size: 3vh !important;
}
.content-desc h3 {
    font-size: 2vh !important;
}
.content-desc h4 {
    font-size: 1.8vh !important;
}
.content-desc h5 {
    font-size: 1.5vh !important;
}
.content-desc h6 {
    font-size: 1.3vh !important;
}

/* Paragraphs */
.content-desc p {
    font-size: 1.8vh !important;
    margin-bottom: 2vh !important;
}

/* Lists */
.content-desc ul,
.content-desc ol {
    margin: 2vh 3vh;
    list-style-type: disc;
}
.content-desc li {
    margin-bottom: 0;
}

/* Links */
.content-desc a {
    text-decoration: none;
    transition: color .2s ease;
}
.content-desc a:hover {
    color: #a00;
}

/* Blockquotes */
.content-desc blockquote {
    margin: 2vh 0;
    padding: 1.5vh 2vh;
    border-left: 4px solid #d71920;
    background: #f9f9f9;
    font-style: italic;
    color: #555;
}

/* Tables */
.content-desc table {
    width: 100%;
    border-collapse: collapse;
    margin: 2vh 0;
    font-size: 0.95em;
}
.content-desc th,
.content-desc td {
    border: 1px solid #ddd;
    padding: 0.8em;
    text-align: left;
}
.content-desc th {
    background: #f3f3f3;
    font-weight: 600;
}
.content-desc tr:nth-child(even) {
    background: #fafafa;
}

/* Images */
.content-desc img {
    max-width: 100%;
    height: auto;
}

/* ----- Tabs ----- */
.promo-tabs {
    border: 1px solid #ccc;
    padding: 4px;
}
.promo-tab {
    appearance: none;
    border: 0;
    background: transparent;
    font-size: 1.6vh;
    font-weight: 700;
    letter-spacing: .02em;
    padding: 5px 12px;
    border-radius: 999px;
    color: #6b7280;
    cursor: pointer;
    transition: all .18s ease;
}
.promo-tab.is-active {
    background: #0f172a;
    color: #fff;
}
.promo-tab:not(.is-active):hover {
    color: #111;
}

/* ----- Panels ----- */
.promo-panel {
    display: none;
}
.promo-panel.is-active {
    display: block;
}

/* ----- Card ----- */
.promo-card {
    display: block;
    text-decoration: none;
    color: inherit;
    transition: transform .15s ease, box-shadow .15s ease;
}
.promo-card:hover .promo-meta {
    background: #000;
}
.promo-card:hover .promo-title {
    color: #fff;
}
.promo-card:hover .promo-expiry {
    color: #fff;
}
/* Image area */
.promo-media {
    width: 90%;
    margin: 0 auto;
    aspect-ratio: 1 / 1;
    overflow: hidden;
}
.promo-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.promo-meta {
    position: relative;
    background: #fff;
    box-shadow: 0 1px 2px rgba(0,0,0,.04);
    padding: 20px 22px;
    margin-top: 0;
}
.promo-meta p, span {
    color: #05141f;
    border: none;
    text-decoration: none;
}
.promo-title {
    text-align: center;
    font-weight: 800;
    color: #05141f;
    margin-bottom: 10px;
    border: none;
}
.promo-expiry {
    display: block;
    text-align: center;
    color: #6b7280;
    font-weight: normal;
    font-size: 1.8vh;
    border: none;
}
.promo-plus {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 36px;
    height: 36px;
    background: #000;
    color: #fff;
    display: grid;
    place-items: center;
    font-size: 22px;
    line-height: 1;
    pointer-events: none;
}

/* Container - LOCATION */
.sc-wrap {
    border:1px solid #d1d5db;
    background:#fff;
    padding:0 0 18px;
    margin-bottom: 8%;
    border-radius:2px;
}

/* Tabs */
.sc-tabs {
    display: flex;
    gap: 2px;
    margin: 3% 0 0;
}
.sc-tab {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(5,20,31,.4);
    color: #fff !important;
    border: none;
    cursor: pointer;
    padding: 12px 10px;
    font-weight: 700;
    box-shadow: inset 0 -1px 0 rgba(0,0,0,.08);
}
.sc-tab i {
    opacity: .95;
}
.sc-tab span {
    color: #fff;
    white-space: nowrap;
}
.sc-tab:is(:hover,:focus-visible) {
    filter: brightness(.95);
}
.sc-tab.is-active {
    background: #0a1720;
    color: #fff;
}
.sc-tab.is-active span {
    color: #fff;
}

/* Panels */
.sc-panel {
    display:none;
    padding:0 18px 18px
}
.sc-panel.is-active {
    display:block
}

/* Search Row */
.sc-search {
    padding:14px 8px;
}
@media (max-width: 768px) {
    .sc-search {
        display: flex;
        flex-direction: column;
    }
    .sc-search-box {
        display: block !important;
    }
    .sc-search-box input {
        width: 100%;
        height: 60px !important;
        margin: 0;
    }
    .sc-search-label {
        display: none !important;
    }
    .sc-search-btn {
        width: 100%;
        margin: 2% 0;
    }
}
.sc-search-label {
    display: block;
    font-weight: 800;
    color: #111827;
    margin: 10px 0
}
.sc-search-box {
    display: flex;
    gap: 12px;
    align-items: center;
}
.sc-search-box input {
    flex: 1;
    height: 42px;
    border: 1px solid #d1d5db;
    border-radius: 4px;
    padding: 0 14px;
    font-size: 14px;
    outline: none;
    background: #fff;
}
.sc-search-box input::placeholder {
    color: #9ca3af;
}
.sc-search-btn{
    height: 42px;
    padding: 0 18px;
    background: #0a1720;
    color: #fff;
    font-weight: 800;
    border: none;
    border-radius: 22px;
    cursor: pointer;
}

/* Tiles */
.sc-tiles {
    display: grid;
    grid-template-columns: repeat(3,minmax(0,1fr));
    gap: 18px;
    padding: 10px 0 6px;
}
.sc-tile {
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 118px;
    border: 1px solid #d1d5db;
    border-radius: 2px;
    background: linear-gradient(#f8fafc,#eef2f7);
    color: #111827;
    text-decoration: none;
    gap: 10px;
    font-size: 13px;
}
.sc-tile i {
    font-size:28px;
    color:#2b3845;
    opacity:.9
}
.sc-tile span {
    font-weight:600
}
.sc-tile:hover {
    box-shadow:0 2px 10px rgba(0,0,0,.08);
    transform:translateY(-1px)
}

/* Placeholder for other Tabs */
.sc-placeholder{padding:24px;color:#6b7280}

@media (max-width: 1100px){
    .sc-tabs {
        flex-wrap: wrap;
    }
}

@media (max-width: 520px){
    .sc-tab {
        flex:1 1 auto;
        justify-content:center
    }
    .sc-tiles {
        grid-template-columns: repeat(2,minmax(0,1fr));
    }
}


/* Tiles */
.sc-tile {
  display: grid;
  place-items: center;
  gap: 10px;
  padding: 18px 10px;
  background: linear-gradient(#f7f7f7, #eee);
  border: 2px solid #d6d6d6;
  border-radius: 4px;
  color: #111;
  text-decoration: none;
  font-weight: 600;
}
.sc-tile i {
    font-size: 26px;
    opacity: .9; 
}
.sc-tile.is-active {
    border-color: #111;
    box-shadow: inset 0 0 0 2px #111;
}

/* Results */
.sc-results {
    margin-top: 22px;
}

/* pill tabs (List / Map) */
.sc-view-tabs {
    display: inline-flex;
    gap: 0;
    border: 1px solid #cfd3d7;
    border-radius: 999px;
    overflow: hidden;
    margin-bottom: 14px;
    background: #fff;
    padding: 0.5%;
}

.sc-view {
    padding: 8px 16px;
    font-size: 14px;
    font-weight: normal;
    border: 0;
    background: transparent;
    cursor: pointer;
}
.sc-view.is-active {
    background: #111;
    color: #fff;
}

/* Panels */
.sc-view-panel {
    display: none;
}
.sc-view-panel.is-active {
    display: block;
}

/* Table */
.sc-table-wrap {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    overflow: auto;
}
.sc-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 900px;
}
.sc-table thead th {
    background: #f7f7f7;
    text-align: left;
    padding: 12px 14px;
    font-weight: normal !important;
    border-bottom: 1px solid #e5e7eb;
    border-right: 1px solid #eef0f2;
    font-size: 14px;
    white-space: nowrap;
}
.sc-table tbody td {
    padding: 14px;
    font-size: 12px;
    font-weight: normal !important;
    vertical-align: top;
    border-top: 1px solid #eef0f2;
    border-right: 1px solid #eef0f2;
}
.sc-table thead th:last-of-type {
    border-right: 0 solid #eef0f2;
}
.sc-table tbody td:last-of-type {
    border-right: 0 solid #eef0f2;
}
.sc-tools a {
    color: #0b5bd3;
    text-decoration: none;
}
.sc-tools a:hover {
    text-decoration: underline;
}

/* Map Placeholder */
.sc-map-placeholder {
    height: 320px;
    display: grid;
    place-items: center;
    color: #6b7280;
    background: #f3f4f6;
    border: 1px dashed #cbd5e1;
    border-radius: 8px;
}

/* ===== Parts Page (scoped) ===== */
.parts-wrap {
    padding: 0;
}
.parts-head {
    display:flex;
    align-items:center;
    gap:10px;
    border-bottom:1px solid #e5e7eb;
    padding-bottom:8px;
    margin-bottom:14px;
}
.parts-head .collapse-ico {
    opacity:.0;
    pointer-events:none;
    background:none;
    border:0;
    font-size:14px
}
.parts-title {
    font-size:2.4vh;
    font-weight:800;
    letter-spacing:.02em
}
.parts-desc {
    color:#4b5563;
    font-size:1.6vh;
    line-height:1.6;
    margin:8px 0 14px
}
.parts-desc p {
    margin:6px 0
}

.parts-form {
    border:1px solid #e5e7eb;
    background:#fff
}
.parts-form .row {
    display:grid; grid-template-columns: 220px 1fr;
    align-items:center; border-bottom:1px solid #e5e7eb;
}
.parts-form .row:last-of-type {
    border-bottom:0;
}
.parts-form .label {
    padding:14px 16px;
    background:#f9fafb;
    border-right:1px solid #e5e7eb;
    font-weight:600;
    color:#111827;
}
.parts-form .label .req {
    color:#e11d2e;
    margin-left:4px;
}
.parts-form .label .hint {
    display:block;
    color:#6b7280;
    font-weight:400;
    margin-top:4px;
}

.parts-form .field {
    padding:10px;
}
.parts-form input[type="text"],
.parts-form input[type="email"],
.parts-form input[type="tel"],
.parts-form textarea {
    width:100%;
    border:1px solid #e5e7eb;
    border-radius:4px;
    padding:6px 14px;
    font-size:13px;
    outline:none;
    background:#fff;
}
.parts-form textarea {
    resize:vertical;
}
.parts-form input:focus,
.parts-form textarea:focus {
    border-color:#111; 
    box-shadow:0 0 0 2px rgba(0,0,0,.05);
}

.parts-form .row--area .field {
    position:relative;
}
.parts-form .counter {
    position:absolute;
    right:18px;
    bottom:0;
    font-size:12px;
    color:#6b7280;
}

/* Buttons */
.parts-form .actions {
    display:flex; gap:10px; justify-content:flex-end;
    padding:14px; border-top:1px solid #e5e7eb; background:#f9fafb;
}
.btn {
    display:inline-flex;
    align-items:center;
    gap:8px;
    padding:10px 16px;
    border-radius:999px;
    font-weight:700;
    text-transform:uppercase;
    letter-spacing:.02em;
}
.btn-ghost {
    background:#e5e7eb;
    color:#111;
    text-decoration:none;
}
.btn-ghost:hover {
    filter:brightness(0.97);
}
.btn-primary {
    background:#111;
    color:#fff;
    border:0;
    cursor:pointer;
}
.btn-primary:hover {
    opacity:.9;
}

/* Small screens */
@media (max-width: 768px) {
    .parts-form .row {
        grid-template-columns: 1fr;
    }
    .parts-form .label {
        border-right:0;
    }
}


/* ===== Service Center – MAP VIEW ===== */
/* ===== Service Center – MAP VIEW (base) ===== */
.sc-map-wrap{
  display:flex;
  gap:20px;
  align-items:stretch;
  border:1px solid #e5e7eb;
  background:#fff;
  padding:16px;
  min-height:480px;
}

.sc-map-list{
  width:360px;
  max-width:40%;
  overflow:auto;
  border-right:1px solid #e5e7eb;
  padding:0 12px 0 0; /* fix: war "padding-right: 5px 12px;" */
}

.sc-map-card{
  display:grid;
  grid-template-columns:48px 1fr;
  gap:12px;
  padding:14px;
  border:1px solid #e5e7eb;
  background:#fafafa;
  margin-bottom:12px;
  cursor:pointer;
  transition:background .15s ease, box-shadow .15s ease;
}
.sc-map-card:hover{ background:#fff; box-shadow:0 2px 10px rgba(0,0,0,.05); }

.sc-map-logo{
  width:48px; height:48px;
  border:1px solid #e5e7eb;
  display:grid; place-items:center;
  font-weight:700; color:#111; background:#fff;
}

.sc-map-title{
  font-size:2vh; font-weight:700; color:#111;
  margin:0 0 6px; line-height:1.2;
}
.sc-map-meta{
  font-size:1.6vh; color:#374151; line-height:1.35;
}

.sc-map-card.is-active{ background:#000; }
.sc-map-card.is-active .sc-map-title,
.sc-map-card.is-active .sc-map-meta,
.sc-map-card.is-active .sc-map-tools{ color:#fff; }

.sc-map{ flex:1; min-height:480px; overflow:hidden; }

/* Leaflet default tweaks (optional) */
.leaflet-container{ font:inherit; }

/* Features Page */
.features-links a p:hover{ text-decoration:underline; }

/* ====== RESPONSIVE ====== */

/* ≤ 1024px: Liste etwas schmaler, Map etwas höher */
@media (max-width:1024px){
  .sc-map-wrap{ gap:16px; padding:12px; min-height:420px; }
  .sc-map-list{ width:320px; max-width:44%; }
  .sc-map{ min-height:420px; }
  .sc-map-card{ padding:12px; }
  .sc-map-title{ font-size:18px; }   /* statt vh -> stabilere Größe */
  .sc-map-meta{ font-size:14px; }
  .sc-map-logo{ width:44px; height:44px; }
}

/* ≤ 768px: Stack untereinander (Liste oben, Map unten) */
@media (max-width:768px){
  .sc-map-wrap{
    flex-direction:column;
    min-height:auto;
  }
  .sc-map-list{
    width:100%;
    max-width:100%;
    border-right:0;
    border-bottom:1px solid #e5e7eb;
    padding:0 0 12px 0;
    max-height:45vh;          /* Liste begrenzen, damit Map sichtbar bleibt */
    overflow:auto;
  }
  .sc-map{
    min-height:50vh;          /* Map bekommt eigene Höhe */
    border:0;
  }
  .sc-map-card{
    grid-template-columns:42px 1fr;
    gap:10px;
    padding:12px;
  }
  .sc-map-logo{ width:42px; height:42px; }
  .sc-map-title{ font-size:16px; }
  .sc-map-meta{ font-size:13px; }
}

/* ≤ 480px: größere Touch-Ziele, kompaktere Abstände */
@media (max-width:480px){
  .sc-map-wrap{ padding:10px; gap:12px; }
  .sc-map-list{ max-height:42vh; }
  .sc-map-card{
    grid-template-columns:40px 1fr;
    padding:10px;
    margin-bottom:10px;
  }
  .sc-map-logo{ width:40px; height:40px; }
  .sc-map-title{ font-size:15px; }
  .sc-map-meta{ font-size:12.5px; }
}

/* Optional: sehr große Screens */
@media (min-width:1440px){
  .sc-map-list{ width:420px; max-width:34%; }
  .sc-map{ min-height:560px; }
}



/* Images fade stack */
.feat-slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transform: scale(1.02);
    transition: opacity .35s ease, transform .35s ease;
}
.feat-slide.is-active {
    opacity: 1;
    transform: scale(1);
    position: absolute;
}
p.feat-slide{
    position: static;
    inset: auto;
    width: 100%;
    height: auto;
    display: none;
}
p.feat-slide.is-active{
    display: block;
}

/* List buttons */
.feat-btn {
    display: inline-flex;
    align-items: center;
    cursor: pointer;
    gap: .75rem;
    font-weight: 600;
    line-height: 1.4;
    transition: color .18s ease, opacity .18s ease;
}
.feat-btn--light {
    color: #0f172a;
}
.feat-btn--light:hover {
    color: #e11d2e;
}
.feat-btn--dark {
    color: rgba(255,255,255,.9);
}
.feat-btn--dark:hover {
    color: #fff;
}
.feat-btn .feat-dot {
    width: .55rem;
    height: .55rem;
    border-radius: 999px;
    background: #0ea5e9;
    box-shadow: 0 0 0 4px rgba(14,165,233,.12);
    flex: 0 0 auto;
}
.feat-btn.is-active .feat-dot {
    background: #e11d2e;
    box-shadow: 0 0 0 5px rgba(225,29,46,.18);
}
.feat-btn.is-active {
    opacity: 1
}

/* Section Layout */
.fg-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 8% 0;
}
@media (max-width: 667px) {
    .fg-section {
        padding: 8% 4%;
    }
}
.fg-head {
    margin-bottom: 20px;
}
.fg-eyebrow {
    color: #0f2533;
    opacity: .9;
    font-weight: 600;
    margin: 0 0 6px;
}
.fg-title {
    margin: 0;
    font-size: clamp(24px, 3vw, 44px);
    line-height: 1.15;
    color: #0b1f2b;
}

/* Grid of Thumbs */
.fg-grid {
    display: grid;
    gap: 12px;
    grid-template-columns: repeat(2, 1fr);
}
@media (min-width: 900px) {
    .fg-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.fg-item {
    position: relative;
    display: block;
    overflow: hidden;
    background: #eee;
}
.fg-item::before {
    content: "";
    display: block;
    padding-top: 56.25%;
}
.fg-item img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .25s ease;
}
.fg-item:hover img {
    transform: scale(1.04);
}

/* Overlay background */
.fg-item::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.70);
    opacity: 0;
    transition: opacity 0.35s ease;
}

/* Title in overlay */
.fg-item span {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 600;
    font-size: 1rem;
    opacity: 0;
    transform: translateY(12px);
    transition: opacity 0.35s ease, transform 0.35s ease;
    text-align: center;
    padding: 0 8px;
    z-index: 9;
}

/* Hover effect */
.fg-item:hover img {
    transform: scale(1.06);
    opacity: 0.9;
}
.fg-item:hover::after {
    opacity: 1;
}
.fg-item:hover span {
    opacity: 1;
    transform: translateY(0);
}

/* Lightbox */
.fg-lb {
    position: fixed;
    inset: 0;
    z-index: 11000;
    display: none;
}
.fg-lb.is-open {
    display: block;
}
.fg-lb__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,.6);
    backdrop-filter: saturate(110%) blur(2px);
}
.fg-lb__dialog {
    position: relative;
    z-index: 1;
    width: 50%;
    max-height: 92vh;
    margin: 10vh auto 0;
    display: flex;
    flex-direction: column;
    outline: none;
}
.fg-lb__figure {
    display: flex;
    flex-direction: column;
    background: transparent;
    border-radius: 6px;
    overflow: hidden;
}
.fg-lb__figure img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 6px 6px 0 0;
}
.fg-lb__caption {
    background: #fff;
    color: #0b1f2b;
    padding: 18px 20px;
    border-radius: 0 0 6px 6px;
    box-shadow: 0 10px 30px rgba(0,0,0,.12);
}
.fg-lb__title {
    margin: 0 0 6px;
    font-size: clamp(18px, 2.2vw, 28px);
}
.fg-lb__desc  {
    margin: 0;
    opacity: .9;
    line-height: 1.5;
}
.fg-lb__close {
    position: absolute;
    top: -6px;
    right: -6px;
    transform: translate(50%,-50%);
    width: 36px;
    height: 36px;
    border: 0;
    border-radius: 999px;
    background: #0b1f2b;
    color: #fff;
    font-size: 20px;
    cursor: pointer;
    line-height: 36px;
    text-align: center;
    box-shadow: 0 6px 16px rgba(0,0,0,.25);
}
.fg-lb__nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border: 0;
    border-radius: 999px;
    background: rgba(15, 21, 31, .9);
    color: #fff;
    font-size: 26px;
    cursor: pointer;
}
.fg-lb__prev {
    left: -56px;
}
.fg-lb__next {
    right: -56px;
}
@media (max-width: 980px) {
    .fg-lb__prev, .fg-lb__next {
        display: none;
    }
}


/* Section shell */
.family-wrap {
    max-width: 1100px;
    margin: 0 auto;
    padding: 32px 16px 60px;
}

.family-head {
    text-align: center;
    margin-bottom: 28px;
}

.family-head h2 {
    font-size: clamp(28px, 4vw, 44px);
    font-weight: 800;
    letter-spacing: .01em;
    margin: 0 0 6px;
}

.family-sub {
    color: #64748b;
    font-weight: 600;
    margin: 0;
}

/* Cards Grid */
.family-grid {
    display: grid;
    grid-template-columns: repeat(1, minmax(0, 1fr));
    gap: 24px;
}

@media (min-width: 760px) {
    .family-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

/* Card */
.grade-card {
    display: grid;
    grid-template-rows: auto auto 1fr auto;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    overflow: hidden;
    background: #fff;
    transition: transform .18s ease, box-shadow .18s ease;
}
.grade-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(0,0,0,.08);
}

/* Dark spec Header */
.grade-top {
    background: #07131d;
    color: #f8fafc;
    padding: 18px 20px;
    min-height: 140px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.grade-name {
    font-size: 18px;
    margin: 0 0 10px;
    font-weight: 700;
}
.grade-spec {
    list-style: none;
    padding: 0;
    margin: 0;
    line-height: 1.45;
    font-size: 14px;
    opacity: .95;
}
.grade-spec li {
    margin: 2px 0;
}
.grade-spec strong {
    font-weight: 700;
}

/* Car Image */
.grade-media {
    margin: 0;
    background: #f6f7f8;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 18px 10px;
    border-bottom: 1px solid #eee;
}
.grade-media img {
    max-width: 220px;
    height: auto;
    display: block;
    filter: drop-shadow(0 6px 12px rgba(0,0,0,.15));
}

/* Features Block */

.grade-features h4 {
    font-size: 14px;
    text-transform: none;
    letter-spacing: .02em;
    margin: 0 0 10px;
    color: #0f172a;
}

/* Internal Scroller */
.feature-scroll {
    height: 190px;
    overflow: auto;
    cursor: auto;
    padding: 14px 16px 8px;
    touch-action: pan-y;
    -webkit-overflow-scrolling: touch;
}
.feature-scroll ul {
    margin: 0;
    padding-left: 16px;
}
.feature-scroll {
    font-size: 13.5px;
    color: #1f2937;
    margin: 7px 0;
}
.feature-scroll strong{
    font-size: 2.5vh;
}


/* Scrollbar */
.feature-scroll::-webkit-scrollbar {
    width: 6px;
}
.feature-scroll::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 6px;
}
.feature-scroll::-webkit-scrollbar-track {
    background: transparent;
}

/* Footer link */
.grade-foot {
    border-top: 1px solid #eee;
    padding: 10px 16px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}
.grade-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #0f172a;
    font-weight: 700;
    text-decoration: none;
}
.grade-link::before {
    content: "▾";
    font-size: 14px;
    transform: translateY(-1px);
    color: #0f172a;
    opacity: .85;
}


/* ---------- Scoped Styles for the Gallery ---------- */
.gallery-wrap {
    max-width:95%;
    margin:0 auto;
    padding:30px 16px;
}
.g-tabs {
    display:inline-flex;
    gap:6px;
    background:#e2e1e1;
    padding:6px;
    border-radius:9999px;
}
.g-tab {
    appearance:none;
    border:0;
    background:transparent;
    color:#0b2532;
    font-weight:normal;
    font-size: 1.7vh;
    padding:4px 18px;
    border-radius:9999px;
    cursor:pointer;
    letter-spacing:.01em;
}
.g-tab.is-active {
    background:#fff;color:#0b2532;box-shadow:0 2px 12px rgba(0,0,0,.12);
}
.g-grid {
    display:grid;grid-template-columns:repeat(12,1fr);gap:22px;margin-top:24px;
}
@media (max-width:1280px) {
    .g-grid {
        grid-template-columns:repeat(8,1fr);
    }
}
@media (max-width:768px) {
    .g-grid {
        grid-template-columns:repeat(4,1fr);gap:14px;
    }
}
.g-card{
    cursor: pointer;
    grid-column:span 3;
    position:relative;
    overflow:hidden;
    background:#111;
}
@media (max-width:768px) {
    .g-card {
        grid-column:span 4;
    }
}
.g-card img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.0);
    transition:transform .35s ease, opacity .35s ease;
}
.g-card:hover img {
    transform: scale(1.03);
    opacity: .96;
}
.g-hover {
    position: absolute;
    inset: auto 0 0 0;
    padding: 14px 16px;
    background: linear-gradient( to top, rgba(0,0,0,.65), rgba(0,0,0,0) );
    color: #fff;
    opacity: 0;
    transform:translateY(10px);
    transition:opacity .25s ease, transform .25s ease;
}
.g-card:hover .g-hover {
    opacity:1;
    transform:translateY(0)
}
.g-title {
    font-size:15px;
    font-weight:800
}

.g-hide {
    display:none !important
}

/* ---------- Lightbox ---------- */
.lb {
    position:fixed;
    inset:0;
    background:rgba(0,0,0,.8);
    display:none;
    align-items:center;
    justify-content:center;
    z-index:10000;
}
.lb.is-open {
    display:flex;
}
.lb-inner {
    max-width:min(1400px,92vw);
    max-height:min(86vh);
    position:relative;
}
.lb-img {
    display:block;
    max-width:100%;
    max-height:70vh;
    width:auto;
    height:auto;
    border-radius:6px;
}
.lb-caption {
    margin-top: 10px;
    background: #fff;
    border-radius: 6px;
    padding: 16px 18px;
    font-weight: 600;
}
.lb-close {
    position: absolute;
    top: -16px;
    right: -16px;
    width: 36px;
    height: 36px;
    border-radius: 9999px;
    background: #0b2532;
    color: #fff;
    border: 0;
    font-size: 18px;
    cursor: pointer;
}
.lb-nav {
    position:absolute;top:50%;transform:translateY(-50%);display:flex;align-items:center;
    justify-content:center;width:46px;height:46px;border:0;border-radius:9999px;background:rgba(255,255,255,.15);
    color:#fff;font-size:22px;cursor:pointer
}
.lb-prev {
    left:-58px
}
.lb-next {
    right:-58px
}
@media (max-width:768px) {
.lb-prev {
        left:6px}.lb-next{right:6px
    }
}

.gallery-swiper {
    position: relative;
    padding-bottom: 50px !important;
}
.gallery-swiper .swiper-scrollbar {
    position: absolute;
    bottom: 20px !important;
    height: 6px;
    background: #d1d5db;
    border-radius: 9999px;
}
.gallery-swiper .swiper-scrollbar-drag {
    height: 30px;
    top: -5px;
    margin-top: -9px;
    background: #0b2532;
    border-radius: 9999px;
    display: grid;
    place-items: center;
    color: #fff;
    font-weight: 700;
    letter-spacing: .08em;
}
.gallery-swiper .swiper-scrollbar-drag::before {
    content: "<  >";
}

/* Backgrounds per Section */
#dimensions_visual {
  position: relative;
  background-size: cover!important;
  background: url(../img/bg_spec.jpg) no-repeat center center;
}
#wheel_visual {
  position: relative;
  background-size: cover!important;
  background: url(../img/bg_wheel.jpg) no-repeat center center;
}

/* Wrapper Spacing */
.dims {
    padding: 3.5rem 0;
}
.dims-inner {
    max-width:1200px;
    margin:0 auto;
    padding:0 1rem;
}

/* Title */
.dims-title {
    margin: 0 0 12px;
    font-size: clamp(28px,3.5vw,54px);
    line-height: 1.05;
    font-weight: 700;
    letter-spacing: .01em;
    color: #0b1a24;
}

/* Tabs under Title */
.dims-tabs {
    display: flex;
    gap: 12px;
    margin-bottom: 20px;
}
.dims-tab {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 2px 2px;
    border-radius: 10px;
    color: #0b1a24;
    font-weight: 700;
    letter-spacing: .02em;
    cursor: pointer;
    transition: background .15s ease, color .15s ease;
}
.dims-tab.is-active {
    background: #0b1a24;
    color: #fff;
}
.tab-ico {
    width: 36px;
    height: 36px;
    border-radius: 8px;
}

/* Panels */
.dims-panels {
    position: relative;
}
.dims-panel {
    display: none;
}
.dims-panel.is-active {
    display: block;
}

/* Stage & Slides */
.dims-stage {
    position: relative;
}
.dims-stage--single .dims-arrow {
    display: none;
}

.dims-slides{
    display: flex;
    position:relative;
    overflow:hidden;
    min-height:clamp(460px,72vh,880px);
    border-radius:12px;
}
.dims-slide{
    display: flex;
    position: absolute;
    inset: 0;
    opacity: 0;
    transform: scale(.985);
    transition: opacity .35s ease, transform .35s ease;
    pointer-events: none;
    place-items: center;
}
.dims-slide.is-active {
    opacity: 1;
    transform: none;
    pointer-events: auto;
}
.dims-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    max-width: 100%;
    max-height: 100%;
    user-select: none;
    -webkit-user-drag: none;
    filter: drop-shadow(0 18px 30px rgba(0,0,0,.12));
}

.wheel-slide img {
 width: 50%;
 height: 50%;
}
/* Arrows */
.dims-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 5;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-size: 30px;
    line-height: 1;
    cursor: pointer;
    transition: box-shadow .15s ease, transform .1s ease, background .15s ease;
}
.dims-arrow:hover {
    transform: translateY(-50%) scale(1.04);
}
.dims-prev {
    left: 8px;
    width: 28px;
    height: 56px;
    background: url(../icons/btn_spec_prev.png);
    cursor: pointer;
}
.dims-next {
    right: 8px;
    width: 28px;
    height: 56px;
    background: url(../icons/btn_spec_next.png);
    cursor: pointer;
}
@media (min-width:992px) {
    .dims-prev {
        left: -22px;
    }
    .dims-next {
        right: -22px;
    }
}

/* Reduce motion */
@media (prefers-reduced-motion:reduce){
  .dims-slide,.dims-tab,.dims-arrow{ transition:none!important; }
}

/* Road */
.con_box {
    display: block;
}
.roadside_box {
    padding: 50px;
}
.con_box {
    margin: -1px auto 0 auto;
    padding: 20px 19px;
    position: relative;
    background: #fff;
    border: 1px solid #e3e3e3;
}
.roadsideTop {
    min-height: 295px;
    background: url(../img/bg_roadside.jpg) no-repeat right bottom;
}
.roadsideTop .roadsideTxt1 {
    color: #05141f;
}
.roadsideTop .roadsideTxt1 {
    width: 60%;
    font-family: 'kiaM';
    font-size: 15px;
    color: #000;
    line-height: 20px;
}
.roadsideTop h4 {
    font-size: 8vh !important;
    color: #000;
}
.roadsideNum {
    color: #ea0029;
}
@media (max-width: 676px) {
    .includesArea ul li {
        width: 100% !important;
        display: block;
        float: none !important;
        right: 0;
        padding-bottom: 2vh;
    }
}
.includesArea {
    padding: 30px 0;
    border: 1px solid #e3e3e3;
    background: #fafafa;
}
.includesArea ul {
    overflow: hidden;
    list-style: none;
}
.includesArea ul li {
    float: left;
    width: 25%;
    box-sizing: border-box;
    border-right: 1px solid #ddd;
    right: -1px;
    position: relative;
    text-align: center;
    font-size: 14px;
    font-family: kiaB;
}
.includesArea ul li span {
    background-image: url(../icons/spr_roadside.png);
}
.includesArea ul li span {
    display: block;
    width: 70px;
    height: 42px;
    margin: 0 auto 10px;
    background: url(../icons/spr_roadside.png) no-repeat 0 0;
}
.includesArea ul li span.bg01 {
    background-position: 0 0;
}
.includesArea ul li span.bg02 {
    background-position: 0 -44px;
}
.includesArea ul li span.bg03 {
    background-position: 0 -88px;
}
.includesArea ul li span.bg04 {
    background-position: 0 -132px;
}

/* Promotion Posts */
.info_tbl {
    border: 1px solid #e8e8e8;
}
ul.info_tbl {
    list-style: none;
}
.info_tbl .info_tr:first-child {
    border-top: 0;
}
.info_tbl .info_th {
    vertical-align: middle;
}
.info_tbl .info_th {
    font-size: 13px;
    width: 155px;
    padding: 15px;
    background: #f8f8f8;
    border-right: 1px solid #e8e8e8;
    vertical-align: top;
}
@media (max-width: 767px) {
    .info_tbl .info_th {

        border-right: 0 !important;
        margin-top: 10px;

    }
}
.info_tbl .info_th, .info_tbl .info_td {
    display: table-cell;
}
.ess {
    display: inline-block;
    font-size: 15px;
    color: #05141f;
}
.info_tbl .info_td {
    width: 100%;
    min-height: 30px;
    padding: 8px 15px;
    vertical-align: middle;
}
.form_area {
    display: table;
    width: 100%;
    table-layout: fixed;
    vertical-align: top;
}
.info_tbl .info_tr {
    display: table;
    table-layout: fixed;
    width: 100%;
    border-top: 1px solid #e8e8e8;
}
.form_area {
    display: table;
    width: 100%;
    table-layout: fixed;
    vertical-align: top;
}
.form_area .form_wrp, .form_area .form_sch, .form_area .form_date {
    display: table-cell;
    vertical-align: top;
}
.wpcf7-form-control-wrap {
    position: relative;
}
.wpcf7-submit {
    cursor: pointer;
}
.form_wrp .input_box {
    resize: none;
}
.form_wrp .input_box {
    width: 100%;
    min-height: 18px;
    border: 1px solid #d6d6d6;
    background: #fff;
    padding: 5px 12px;
    border-radius: 2px;
    font-size: 13px;
}
.single-promotion .info_tbl .info_td span.form_wrp.only select {
    width: 100% !important;
    height: 30px;
    border: 1px solid #d6d6d6;
    background: #fff;
    padding: 5px 7px;
    border-radius: 2px;
    font-size: 13px;
}
.single-promotion .info_tbl .info_td span.form_wrp.only {
    padding-right: 0;
}
.info_tbl .form_wrp.only, .info_tbl .form_area.phone {
    max-width: 100%;
}
.wpcf7-form-control-wrap {
    position: relative;
}
.wpcf7-form-control-wrap {
    position: relative;
}
.bbs_view .bbs_info {
    color: #05141f;
}
.form_wrp input, .form_wrp textarea, .form_sch input, .input_box {
    color: #999;
}
.single-promotion span.wpcf7-list-item.first.last {
    margin-left: 0;
    margin-bottom: 20px;
}
.btnMedium {
    cursor: pointer;
    padding: 0 15px !important;
}
.btnType3 {
    background-color: #05141f;
    opacity: .4;
}
.btnMedium {
    padding: 0 15px;
    line-height: 30px;
    font-size: 14px;
    border-radius: 15px;
}
.cuBtn {
    text-align: right;
}
[class*=btnType] {
    display: inline-block;
    color: #fff;
    font-family: kiaB;
    text-transform: uppercase;
}
.btnType1 {
    background-color: #05141f !important;
    color: #fff;
}
.info_tbl .form_wrp.only, .info_tbl .form_area.phone {
    max-width: 100%;
}
.wpcf7 input[type="url"], .wpcf7 input[type="email"], .wpcf7 input[type="tel"] {
    direction: ltr;
}
@media (max-width: 767px) {
    .info_tbl {
        background: #f8f8f8;
        padding: 0 8px;
    }
    .content-desc ul, .content-desc ol {
        margin: 0 0;
        list-style-type: disc;
    }
    .info_tbl .info_tr:first-child {
        border-top: 0;
    }
    .info_tbl .info_th {
        padding: 0 0;
    }
    .info_tbl .info_td {
        width: auto;
        min-height: 30px;
        padding: 0;
        margin-top: 5px;
    }
    .info_tbl .info_th, .info_tbl .info_td {
        display: block;
    }
}

/* --- Search Form --- */
.srch ul {
    list-style: none;
}
.srch {
    max-width: 100%;
}

/* --- Search Lists --- */
.srch-bar {
    background: #FFF;
    border: 1px solid #828282;
    border-bottom: 5px solid #828282;
    box-shadow: 0 1px 0 #cfcfcf inset;
    padding: 6vh 8vh;
    display: flex;
    gap: 12px;
    align-items: center;
}
.srch-bar input {
    flex: 1;
    border: 1px solid var(--line);
    outline: 0;
    border-radius: 4px;
    padding: 0 14px;
    font-size: 15px;
    color: var(--ink);
    background: #fff;
}
.srch-btn{
    display: inline-flex;
    align-items: center;
    gap: 10px;
    height: 35px;
    padding: 0 18px;
    border-radius: 24px;
    border: 0;
    background: #05141f !important;
    color: #fff !important;
    font-weight: 800;
    letter-spacing: .02em;
    cursor: pointer;
    transition: transform .05s ease,opacity .15s ease;
}
.srch-btn .text{
    color: #fff !important;
}
.srch-btn:hover {
    opacity: .92;
}
.srch-btn:active {
    transform: translateY(1px);
}
.srch-btn-ico{
    display: grid;
    place-items: center;
    width: 22px;
    height: 22px;
    border-radius: 999px;
    background: #fff;
    color: #05141f !important;
    font-size: 14px;
    line-height: 1;
}

/* --- Panel --- */
.srch-panel {
    margin-top: 18px;
    padding: 0;
}
.srch-head {
    display: flex;
    gap: 10px;
    align-items: center;
    padding: 14px 18px;
    border-bottom: 1px solid #e7e7e7;
    background: #fff;
    font-size: 15px;
}
.srch-head-ico {
    font-size: 18px;
}
.srch-head-text strong {
    font-weight: 800;
}

/* --- Liste --- */
.srch-list {
    list-style: none;
    margin: 0;
    padding: 0;
    background: #fff;
}
.srch-item {
    border-top: 1px solid #ececec;
}
.srch-link {
    display: block;
    text-decoration: none;
    color: var(--ink);
    padding: 16px 18px;
    transition: background .12s ease;
}
.srch-link:hover {
    background: #fafafa;
}

/* Hervorhebung */
mark {
    background: transparent;
    color: #e11d2e;
    font-weight: 800;
}

/* Responsive */
@media (max-width:640px) {
    .srch-bar {
        padding: 12px;
        flex-direction: column;
    }
    .srch-btn {
        padding: 0 14px;
    }
    .srch-head {
        font-size: 14px;
    }
    .srch-link {
        padding: 14px 16px;
    }
}

/* Posts Page */
/* Block: Text links, Bild rechts (nur das Bild ist klickbar) */
.sp-item {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 24px;
    align-items: start;
    padding: 18px 0 24px;
}
.sp-item:not(:last-child) {
    border-bottom: 1px solid #ccc;
}

.sp-item ul, ol {
    padding-left: 3vh;
}

/* Kopfzeile (Icon + Titel) */
.sp-head {display:flex;align-items:center;gap:12px;margin-bottom:10px}
.sp-ico {
    width: 60px;
    height: 60px;
    display:grid;
    place-items:center;
    flex-shrink:0;
}
.sp-ico img{width:60px;height:60px;object-fit:contain;}
.sp-title{font:700 24px/1.2 ui-sans-serif,system-ui,Segoe UI,Roboto;color:#0b1a24}

/* Text */
.sp-p{margin:0 0 10px;color:#111827}
.sp-h6{font:700 16px/1.2 ui-sans-serif,system-ui;margin:12px 0 8px;color:#0b1a24}
.sp-ul{margin:0 0 12px 18px}
.sp-ul li{margin:6px 0}

/* Read more */
.sp-more a{
  display:inline-flex;align-items:center;gap:6px;
  font-weight:700;color:#0b1a24;text-decoration:none;
}
.sp-more a:hover{color:#e11d2e}

/* Bild rechts – nur dieses ist verlinkt */
.sp-thumb{display:block}
.sp-thumb img{
    width:100%;
    height:auto;
    display:block;
    padding: 1.5vh;
    border:1px solid #e5e7eb;
    box-shadow:0 2px 8px rgba(0,0,0,.06);
    transition:opacity .2s ease, transform .2s ease;
}
.sp-thumb:hover img{opacity:.9;transform:translateY(-1px)}

/* Responsive */
@media (max-width: 980px){
  .sp-item{grid-template-columns:1fr}
}


.specs-table {
    width: 100%;
    border-collapse: collapse;
    border: 1px solid var(--line);
}

.specs-table th {
    padding: 8px;
    background: rgba(5, 20, 31, .8);
    color: white;
    text-align: left;
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: lowercase;
    border: 1px solid var(--line);
}
.specs-table th:first-letter{
    text-transform: uppercase;
}
.specs-table td {
    text-align: center;
    padding: 8px;
    border-bottom: 1px solid #e0e0e0;
    color: #666;
    font-size: 13px;
    border: 1px solid var(--line);
}

.specs-table tr:nth-child(even) {
    background-color: #f8f9fa;
}

.specs-table tr:hover {
    background-color: #e3f2fd;
    transition: background-color 0.3s;
}

.specs-table tr:last-child td {
    border-bottom: none;
}

.car_spr:before {
    background-image: url(../icons/models.jpg) !important;
}




/* --- VEHICLE CATEGORY ICON SPRITE --- */
.car_spr {
    position: relative;
    width: 66px;
    height: 32px;
    display: block;
}

.car_spr::before {
    content: "";
    display: block;
    width: 66px;
    height: 32px;
    background-repeat: no-repeat;
    background-position: 0 0;
}


.car_spr.sedan:before {
    background-position: 0 -63px;
}
.car_spr.suv:before {
    background-position: 0 -33px;
}
.car_spr.mpv:before {
    background-position: 0 -95px;
}
.car_spr.ev:before {
    background-position: 0 -130px;
}
.car_spr.pickup:before {
    background-position: 0 -310px;
}
.rtd-btn {
    background: #0b1a24;
    color: #fff;
    border: 0;
    border-radius: 18px;
    padding: 6px 16px;
    font-weight: 700;
    cursor: pointer;
}
.pagination {
    display: -ms-flexbox;
    display: flex;
    padding-left: 0;
    list-style: none;
    border-radius: 0.25rem;
}
.justify-content-center {
    -ms-flex-pack: center !important;
    justify-content: center !important;
}
.page-link {
    position: relative;
    display: block;
    padding: 0.5rem 0.75rem;
    margin-left: -1px;
    line-height: 1.25;
    color: #007bff;
    background-color: #fff;
    border: 1px solid #dee2e6;
}
.page-item:first-child .page-link {
    margin-left: 0;
    border-top-left-radius: 0.25rem;
    border-bottom-left-radius: 0.25rem;
}
.page-item.disabled .page-link {
    color: #6c757d;
    pointer-events: none;
    cursor: auto;
    background-color: #fff;
    border-color: #dee2e6;
}
.features-links{
    display: flex;
    justify-content: space-between;
}
@media (max-width: 1200px) {
    .features-links{
       flex-direction: column;
    }
}
.wheel_big h3{
    position: absolute;
    right: 150px;
    top: 50%;
    transform: translateY(-50%);
    width: 150px;
}
@media (max-width: 767px) {
    .wheel_big h3{
        font-size: 11px;
        right: 30px;
        width: 90px;
    }
}
.wheel_small_block{
    margin-bottom: 48px;
}

@media (max-width: 727px) {
    .filter-link {
        font-size: 7px !important;
        letter-spacing: 0 !important;
    }
    .mega{
        left: 0 !important;
        right: 0 !important;
        width: 100% !important;
    }
    .mega > div:first-of-type{
        flex-direction: column !important;
        align-items: flex-start !important;

    }
    .navMobile.px-4{
        padding-left: 0 !important;
        padding-right: 0 !important;
    }
    .dropdown-toggle[aria-expanded="true"], #showroomToggleMobile[aria-expanded="true"]{
        background: #05141f;
        color: #fff;
    }
    .dropdown-toggle[aria-expanded="true"] i,.dropdown-toggle[aria-expanded="true"] span, #showroomToggleMobile[aria-expanded="true"] i,#showroomToggleMobile[aria-expanded="true"] span{
        color: #fff;
    }
}

@media (max-width: 767px) {
    .w-full .text-white{
            padding-top: 115px !important;
    }
}