/* --- RESET I ZMIENNE --- */
:root {
    --vw-blue: rgb(27, 34, 54);
    --vw-light-blue: #00b0f0;
    --bg-color: rgb(246, 245, 242);
    --text-dark: #1a1a1a;
    --text-light: #ffffff;
    --font-main: 'vwhead', Roboto, Helvetica, Arial, sans-serif;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: var(--font-main);
}

body {
    font-family: var(--font-main);
    background-color: var(--bg-color);
    color: var(--text-dark);
    line-height: 1.6;
    font-weight: 300;
}

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

a {
    text-decoration: none;
    color: inherit;
}

/* --- STRUKTURA BAZOWA --- */
.container {
    max-width: 1470px; /* Zaktualizowano na 1470px */
    margin: 0 auto;
    padding: 0 20px;
}


/* ========================================= */
/* --- 1. SEKCJA HERO --- */
/* ========================================= */
.vw-hero-section {
    position: relative;
    width: 100%;
    height: 80vh;
    min-height: 400px;
    background-color: #000;
    overflow: hidden;
}

@media (max-width: 780px) {
    .vw-hero-section {
        height: 50vh;
    }
}

.vw-hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.vw-hero-background img,
.vw-hero-background video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center; 
    filter: brightness(0.85); 
}

.vw-top-navigation {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 32px;
    z-index: 10;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0) 100%);
}

.vw-nav-left {
    display: flex;
    align-items: center;
    gap: 32px;
}

.vw-logo {
    color: #ffffff;
    display: flex;
    align-items: center;
    width: 36px;
    height: 36px;
    transition: opacity 0.2s ease;
}

.vw-logo:hover {
    opacity: 0.8;
}

.vw-nav-links {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 28px;
}

.vw-nav-item {
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.2px;
    transition: opacity 0.2s ease;
}

.vw-nav-item:hover {
    opacity: 0.7;
}

.vw-nav-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.vw-icon-btn {
    background: transparent;
    border: none;
    color: #ffffff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4px;
    transition: opacity 0.2s ease;
}

.vw-icon-btn:hover {
    opacity: 0.7;
}

.vw-hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 5;
    width: 100%;
    text-align: center;
    padding: 0 20px;
}

.vw-hero-content h1 {
    color: #ffffff;
    font-size: 46px;
    font-weight: 700;
    letter-spacing: -0.5px;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.2); 
    line-height: 1.2;
}

@media (max-width: 900px) {
    .vw-nav-links li:not(:first-child) { display: none; }
    .vw-hero-content h1 { font-size: 32px; }
    .vw-top-navigation { padding: 16px 20px; }
}


/* ========================================= */
/* --- 2. SEKCJA BANNER HEADER --- */
/* ========================================= */
.vw-header-banner {
    background-color: #f5f5f2; 
    padding: 40px 20px;
    border-bottom: 1px solid #e0e0e0;
}

.vw-header-container {
    max-width: 1470px; /* Zaktualizowano na 1470px */
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.vw-header-text {
    color: var(--vw-blue);
}

.vw-header-text h1 {
    font-size: 42px;
    font-weight: 300; 
    line-height: 1.2;
    margin-bottom: 8px;
}

.vw-header-text h1 strong {
    font-weight: 700;
}

.vw-header-text p {
    font-size: 18px;
    font-weight: 300;
}

.vw-header-text p strong {
    font-weight: 700;
}

.vw-header-actions {
    display: flex;
    gap: 16px; 
}

.vw-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 30px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.vw-btn-outline {
    background-color: transparent;
    color: var(--vw-blue);
    border: 1px solid var(--vw-blue);
}

.vw-btn-outline:hover {
    background-color: rgba(11, 30, 66, 0.05); 
}

.vw-btn-primary {
    background-color: #1a2b49; 
    color: #ffffff;
    border: 1px solid #1a2b49;
}

.vw-btn-primary:hover {
    background-color: var(--vw-blue);
}

@media (max-width: 900px) {
    .vw-header-container {
        flex-direction: column;
        align-items: flex-start;
        gap: 30px;
    }
    .vw-header-text h1 { font-size: 32px; }
    .vw-header-actions {
        width: 100%;
        flex-wrap: wrap;
    }
    .vw-btn {
        flex: 1 1 auto;
        justify-content: center;
    }
}


/* ========================================= */
/* --- 3. SEKCJA INTRO (TEKSTOWA) --- */
/* ========================================= */
.vw-intro-section {
    background-color: #f4f4f1; 
    padding: 80px 20px;
    display: flex;
    justify-content: center;
}

.vw-intro-container {
    width: 100%;
    max-width: 1120px; /* Zaktualizowano na 1470px */
}

.vw-intro-heading {
    color: var(--vw-blue); 
    font-size: 38px; 
    font-weight: 700;
    margin-bottom: 24px;
    letter-spacing: -0.2px;
}

.vw-intro-text {
    margin-left: 5vw; 
}

.vw-intro-text p {
    color: var(--vw-blue);
    font-size: 20px; 
    line-height: 1.7; 
    letter-spacing: 0.2px;
}

@media (max-width: 1024px) {
    .vw-intro-text { margin-left: 0; }
    .desktop-br { display: none; }
    .vw-intro-heading {
        font-size: 30px;
        margin-bottom: 16px;
    }
    .vw-intro-text p {
        font-size: 18px; 
        line-height: 1.5;
    }
}


/* ========================================= */
/* --- 4. SEKCJA MODELI (ID. POLO) --- */
/* ========================================= */
.vw-models-section {
    background-color: #f4f4f1; 
    padding: 60px 20px;
    color: var(--vw-blue);
}

.vw-models-container {
    max-width: 1470px; /* Zaktualizowano na 1470px */
    margin: 0 auto;
}

.vw-models-heading {
    text-align: center;
    font-size: clamp(2.5rem, 2.19rem + 0.88vw, 3.25rem);
    font-weight: 300;
    margin-bottom: 50px;
    color: var(--vw-blue);
}

.vw-models-heading strong {
    font-weight: 700;
}

.vw-model-card {
    display: flex;
    align-items: center;
    gap: 50px;
}

.vw-model-image {
    flex: 1.1; 
}

.vw-model-image img {
    width: 100%;
    border-radius: 12px;
    display: block;
}

.vw-model-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.vw-model-highlight {
    border-left: 1px solid #888; 
    padding: 2rem 20px;
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--vw-blue);
    line-height: 1.6;
}

.vw-model-highlight strong {
    font-weight: 700;
}

.vw-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    border: 1px solid #888;
    font-size: 9px;
    color: #888;
    vertical-align: super;
    margin-left: 4px;
    display: none;
}

.vw-model-details h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--vw-blue);
}

.vw-model-details p {
    font-size: 16px;
    line-height: 2; 
    color: var(--vw-blue);
}

.vw-model-links {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
}

.vw-link {
    font-size: 16px;
    font-weight: 700;
    color: var(--vw-blue);
    text-decoration: underline;
    text-underline-offset: 4px; 
    text-decoration-thickness: 1px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: opacity 0.2s ease;
}

.vw-link:hover {
    opacity: 0.7;
}

@media (max-width: 900px) {
    .vw-model-card {
        flex-direction: column;
        gap: 30px;
    }
    .vw-model-image { width: 100%; }
    .vw-model-highlight { font-size: 16px; }
}


/* ========================================= */
/* --- 5. SEKCJA POWER TEASER --- */
/* ========================================= */
.vw-pt-section {
    background-color: #f4f4f1; 
    padding: 60px 20px 80px 20px;
    display: flex;
    justify-content: center;
}

.vw-pt-container {
    width: 100%;
    max-width: 1470px; /* Zaktualizowano na 1470px */
}

.vw-power-teaser {
    display: flex;
    align-items: stretch;
    background-color: #1b2234; 
    border-radius: 14px;
    margin-top: 20px;
    margin-right: 2rem;
    padding: 3rem;
}

.vw-pt-content {
    flex: 1;
    padding: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: #ffffff;
}

.vw-pt-content h2 {
    font-size: clamp(1.75rem, 1.49rem + 0.74vw, 2.38rem);
    font-weight: 700;
    margin-bottom: 8px;
    letter-spacing: -0.2px;
}

.vw-pt-subtitle {
    font-size: clamp(1.75rem, 1.49rem + 0.74vw, 2.38rem);
    font-weight: 300;
    margin-bottom: 24px;
    color: #e2e8f0;
    line-height: 1.3;
}

.vw-pt-subtitle strong {
    font-weight: 700;
    color: #ffffff;
}

.vw-info-icon {
    display: inline-block;
    vertical-align: middle;
    width: 13px;
    height: 13px;
    margin-left: 6px;
    margin-top: -2px;
    color: #94a3b8; 
    display: none;
}

.vw-pt-content p {
    font-size: 1rem;
    line-height: 1.7;
    color: #cbd5e1; 
    margin-bottom: 40px;
    max-width: 95%;
}

.vw-pt-actions {
    display: flex;
    gap: 12px;
}

.vw-btn-white {
    background-color: #ffffff;
    color: #1b2234;
    font-size: 13px;
    font-weight: 600;
    padding: 10px 28px;
    border-radius: 30px;
    text-decoration: none;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.vw-btn-white:hover {
    background-color: #f1f5f9;
    transform: translateY(-1px);
}

.vw-pt-image-wrapper {
    flex: 1.5;
    position: relative;
}

.vw-pt-image-wrapper img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 14px;
    transform: translate(4rem, 0);
    box-shadow: -5px 10px 20px rgba(0, 0, 0, 0.15); 
}

@media (max-width: 900px) {
    .vw-power-teaser {
        flex-direction: column;
        margin-right: 0;
        margin-top: 0;
    }
    .vw-pt-image-wrapper { min-height: 250px; }
    .vw-pt-image-wrapper img {
        position: relative;
        transform: translate(0, 0); 
        border-radius: 0 0 14px 14px; 
        box-shadow: none;
    }
    .vw-pt-content { padding: 30px 20px; }
    .vw-pt-actions { flex-direction: column; }
    .vw-btn-white { width: 100%; }
}
.vw-gtx-section {
  padding: 60px 0;
  background-color: #f8f9fa;
  overflow: hidden;
}

.vw-gtx-container {
  max-width: 1470px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
}

.vw-gtx-header {
  margin-bottom: 60px;
  text-align: center;
  width: 100%;
}

.vw-gtx-header-inner {
  max-width: 1000px;
  margin: 0 auto;
}

.vw-gtx-header h2 {
  font-size: 44px;
  color: #1b1e2b;
  margin: 0 0 24px 0;
  font-weight: 700;
  letter-spacing: -0.5px;
}

.vw-gtx-desc p {
  font-size: 20px;
  color: #1b1e2b;
  margin: 0;
  line-height: 1.6;
  font-weight: 400;
}

@media (max-width: 991px) {
  .vw-gtx-header h2 {
    font-size: 32px;
  }
  
  .vw-gtx-desc p {
    font-size: 16px;
  }
}

.desktop-br {
  display: none;
}

@media (min-width: 992px) {
  .desktop-br {
    display: block;
  }
}

.vw-gtx-carousel-wrapper {
  position: relative;
  margin-top: 40px;
}

.vw-gtx-carousel {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
  scroll-snap-type: x mandatory;
  padding-bottom: 20px;
}

.vw-gtx-carousel::-webkit-scrollbar {
  display: none;
}

.vw-gtx-card {
  flex: 0 0 auto;
  width: 85vw;
  max-width: 400px;
  position: relative;
  display: flex;
  flex-direction: column;
  cursor: pointer;
  scroll-snap-align: start;
}

@media (min-width: 768px) {
  .vw-gtx-card {
    width: 40vw;
    max-width: 500px;
  }
}

@media (min-width: 1200px) {
  .vw-gtx-card {
    width: calc((100% - 60px) / 3.2);
  }
}

.vw-gtx-image-wrapper {
  position: relative;
  width: 100%;
  border-radius: 8px;
  overflow: hidden;
}

.vw-gtx-image-wrapper img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.vw-gtx-card:hover .vw-gtx-image-wrapper img {
  transform: scale(1.03);
}

.vw-gtx-icon {
    display: none;
  position: absolute;
  bottom: 20px;
  right: 20px;
  background-color: rgba(255, 255, 255, 0.9);
  color: #1b1e2b;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  /* display: flex; */
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  transition: background-color 0.2s;
  z-index: 2;
}

.vw-gtx-card:hover .vw-gtx-icon {
  background-color: #ffffff;
}

.vw-gtx-card-title {
  font-size: 18px;
  font-weight: 400;
  color: #1b1e2b;
  margin: 16px 0 0 0;
  line-height: 1.3;
}

.vw-gtx-card-title strong {
  font-weight: 700;
}

.vw-gtx-nav-next {
  position: absolute;
  right: -20px;
  top: 40%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: #001e50;
  color: #ffffff;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  transition: opacity 0.3s ease, background-color 0.2s ease;
  z-index: 10;
}

@media (max-width: 1550px) {
  .vw-gtx-nav-next {
    right: 10px;
  }
}

.vw-gtx-nav-next:hover {
  background-color: #000c26;
}

.vw-gtx-nav-next svg {
  width: 24px;
  height: 24px;
}


/* --- RESET LOKALNY --- */
.vw-available-section * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* --- KONTENER GŁÓWNY SEKCJI --- */
.vw-available-section {
    background-color: #f4f4f1; /* Spójne, jasne tło z resztą sekcji */
    padding: 80px 20px; /* Duży oddech (whitespace) nad i pod nagłówkiem */
    display: flex;
    justify-content: center;
}

.vw-available-container {
    width: 100%;
    max-width: 1470px;
    text-align: center;
}

/* --- NAGŁÓWEK --- */
.vw-available-heading {
    color: var(--vw-blue); /* Głęboki granat VW */
    font-size: 38px; /* Rozmiar dopasowany do głównych haseł na stronie */
    font-weight: 300; /* Cienki krój bazowy */
    letter-spacing: -0.2px;
}

.vw-available-heading strong {
    font-weight: 700; /* Pogrubienie na "dostępne od ręki" */
}

/* --- RWD (MOBILE) --- */
@media (max-width: 900px) {
    .vw-available-section {
        padding: 50px 20px;
    }
    
    .vw-available-heading {
        font-size: 28px; /* Skalowanie na mniejsze ekrany */
        line-height: 1.3;
    }
}

/* --- RESET LOKALNY --- */
.vw-contact-section * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* --- KONTENER GŁÓWNY --- */
.vw-contact-section {
    background-color: #f4f4f1; 
    padding: 80px 20px;
    display: flex;
    justify-content: center;
}

.vw-contact-container {
    width: 100%;
    max-width: 1470px;
    display: flex;
    justify-content: center;
}

/* --- CIEMNA KARTA FORMULARZA --- */
.vw-contact-card {
    background-color: #20293a; /* Granat ze zdjęcia */
    width: 100%;
    max-width: 960px; 
    border-radius: 14px;
    padding: 60px 80px;
    color: #ffffff;
}

/* --- NAGŁÓWEK --- */
.vw-contact-title {
    font-size: 34px;
    font-weight: 700;
    text-align: center;
    line-height: 1.3;
    margin-bottom: 50px;
    letter-spacing: -0.2px;
}

/* --- STRUKTURA PÓL --- */
.vw-form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 10px;
}

.vw-input-group {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.vw-full-width {
    width: 100%;
}

/* --- POLA TEKSTOWE --- */
.vw-input-group input,
.vw-input-group textarea {
    width: 100%;
    background-color: transparent;
    border: 1px solid #475569; 
    border-radius: 6px;
    padding: 14px 20px;
    color: #ffffff;
    font-size: 15px;
    font-family: inherit;
    transition: border-color 0.2s ease;
}

.vw-input-group textarea {
    min-height: 120px;
    resize: vertical;
}

.vw-input-group input::placeholder,
.vw-input-group textarea::placeholder {
    color: #94a3b8;
}

.vw-input-group input:focus,
.vw-input-group textarea:focus {
    outline: none;
    border-color: #ffffff;
}

.vw-error-text {
    color: #ef4444; 
    font-size: 12px;
    margin-top: 4px;
    min-height: 16px;
}

/* --- CHECKBOXY I ZGODY --- */
.vw-form-legal {
    border-top: 1px solid #334155; 
    padding: 30px 0;
    margin-top: 20px;
    margin-bottom: 40px;
}

.vw-rodo-text {
    font-size: 11px;
    color: #94a3b8;
    line-height: 1.6;
    margin-bottom: 24px;
}

.vw-rodo-text a {
    color: #cbd5e1;
    text-decoration: underline;
}

.vw-pointer {
    cursor: pointer;
    color: #ffffff;
    font-weight: 600;
    display: inline-block;
    margin-top: 8px;
}

.vw-checkbox-group {
    margin-bottom: 24px;
}

.vw-checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 13px;
    color: #cbd5e1;
    cursor: pointer;
    line-height: 1.5;
}

.vw-checkbox-label input[type="checkbox"] {
    margin-top: 3px;
    width: 16px;
    height: 16px;
    cursor: pointer;
}

.vw-marketing-text {
    font-size: 11px;
    color: #94a3b8;
    line-height: 1.6;
    margin-bottom: 20px;
}

.vw-marketing-text strong {
    color: #ffffff;
    font-size: 13px;
}

.vw-checkbox-row {
    display: flex;
    gap: 30px;
    margin-bottom: 12px;
}

.vw-marketing-note {
    font-size: 11px;
    color: #94a3b8;
}

/* --- PRZYCISK --- */
.vw-form-actions {
    display: flex;
    justify-content: center;
}

.vw-btn-submit {
    background-color: #ffffff;
    color: #1b2234;
    font-size: 15px;
    font-weight: 600;
    padding: 14px 50px;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.vw-btn-submit:hover:not(:disabled) {
    background-color: #f1f5f9;
    transform: translateY(-1px);
}

.vw-btn-submit:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.vw-form-message {
    background-color: #10b981;
    color: white;
    padding: 16px;
    border-radius: 6px;
    text-align: center;
    margin-bottom: 30px;
    font-weight: 600;
}

/* --- RWD --- */
@media (max-width: 900px) {
    .vw-contact-card {
        padding: 40px 20px;
    }
    .vw-contact-title {
        font-size: 28px;
    }
    .vw-form-row {
        flex-direction: column;
        gap: 10px;
    }
}

.vw-slider-section {
  --vw-container-max: 1470px;
  --vw-offset: max(20px, calc((100% - var(--vw-container-max)) / 2));
  --vw-gap: 16px;
  --vw-card-width: calc((100% - var(--vw-offset) - var(--vw-gap)) / 1.5);
  
  width: 100%;
  background-color: #1b1e2b;
  padding: 60px 0;
  position: relative;
  overflow: hidden;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  box-sizing: border-box;
}

@media (min-width: 768px) {
  .vw-slider-section {
    --vw-gap: 20px;
    --vw-card-width: calc((100% - var(--vw-offset) - (2 * var(--vw-gap))) / 2.5);
  }
}

@media (min-width: 1200px) {
  .vw-slider-section {
    --vw-gap: 24px;
    --vw-card-width: 453px;
  }
}

.vw-slider-wrapper {
  position: relative;
  width: 100%;
}

.vw-slider-track {
  display: flex;
  gap: var(--vw-gap);
  padding-left: var(--vw-offset);
  padding-right: var(--vw-offset);
  overflow-x: auto;
  scrollbar-width: none;
  scroll-behavior: smooth;
  width: 100%;
  box-sizing: border-box;
}

.vw-slider-track::-webkit-scrollbar {
  display: none;
}

.vw-slider-right-mask {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 15%;
  background: linear-gradient(to right, rgba(27, 30, 43, 0) 0%, rgba(27, 30, 43, 0.9) 50%, rgba(27, 30, 43, 1) 100%);
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-right: var(--vw-offset);
  z-index: 10;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.vw-nav-arrow {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: #2b3040;
  color: #ffffff;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  pointer-events: auto;
  transition: background-color 0.2s, transform 0.1s;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
}

.vw-nav-arrow:hover {
  background-color: #3b4256;
}

.vw-nav-arrow:active {
  transform: scale(0.95);
}

.vw-nav-arrow svg {
  width: 24px;
  height: 24px;
  margin-left: 2px;
}

.vw-car-card {
  flex: 0 0 var(--vw-card-width);
  width: var(--vw-card-width);
  background-color: #ffffff;
  border-radius: 8px;
  box-sizing: border-box;
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.vw-card-image-wrapper {
  width: 100%;
  display: block;
}

.vw-card-image {
  width: 100%;
  height: 240px;
  object-fit: cover;
  display: block;
}

.vw-card-content {
  padding: 24px 28px 32px 28px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.vw-card-condition {
  font-size: 13px;
  color: #111827;
  font-weight: 700;
  margin-bottom: 10px;
}

.vw-card-title {
  font-size: 18px;
  color: #111827;
  font-weight: 700;
  margin: 0 0 14px 0;
  line-height: 1.3;
}

.vw-card-price {
  font-size: 20px;
  color: #111827;
  font-weight: 700;
}

.vw-card-divider {
  height: 1px;
  background-color: #e5e7eb;
  margin: 28px 0;
  border: none;
}

.vw-specs-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px 16px;
}

.vw-spec-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: #111827;
}

.vw-spec-item.full-width {
  grid-column: 1 / -1;
}

.vw-spec-icon {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  stroke-width: 1.2;
}

.vw-slider-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  margin-top: 48px;
}

.vw-slider-pagination span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #ffffff;
  cursor: pointer;
  transition: all 0.3s ease;
}

.vw-slider-pagination span.active {
  width: 14px;
  height: 14px;
}

.vw-slider-pagination span.small {
  width: 4px;
  height: 4px;
}

html {
  scroll-behavior: smooth;
}

.vw-sticky-nav {
  position: fixed;
  top: 0;
  width: 100%;
  background-color: #ffffff;
  z-index: 1000;
  border-bottom: 1px solid #e5e7eb;
  display: none;
}

.vw-sticky-nav.is-visible {
    display: block;
}
.vw-sticky-nav-container {
  max-width: 1470px;
  margin: 0 auto;
  overflow-x: auto;
  scrollbar-width: none;
}

.vw-sticky-nav-container::-webkit-scrollbar {
  display: none;
}

.vw-sticky-nav-list {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0 20px;
  gap: 32px;
  align-items: center;
  justify-content: flex-start;
  white-space: nowrap;
}

.vw-sticky-nav-link {
  display: inline-block;
  text-decoration: none;
  color: #1b1e2b;
  font-size: 15px;
  font-weight: 300;
  padding: 24px 0;
  position: relative;
  transition: color 0.3s;
}

.vw-sticky-nav-link:hover {
  color: #001e50;
}

.vw-sticky-nav-link.active {
  font-weight: 400;
}

.vw-sticky-nav-link.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: #1b1e2b;
}


.vw-input-group select {
    width: 100%;
    padding: 16px 20px;
    border: 1px solid #d1d5db;
    border-radius: 4px;
    font-family: inherit;
    font-size: 15px;
    color: #111827;
    outline: none;
    transition: border-color 0.2s;
    appearance: none;
    background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22292.4%22%20height%3D%22292.4%22%3E%3Cpath%20fill%3D%22%23111827%22%20d%3D%22M287%2069.4a17.6%2017.6%200%200%200-13-5.4H18.4c-5%200-9.3%201.8-12.9%205.4A17.6%2017.6%200%200%200%200%2082.2c0%205%201.8%209.3%205.4%2012.9l128%20127.9c3.6%203.6%207.8%205.4%2012.8%205.4s9.2-1.8%2012.8-5.4L287%2095c3.5-3.5%205.4-7.8%205.4-12.8%200-5-1.9-9.2-5.5-12.8z%22%2F%3E%3C%2Fsvg%3E");
    background-repeat: no-repeat;
    background-position: right 20px top 50%;
    background-size: 12px auto;
}
.vw-input-group select:focus {
    border-color: #001e50;
}


footer {
  background-color: #1b1e2b;
  color: #ffffff;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  padding: 60px 20px;
  border-top: 1px solid #2b3040;
}

.footer-container {
  max-width: 1470px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
}

.text-center {
  text-align: center;
}

.footer-title {
  font-size: 20px;
  margin: 0 0 16px 0;
  color: #ffffff;
}

.footer-title strong {
  font-weight: 700;
}

.footer-link {
  font-size: 16px;
  margin: 0 0 12px 0;
  color: #d1d5db;
  line-height: 1.6;
}

.footer-link a {
  color: #ffffff;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.2s ease, text-decoration 0.2s ease;
}

.footer-link a:hover {
  color: #93c5fd;
  text-decoration: underline;
}