/* ===== RESET & BASE ===== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --orange: #EF6324;
    --orange-dark: #d45519;
    --orange-light: #ff7b3a;
    --bg-dark: #0d0d0d;
    --bg-card: #1a1a1a;
    --bg-card-hover: #222222;
    --text-primary: #ffffff;
    --text-secondary: #a0a0a0;
    --text-muted: #666666;
    --border-color: #2a2a2a;
    --border-highlight: #333333;
    --font: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font);
    background-color: #111111;
    color: var(--text-primary);
    min-height: 100vh;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

.page-wrapper {
    max-width: 520px;
    margin: 0 auto;
    background-color: var(--bg-dark);
    min-height: 100vh;
    position: relative;
    box-shadow: 0 0 40px rgba(0, 0, 0, 0.5);
}

/* ===== ANNOUNCEMENT BAR ===== */
.announcement-bar {
    background: linear-gradient(90deg, var(--orange), var(--orange-dark), var(--orange));
    background-size: 200% 100%;
    animation: shimmer 3s ease-in-out infinite;
    padding: 10px 0;
    text-align: center;
    z-index: 100;
    overflow: hidden;
    max-width: 100%;
    margin: 0 auto;
}

@keyframes shimmer {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.announcement-content {
    display: inline-flex;
    align-items: center;
    white-space: nowrap;
    animation: scroll-marquee 40s linear infinite;
    gap: 16px;
    font-size: 13px;
    font-weight: 600;
    color: white;
    letter-spacing: 0.3px;
}

@keyframes scroll-marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.announcement-separator {
    opacity: 0.5;
}

/* ===== HEADER ===== */
.header {
    background: rgba(13, 13, 13, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-color);
    padding: 16px 24px;
    z-index: 99;
}

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

.header-logo {
    height: 40px;
    width: auto;
    object-fit: contain;
}

/* ===== QUIZ SECTION ===== */
.quiz-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 60px 20px 0;
}

.quiz-container {
    max-width: 580px;
    width: 100%;
    text-align: center;
    position: relative;
}

.quiz-headline {
    font-size: 28px;
    font-weight: 800;
    line-height: 1.3;
    margin-bottom: 32px;
    color: var(--text-primary);
}

.quiz-headline .highlight {
    color: var(--orange);
    position: relative;
}

/* ===== HERO ELEMENTS ===== */
.hero-tagline {
    font-size: 15px;
    font-weight: 600;
    color: var(--text-secondary);
    text-align: center;
}

.hero-national {
    font-size: 14px;
    font-weight: 700;
    color: var(--orange);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.flag-icon {
    height: 18px;
    width: auto;
    vertical-align: middle;
}

.hero-image {
    width: 100%;
    max-width: 380px;
    height: auto;
    border-radius: 12px;
}

/* ===== QUIZ INTRO & CONTENT ===== */
.quiz-intro {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 28px;
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.quiz-content {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.4s ease, transform 0.4s ease;
}

/* ===== PROGRESS BAR ===== */
.progress-bar-container {
    width: 100%;
    height: 6px;
    background: var(--border-color);
    border-radius: 3px;
    margin-bottom: 8px;
    overflow: hidden;
}

.progress-bar {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, var(--orange), var(--orange-light));
    border-radius: 3px;
    transition: width 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.progress-text {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 28px;
    font-weight: 500;
}

/* ===== QUIZ CARDS ===== */
.quiz-card {
    opacity: 0;
    visibility: hidden;
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
    transform: translateY(20px);
    transition: opacity 0.4s ease, transform 0.4s ease, visibility 0.4s;
    pointer-events: none;
}

.quiz-card.active {
    opacity: 1;
    visibility: visible;
    position: relative;
    transform: translateY(0);
    pointer-events: auto;
}

.question-number {
    font-size: 48px;
    font-weight: 900;
    color: var(--orange);
    opacity: 0.3;
    line-height: 1;
    margin-bottom: 12px;
}

.question-text {
    font-size: 22px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 28px;
    line-height: 1.4;
}

/* ===== ANSWER BUTTONS ===== */
.answer-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
}

.btn-answer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 18px 40px;
    border: 2px solid var(--border-highlight);
    background: var(--bg-card);
    color: var(--text-primary);
    font-size: 17px;
    font-weight: 600;
    font-family: var(--font);
    border-radius: 14px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    min-width: 160px;
}

.btn-answer:hover {
    border-color: var(--orange);
    background: rgba(239, 99, 36, 0.08);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(239, 99, 36, 0.15);
}

.btn-answer:active {
    transform: translateY(0);
}

.btn-answer.selected {
    border-color: var(--orange);
    background: rgba(239, 99, 36, 0.15);
    box-shadow: 0 0 0 1px var(--orange);
}

.btn-icon {
    font-size: 22px;
}

/* ===== TRANSITION SCREENS ===== */
.transition-screen {
    display: none;
    min-height: calc(100vh - 100px);
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
}

.transition-screen.active {
    display: flex;
}

.transition-container {
    max-width: 520px;
    width: 100%;
    text-align: center;
}

.transition-icon {
    margin-bottom: 24px;
}

.spinning-circle {
    animation: spin 4s linear infinite;
    transform-origin: center;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.checkmark-path {
    stroke-dasharray: 40;
    stroke-dashoffset: 40;
    animation: drawCheck 0.6s ease 0.5s forwards;
}

@keyframes drawCheck {
    to { stroke-dashoffset: 0; }
}

.transition-title {
    font-size: 26px;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 12px;
    line-height: 1.3;
}

.transition-subtitle {
    font-size: 16px;
    color: var(--text-secondary);
    margin-bottom: 36px;
    line-height: 1.5;
}

/* ===== VEHICLE FORM ===== */
.vehicle-form {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 28px 24px;
    text-align: left;
}

.vehicle-form-label {
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 20px;
    text-align: center;
    font-weight: 500;
}

.form-group {
    margin-bottom: 16px;
}

.form-group:last-child {
    margin-bottom: 0;
}

.form-group label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-secondary);
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.autocomplete-wrapper {
    position: relative;
}

.form-group input {
    width: 100%;
    padding: 14px 16px;
    background: var(--bg-dark);
    border: 1.5px solid var(--border-highlight);
    border-radius: 10px;
    color: var(--text-primary);
    font-size: 15px;
    font-family: var(--font);
    outline: none;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-group input:focus {
    border-color: var(--orange);
    box-shadow: 0 0 0 3px rgba(239, 99, 36, 0.15);
}

.form-group input:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

.form-group input::placeholder {
    color: var(--text-muted);
}

/* ===== AUTOCOMPLETE LIST ===== */
.autocomplete-list {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--bg-card);
    border: 1px solid var(--border-highlight);
    border-radius: 10px;
    margin-top: 4px;
    max-height: 200px;
    overflow-y: auto;
    z-index: 50;
    display: none;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.4);
}

.autocomplete-list.show {
    display: block;
}

.autocomplete-item {
    padding: 12px 16px;
    cursor: pointer;
    font-size: 14px;
    color: var(--text-primary);
    transition: background 0.15s ease;
    border-bottom: 1px solid var(--border-color);
}

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

.autocomplete-item:hover {
    background: rgba(239, 99, 36, 0.1);
    color: var(--orange);
}

/* Scrollbar */
.autocomplete-list::-webkit-scrollbar {
    width: 6px;
}

.autocomplete-list::-webkit-scrollbar-track {
    background: transparent;
}

.autocomplete-list::-webkit-scrollbar-thumb {
    background: var(--border-highlight);
    border-radius: 3px;
}

/* ===== TRANSITION SCREEN 2 - RESULTS ===== */
.transition-results {
    max-width: 500px;
}

.result-loader {
    display: flex;
    justify-content: center;
    margin-bottom: 24px;
}

/* ===== STOCK PROGRESS BAR ===== */
.stock-progress-bar {
    width: 80%;
    max-width: 300px;
    height: 8px;
    background: var(--border-color);
    border-radius: 10px;
    margin: 0 auto 28px;
    overflow: hidden;
}

.stock-progress-fill {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, var(--orange), var(--orange-dark));
    border-radius: 10px;
    animation: fill-bar 3s ease-in-out forwards;
    box-shadow: 0 0 10px rgba(239, 99, 36, 0.5);
}

@keyframes fill-bar {
    0% { width: 0%; }
    100% { width: 100%; }
}

.loader-spinner {
    width: 48px;
    height: 48px;
    border: 4px solid var(--border-highlight);
    border-top-color: var(--orange);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

.result-content {
    animation: fadeInUp 0.6s ease forwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.result-badge {
    width: 72px;
    height: 72px;
    background: linear-gradient(135deg, var(--orange), var(--orange-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: 0 8px 24px rgba(239, 99, 36, 0.3);
}

.result-count {
    font-size: 28px;
    font-weight: 900;
    color: white;
}

.result-title {
    font-size: 22px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 28px;
    line-height: 1.4;
}

.result-title #stockCount {
    color: var(--orange);
    font-weight: 900;
}

.result-title #vehicleInfo {
    color: var(--orange);
    font-weight: 800;
}

/* ===== FEATURES ===== */
.result-features {
    display: flex;
    flex-direction: column;
    gap: 12px;
    text-align: left;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 18px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    color: var(--text-primary);
    transition: opacity 0.5s ease, transform 0.5s ease;
    transform: translateX(-10px);
}

.feature-item.visible {
    opacity: 1 !important;
    transform: translateX(0) !important;
}

.feature-check {
    color: #22c55e;
    font-size: 20px;
    font-weight: 700;
}
/* ===== FOOTER ===== */
.site-footer {
    border-top: 1px solid var(--border-color);
    padding: 40px 20px 32px;
    text-align: center;
    background: var(--bg-card);
}

.footer-container {
    max-width: 700px;
    margin: 0 auto;
}

/* ===== BRANDS CAROUSEL ===== */
.brands-section {
    padding: 32px 0;
    margin-bottom: 40px;
    text-align: center;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    overflow: hidden;
}

.brands-title {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-secondary);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.brands-carousel {
    overflow: hidden;
    width: 100%;
}

.brands-track {
    display: inline-flex;
    align-items: center;
    gap: 32px;
    animation: scroll-brands 20s linear infinite;
    white-space: nowrap;
}

.brands-track img {
    height: 40px;
    width: auto;
    object-fit: contain;
    opacity: 0.7;
    filter: grayscale(30%);
    transition: opacity 0.3s ease;
}

.brands-track img:hover {
    opacity: 1;
    filter: grayscale(0%);
}

@keyframes scroll-brands {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.brands-subtitle {
    font-size: 13px;
    color: var(--orange);
    font-weight: 600;
    margin-top: 20px;
}

.footer-logo {
    height: 36px;
    margin-bottom: 20px;
    opacity: 0.9;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px 24px;
    margin-bottom: 20px;
}

.footer-links a {
    color: var(--text-primary);
    text-decoration: underline;
    font-size: 13px;
    font-weight: 500;
    transition: color 0.2s ease;
}

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

.footer-info p {
    font-size: 12px;
    color: var(--text-muted);
    line-height: 1.8;
}

.footer-info a {
    color: var(--orange);
    text-decoration: underline;
}

/* ===== PRODUCT PAGE ===== */
.product-section {
    padding: 24px 16px;
}

.product-container {
    max-width: 520px;
    margin: 0 auto;
}

.product-gallery {
    margin-bottom: 24px;
}

.product-main-image {
    width: 100%;
    height: 420px;
    background: transparent;
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
    position: relative;
}

.image-disclaimer {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.65);
    color: rgba(255, 255, 255, 0.8);
    font-size: 11px;
    font-weight: 500;
    text-align: center;
    padding: 8px 12px;
    backdrop-filter: blur(4px);
}

.product-main-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    display: block;
    border-radius: 12px;
}

.product-thumbnails {
    display: flex;
    gap: 8px;
}

.product-thumbnails .thumb {
    width: 72px;
    height: 72px;
    object-fit: cover;
    border-radius: 8px;
    border: 2px solid transparent;
    cursor: pointer;
    opacity: 0.6;
    transition: all 0.2s ease;
}

.product-thumbnails .thumb:hover {
    opacity: 0.9;
}

.product-thumbnails .thumb.active {
    border-color: var(--orange);
    opacity: 1;
}

.product-info {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.product-tag {
    display: inline-block;
    background: rgba(239, 99, 36, 0.15);
    color: var(--orange);
    font-size: 12px;
    font-weight: 700;
    padding: 6px 12px;
    border-radius: 20px;
    width: fit-content;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.product-title {
    font-size: 22px;
    font-weight: 800;
    color: var(--text-primary);
    line-height: 1.3;
}

.product-vehicle {
    font-size: 14px;
    color: var(--text-secondary);
    font-weight: 500;
}

.product-pricing {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 16px 0;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.price-old {
    font-size: 14px;
    color: var(--text-muted);
    text-decoration: line-through;
}

.price-current {
    font-size: 32px;
    font-weight: 900;
    color: var(--orange);
}

.price-installment {
    font-size: 13px;
    color: var(--text-secondary);
}

.discount-tag {
    display: inline-block;
    background: #27ae60;
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 6px;
    margin-left: 8px;
    vertical-align: middle;
}

.product-colors {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.color-label {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-secondary);
}

.color-label span {
    color: var(--text-primary);
    font-weight: 700;
}

.color-options {
    display: flex;
    gap: 10px;
}

.color-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 3px solid transparent;
    cursor: pointer;
    transition: all 0.2s ease;
    outline: none;
}

.color-btn:hover {
    border-color: var(--text-muted);
}

.color-btn.active {
    border-color: var(--orange);
    box-shadow: 0 0 0 2px rgba(239, 99, 36, 0.3);
}

.btn-buy {
    width: 100%;
    padding: 18px 32px;
    background: var(--orange);
    color: white;
    font-size: 16px;
    font-weight: 800;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.btn-buy:hover {
    background: var(--orange-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(239, 99, 36, 0.3);
}

.product-features-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 16px 0;
}

.pf-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: var(--text-secondary);
    font-weight: 500;
}

.pf-check {
    color: var(--orange);
    font-weight: 700;
    font-size: 16px;
}

.btn-other-vehicle {
    width: 100%;
    padding: 14px 24px;
    background: transparent;
    color: var(--text-secondary);
    font-size: 14px;
    font-weight: 600;
    border: 1px solid var(--border-color);
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-other-vehicle:hover {
    border-color: var(--orange);
    color: var(--orange);
}

.warranty-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 0;
}

.warranty-badge img {
    width: 32px;
    height: 32px;
    object-fit: contain;
}

.warranty-badge span {
    font-size: 12px;
    font-weight: 700;
    color: var(--text-primary);
    text-transform: uppercase;
}

/* ===== VARIANT SELECTORS ===== */
.variant-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.variant-label {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-secondary);
}

.variant-label span {
    color: var(--text-primary);
    font-weight: 700;
}

.variant-toggle {
    display: flex;
    gap: 8px;
}

.toggle-btn {
    flex: 1;
    padding: 12px 20px;
    background: var(--bg-card);
    border: 1.5px solid var(--border-color);
    border-radius: 10px;
    color: var(--text-secondary);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.toggle-btn:hover {
    border-color: var(--text-muted);
}

.toggle-btn.active {
    border-color: var(--orange);
    color: var(--orange);
    background: rgba(239, 99, 36, 0.08);
}

.costura-options {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
}

.costura-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    padding: 10px 6px;
    background: var(--bg-card);
    border: 1.5px solid var(--border-color);
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.costura-btn img {
    width: 48px;
    height: 48px;
    border-radius: 6px;
    object-fit: cover;
}

.costura-btn span {
    font-size: 11px;
    font-weight: 600;
    color: var(--text-secondary);
}

.costura-btn:hover {
    border-color: var(--text-muted);
}

.costura-btn.active {
    border-color: var(--orange);
    box-shadow: 0 0 0 2px rgba(239, 99, 36, 0.2);
}

.costura-btn.active span {
    color: var(--orange);
}

/* ===== PRODUCT DESCRIPTION ===== */
.product-description {
    padding: 40px 20px;
    border-top: 1px solid var(--border-color);
}

/* ===== FEATURES GRID ===== */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-bottom: 24px;
}

.feature-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 16px 8px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    text-align: center;
}

.feature-icon-svg {
    width: 32px;
    height: 32px;
    color: var(--text-primary);
}

.feature-text {
    font-size: 12px;
    font-weight: 600;
    color: var(--text-secondary);
    line-height: 1.3;
}

.desc-container {
    max-width: 600px;
    margin: 0 auto;
}

.desc-main-title {
    font-size: 22px;
    font-weight: 900;
    color: var(--text-primary);
    text-align: center;
    margin-bottom: 32px;
    letter-spacing: 2px;
}

.desc-block {
    margin-bottom: 24px;
}

.desc-title {
    font-size: 18px;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 12px;
    line-height: 1.3;
    text-align: center;
}

.desc-block p {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 12px;
}

.highlight {
    color: var(--orange);
    font-style: italic;
    font-weight: 600;
}

.desc-list {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.desc-list li {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.6;
    padding-left: 20px;
    position: relative;
}

.desc-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--orange);
    font-weight: 700;
}

.desc-list-emoji li::before {
    content: none;
}

.desc-list-emoji li {
    padding-left: 0;
}

.desc-image-placeholder {
    width: 100%;
    padding: 60px 20px;
    background: var(--bg-card);
    border: 2px dashed var(--border-color);
    border-radius: 12px;
    text-align: center;
    color: var(--text-muted);
    font-size: 14px;
    margin-bottom: 24px;
}

.desc-image {
    width: 100%;
    border-radius: 12px;
    margin-bottom: 24px;
    display: block;
}

.desc-image-overlay {
    position: relative;
    margin-bottom: 24px;
    border-radius: 12px;
    overflow: hidden;
}

.desc-image-overlay .desc-image {
    margin-bottom: 0;
}

.desc-overlay-text {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    padding: 16px;
    text-align: center;
    font-size: 18px;
    font-weight: 800;
    color: #fff;
    background: linear-gradient(180deg, rgba(0,0,0,0.7) 0%, transparent 100%);
    z-index: 1;
}

.desc-split {
    position: relative;
    margin-top: 16px;
    min-height: 200px;
    overflow: hidden;
}

.desc-split .desc-list {
    position: relative;
    z-index: 1;
    padding-top: 5%;
}

.desc-split .desc-list li {
    font-size: 15px;
    line-height: 1.5;
}

.desc-split-image {
    position: absolute;
    right: -5%;
    top: 50%;
    transform: translateY(-50%);
    width: 55%;
    max-height: 100%;
    object-fit: contain;
    border-radius: 12px;
}




.desc-highlight {
    background: rgba(239, 99, 36, 0.05);
    border: 1px solid rgba(239, 99, 36, 0.15);
    border-radius: 14px;
    padding: 24px;
}

.desc-quote {
    font-style: italic;
    color: var(--orange) !important;
    font-weight: 600;
    text-align: center;
    margin-top: 16px;
    font-size: 15px;
}

.desc-cta {
    text-align: center;
    padding: 32px 0;
}

.desc-cta p {
    font-size: 16px;
    color: var(--text-secondary);
    margin-bottom: 8px;
}

.desc-cta-highlight {
    font-size: 20px !important;
    font-weight: 900;
    color: var(--orange) !important;
    text-transform: uppercase;
}

/* ===== MODAL ===== */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 300;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.product-main-image {
    cursor: grab;
    user-select: none;
    -webkit-user-select: none;
}

.product-main-image:active {
    cursor: grabbing;
}

.product-main-image img {
    pointer-events: none;
    -webkit-user-drag: none;
}

/* ===== TRUST BAR ===== */
.trust-bar {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 16px;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    border-radius: 10px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.3px;
}

.trust-urgency {
    background: rgba(239, 99, 36, 0.08);
    border: 1px solid rgba(239, 99, 36, 0.25);
    color: var(--orange);
}

.trust-pulse {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #4caf50;
    flex-shrink: 0;
    animation: pulse-dot 1.5s infinite;
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(76, 175, 80, 0.6); }
    50% { opacity: 0.8; box-shadow: 0 0 0 6px rgba(76, 175, 80, 0); }
}

.trust-delivery {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    color: #fff;
}

.trust-warranty {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    color: #fff;
}

.trust-warranty img {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.variant-shake {
    animation: shake 0.5s ease;
    border: 1px solid var(--orange) !important;
    border-radius: 8px;
    padding: 8px;
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    20% { transform: translateX(-6px); }
    40% { transform: translateX(6px); }
    60% { transform: translateX(-4px); }
    80% { transform: translateX(4px); }
}

/* ===== FLOATING BUY BUTTON ===== */
.floating-buy {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 999;
    padding: 12px 16px;
    padding-bottom: calc(12px + env(safe-area-inset-bottom));
    background: none;
    border: none;
    box-shadow: none;
    transition: transform 0.3s ease;
}

.floating-buy-btn {
    display: block;
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    padding: 16px;
    background: var(--orange);
    color: #fff;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 800;
    letter-spacing: 1.5px;
    cursor: pointer;
    transition: background 0.2s, transform 0.15s;
    box-shadow: 0 4px 20px rgba(239, 99, 36, 0.4);
}

.floating-buy-btn:active {
    transform: scale(0.97);
    background: #d4561e;
}

/* ===== PRODUCT RATING ===== */
.product-rating {
    display: flex;
    align-items: center;
    gap: 6px;
    margin: 6px 0 4px;
}

.product-rating-stars {
    color: #f5a623;
    font-size: 14px;
    letter-spacing: 1px;
}

.product-rating-score {
    font-size: 14px;
    font-weight: 700;
    color: var(--text-primary);
}

.product-rating-count {
    font-size: 13px;
    color: var(--text-muted);
}

/* ===== REVIEWS SECTION ===== */
.reviews-section {
    padding: 40px 20px;
    border-top: 1px solid var(--border-color);
}

.reviews-container {
    max-width: 600px;
    margin: 0 auto;
}

.reviews-title {
    font-size: 22px;
    font-weight: 800;
    color: var(--text-primary);
    text-align: center;
    margin-bottom: 16px;
}

.reviews-summary {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 24px;
}

.reviews-stars {
    color: #f5a623;
    font-size: 18px;
    letter-spacing: 2px;
}

.reviews-average {
    font-size: 20px;
    font-weight: 800;
    color: var(--text-primary);
}

.reviews-count {
    font-size: 14px;
    color: var(--text-muted);
}

.reviews-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.review-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 16px;
}

.review-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
}

.review-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--orange);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 700;
    flex-shrink: 0;
}

.review-info {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.review-name {
    font-size: 14px;
    font-weight: 700;
    color: var(--text-primary);
}

.review-badge {
    font-size: 11px;
    color: #4caf50;
    font-weight: 600;
}

.review-date {
    font-size: 12px;
    color: var(--text-muted);
    flex-shrink: 0;
}

.review-stars {
    color: #f5a623;
    font-size: 14px;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.review-text {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}

.review-text strong {
    color: var(--text-primary);
}

.modal-content {
    background: var(--bg-card);
    border-radius: 16px;
    padding: 32px 24px;
    max-width: 400px;
    width: 100%;
    text-align: center;
    position: relative;
    border: 1px solid var(--border-color);
}

.modal-close {
    position: absolute;
    top: 12px;
    right: 16px;
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 24px;
    cursor: pointer;
}

.modal-title {
    font-size: 20px;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.modal-text {
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 24px;
    line-height: 1.5;
}

.modal-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.btn-modal-primary {
    padding: 14px 24px;
    background: var(--orange);
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-modal-primary:hover {
    background: var(--orange-dark);
}

.btn-modal-secondary {
    padding: 14px 24px;
    background: transparent;
    color: var(--text-secondary);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-modal-secondary:hover {
    border-color: var(--orange);
    color: var(--orange);
}

/* ===== SIDEBAR MENU ===== */
.sidebar-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 200;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.sidebar-overlay.open {
    display: block;
    opacity: 1;
}

.sidebar {
    position: fixed;
    top: 0;
    left: -280px;
    width: 280px;
    height: 100%;
    background: var(--bg-card);
    z-index: 201;
    transition: left 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    overflow-y: auto;
    box-shadow: 4px 0 24px rgba(0, 0, 0, 0.3);
}

.sidebar.open {
    left: 0;
}

.sidebar-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 20px 16px;
    border-bottom: 1px solid var(--border-color);
}

.sidebar-logo {
    height: 28px;
}

.sidebar-close {
    background: none;
    border: none;
    color: var(--text-secondary);
    font-size: 28px;
    cursor: pointer;
    padding: 4px 8px;
    line-height: 1;
    transition: color 0.2s ease;
}

.sidebar-close:hover {
    color: var(--text-primary);
}

.sidebar a {
    display: block;
    padding: 14px 20px;
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    border-bottom: 1px solid var(--border-color);
    transition: all 0.2s ease;
}

.sidebar a:hover {
    color: var(--orange);
    background: rgba(239, 99, 36, 0.05);
    padding-left: 24px;
}

.sidebar a.active {
    color: var(--orange);
    font-weight: 600;
    border-left: 3px solid var(--orange);
}

/* ===== POLICY PAGES ===== */
.policy-page {
    min-height: calc(100vh - 200px);
    padding: 48px 20px;
}

.policy-container {
    max-width: 700px;
    margin: 0 auto;
}

.policy-container h1 {
    font-size: 32px;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.policy-updated {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 32px;
}

.policy-container section {
    margin-bottom: 28px;
}

.policy-container h2 {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 10px;
}

.policy-container p {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 10px;
}

.policy-container ul,
.policy-container ol {
    padding-left: 20px;
    margin-bottom: 10px;
}

.policy-container li {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 4px;
}

.policy-container a {
    color: var(--orange);
    text-decoration: underline;
}

/* ===== CTA BUTTON ===== */
.btn-cta {
    display: block;
    width: 100%;
    padding: 18px 32px;
    margin-top: 24px;
    background: linear-gradient(135deg, var(--orange), var(--orange-dark));
    color: white;
    font-size: 17px;
    font-weight: 700;
    font-family: var(--font);
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 16px rgba(239, 99, 36, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-cta.visible {
    animation: fadeInUp 0.5s ease forwards;
}

.btn-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(239, 99, 36, 0.45);
}

.btn-cta:active {
    transform: translateY(0);
}

/* ===== HAMBURGER MENU ===== */
.hamburger-menu {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    width: 36px;
}

.hamburger-menu span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.header-spacer {
    display: block;
    width: 36px;
}

.header-container {
    justify-content: space-between;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    /* Announcement bar on mobile */
    .announcement-content {
        gap: 12px;
        font-size: 12px;
        animation-duration: 22s;
    }

    /* Header - hamburger + logo */
    .hamburger-menu {
        display: flex;
    }

    .header-spacer {
        display: block;
    }

    .header-container {
        justify-content: space-between;
        padding: 0 4px;
    }

    .header {
        padding: 12px 16px;
        top: 33px;
    }

    .header-logo {
        height: 30px;
    }

    /* Quiz section */
    .quiz-section {
        padding: 32px 16px;
        min-height: calc(100vh - 80px);
    }

    .quiz-headline {
        font-size: 21px;
        margin-bottom: 24px;
    }

    .question-number {
        font-size: 40px;
        margin-bottom: 8px;
    }

    .question-text {
        font-size: 17px;
        margin-bottom: 20px;
    }

    .progress-bar-container {
        margin-bottom: 6px;
    }

    .progress-text {
        margin-bottom: 20px;
        font-size: 12px;
    }

    /* Buttons stack vertically */
    .answer-buttons {
        flex-direction: column;
        gap: 12px;
    }

    .btn-answer {
        min-width: 100%;
        padding: 16px 24px;
        font-size: 15px;
        border-radius: 12px;
    }

    /* Transition screens */
    .transition-screen {
        padding: 32px 16px;
        min-height: calc(100vh - 80px);
    }

    .transition-title {
        font-size: 20px;
    }

    .transition-subtitle {
        font-size: 14px;
        margin-bottom: 28px;
    }

    .transition-icon svg {
        width: 48px;
        height: 48px;
    }

    /* Vehicle form */
    .vehicle-form {
        padding: 20px 16px;
        border-radius: 12px;
    }

    .vehicle-form-label {
        font-size: 13px;
        margin-bottom: 16px;
    }

    .form-group input {
        padding: 12px 14px;
        font-size: 14px;
        border-radius: 8px;
    }

    .form-group label {
        font-size: 11px;
    }

    .form-group {
        margin-bottom: 12px;
    }

    /* Results */
    .result-badge {
        width: 60px;
        height: 60px;
    }

    .result-count {
        font-size: 24px;
    }

    .result-title {
        font-size: 17px;
        margin-bottom: 20px;
    }

    .feature-item {
        padding: 12px 14px;
        font-size: 14px;
        border-radius: 10px;
        gap: 10px;
    }

    .feature-check {
        font-size: 18px;
    }

    .result-features {
        gap: 10px;
    }

    .loader-spinner {
        width: 40px;
        height: 40px;
    }
}

@media (max-width: 380px) {
    .quiz-headline {
        font-size: 19px;
    }

    .question-text {
        font-size: 16px;
    }

    .btn-answer {
        padding: 14px 20px;
        font-size: 14px;
    }

    .transition-title {
        font-size: 18px;
    }
}

/* ===== PRODUCT PAGE MOBILE ===== */
@media (max-width: 600px) {
    .product-section {
        padding: 16px 12px;
    }

    .product-container {
        max-width: 100%;
    }

    .product-main-image {
        aspect-ratio: auto;
    }

    .product-thumbnails {
        display: flex;
        gap: 6px;
        overflow-x: auto;
        padding-bottom: 8px;
        -webkit-overflow-scrolling: touch;
    }

    .product-thumbnails .thumb {
        width: 60px;
        height: 60px;
        flex-shrink: 0;
    }

    .product-title {
        font-size: 18px;
    }

    .price-current {
        font-size: 28px;
    }

    .costura-options {
        grid-template-columns: repeat(4, 1fr);
        gap: 6px;
    }

    .costura-btn {
        padding: 8px 4px;
    }

    .costura-btn img {
        width: 40px;
        height: 40px;
    }

    .toggle-btn {
        padding: 10px 16px;
        font-size: 13px;
    }

    .color-btn {
        width: 32px;
        height: 32px;
    }

    .modal-content {
        padding: 24px 16px;
    }
}
