/* Elite BBS Rims - Main Styles */
/* Matching the original Flatsome/WordPress theme design */

:root {
    --primary-color: #008cb2;
    --secondary-color: #4ad8ff;
    --success-color: #7a9c59;
    --alert-color: #b20000;
    --dark-bg: #222;
    --light-bg: #f1f1f1;
    --text-color: #333;
    --white: #fff;
    --font-primary: 'Lato', sans-serif;
    --font-heading: 'Montserrat', sans-serif;
    --font-accent: 'Dancing Script', cursive;
}

/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
}

body {
    font-family: var(--font-primary);
    color: var(--text-color);
    line-height: 1.6;
    background-color: var(--white);
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.3;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.2s;
}

a:hover {
    color: #006f8f;
}

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

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Skip Link */
.skip-link.screen-reader-text {
    position: absolute;
    left: -9999px;
    z-index: 9999;
}

/* ==========================================================================
   HEADER STYLES - Matching Original WordPress Theme
   ========================================================================== */

header#header {
    background: rgba(10, 10, 10, 0.9);
    height: 86px;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-main {
    background-color: transparent !important;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 86px;
}

#logo {
    width: 136px;
}

#logo img {
    max-height: 86px;
    width: auto;
}

.logo-tagline {
    font-family: 'Dancing Script', cursive;
    font-size: 14px;
    color: var(--white);
    margin-top: 5px;
}

.header-nav-main {
    display: flex;
    list-style: none;
    gap: 0;
}

.header-nav-main > li > a {
    color: var(--white);
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    padding: 10px 15px;
    display: block;
}

.header-nav-main > li:hover > a,
.header-nav-main > li.active > a {
    color: var(--secondary-color);
}

/* Cart Link */
.cart-item a {
    color: var(--white);
    display: flex;
    align-items: center;
    gap: 10px;
}

.cart-icon {
    background: var(--primary-color);
    padding: 5px 10px;
    border-radius: 20px;
}

.cart-icon strong {
    font-weight: 700;
}

/* Mobile Menu */
.show-for-medium {
    display: none;
}

@media (max-width: 849px) {
    .show-for-medium {
        display: block;
    }
    .hide-for-medium {
        display: none;
    }
    header#header {
        height: 70px;
    }
    .header-inner {
        height: 70px;
    }
    #logo img {
        max-height: 70px;
    }
}

/* ==========================================================================
   HERO / SLIDER STYLES
   ========================================================================== */

.slider-wrapper {
    position: relative;
    background-color: rgb(0, 0, 0);
    min-height: 400px;
}

.hero-banner {
    position: relative;
    height: 500px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-banner .overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: var(--white);
    padding: 40px;
    max-width: 800px;
}

.hero-content h1 {
    font-size: 48px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 18px;
    line-height: 1.8;
}

/* ==========================================================================
   VEHICLE FITMENT SEARCH - Matching Original
   ========================================================================== */

/* ==========================================================================
   VEHICLE SEARCH — Premium redesign
   ========================================================================== */

#section-vehicle-search {
    position: relative;
    overflow: hidden;
}

.vsearch-bg {
    position: relative;
    background:
        radial-gradient(ellipse 80% 60% at 50% 0%, rgba(0,140,178,0.18) 0%, transparent 70%),
        linear-gradient(160deg, #0a0a0a 0%, #111318 40%, #0a0c10 100%);
    padding: 80px 24px 70px;
    isolation: isolate;
}

/* Subtle grid overlay */
.vsearch-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 48px 48px;
    pointer-events: none;
}

/* Glow orbs */
.vsearch-bg::after {
    content: '';
    position: absolute;
    top: -120px;
    left: 50%;
    transform: translateX(-50%);
    width: 700px;
    height: 400px;
    background: radial-gradient(ellipse, rgba(0,140,178,0.22) 0%, transparent 70%);
    pointer-events: none;
}

.vsearch-overlay {
    display: none;
}

.vsearch-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

/* Eyebrow */
.vsearch-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: 'Barlow', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--primary-color);
    margin-bottom: 16px;
}

.vsearch-dot {
    display: inline-block;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--primary-color);
    opacity: 0.7;
}

/* Heading */
.vsearch-heading {
    font-family: 'Barlow', sans-serif;
    font-size: clamp(28px, 4vw, 46px);
    font-weight: 800;
    color: #ffffff;
    letter-spacing: -0.5px;
    line-height: 1.1;
    margin: 0 0 14px;
    text-transform: uppercase;
}

.vsearch-subheading {
    font-family: 'Lato', sans-serif;
    font-size: 16px;
    color: rgba(255,255,255,0.5);
    margin: 0 0 40px;
    line-height: 1.5;
}

/* Search card */
.vsearch-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 20px;
    padding: 6px;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow:
        0 0 0 1px rgba(0,140,178,0.15),
        0 30px 80px rgba(0,0,0,0.5),
        inset 0 1px 0 rgba(255,255,255,0.08);
}

.vsearch-fields {
    display: flex;
    align-items: stretch;
    gap: 0;
    background: rgba(15,17,22,0.8);
    border-radius: 14px;
    overflow: visible;
    position: relative;
    z-index: 10;
}

/* Individual field */
.vsearch-field {
    flex: 1;
    padding: 18px 22px 16px;
    position: relative;
    transition: background 0.2s;
    cursor: pointer;
}

.vsearch-field:hover {
    background: rgba(0,140,178,0.07);
}

.vsearch-field--selected {
    background: rgba(0,140,178,0.1) !important;
}

.vsearch-field--error {
    background: rgba(178,0,0,0.12) !important;
    animation: vsearch-shake 0.35s ease;
}

@keyframes vsearch-shake {
    0%,100% { transform: translateX(0); }
    25%      { transform: translateX(-6px); }
    75%      { transform: translateX(6px); }
}

/* Vertical divider */
.vsearch-divider {
    width: 1px;
    background: rgba(255,255,255,0.07);
    margin: 12px 0;
    flex-shrink: 0;
}

.vsearch-label {
    display: flex;
    align-items: center;
    gap: 6px;
    font-family: 'Barlow', sans-serif;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--primary-color);
    margin-bottom: 8px;
    white-space: nowrap;
}

.vsearch-icon {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
}

.vsearch-select-wrap {
    position: relative;
    z-index: 1;
}

.vsearch-select-wrap select {
    width: 100%;
    background: transparent;
    border: none;
    outline: none;
    appearance: none;
    -webkit-appearance: none;
    font-family: 'Barlow', sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: #fff;
    cursor: pointer;
    padding-right: 22px;
    position: relative;
    z-index: 10;
}

.vsearch-select-wrap select:disabled {
    color: rgba(255,255,255,0.25);
    cursor: not-allowed;
}

.vsearch-select-wrap select option {
    background: #111318;
    color: #fff;
}

.vsearch-arrow {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 12px;
    height: 7px;
    color: rgba(255,255,255,0.35);
    pointer-events: none;
    flex-shrink: 0;
}

.vsearch-field--active .vsearch-arrow {
    color: var(--primary-color);
}

/* Search button */
.vsearch-btn {
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
    margin: 6px;
    padding: 0 30px;
    background: linear-gradient(135deg, #008cb2 0%, #00b4e0 100%);
    border: none;
    border-radius: 10px;
    color: #fff;
    font-family: 'Barlow', sans-serif;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    cursor: pointer;
    transition: transform 0.15s, box-shadow 0.2s;
    box-shadow: 0 4px 24px rgba(0,140,178,0.4);
    min-width: 180px;
}

.vsearch-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 8px 32px rgba(0,140,178,0.55);
}

.vsearch-btn:active {
    transform: translateY(0) scale(0.98);
}

.vsearch-btn-text {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    white-space: nowrap;
}

.vsearch-btn-text svg {
    width: 18px;
    height: 18px;
}

/* Shine sweep on hover */
.vsearch-btn-shine {
    position: absolute;
    inset: 0;
    background: linear-gradient(105deg, transparent 40%, rgba(255,255,255,0.2) 50%, transparent 60%);
    transform: translateX(-100%);
    transition: transform 0.45s ease;
}

.vsearch-btn:hover .vsearch-btn-shine {
    transform: translateX(100%);
}

/* Stats row */
.vsearch-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    margin-top: 30px;
    flex-wrap: wrap;
}

.vsearch-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 28px;
}

.vsearch-stat strong {
    font-family: 'Barlow', sans-serif;
    font-size: 22px;
    font-weight: 800;
    color: #fff;
    line-height: 1;
    margin-bottom: 4px;
}

.vsearch-stat span {
    font-family: 'Lato', sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.35);
}

.vsearch-stat-divider {
    width: 1px;
    height: 32px;
    background: rgba(255,255,255,0.1);
}

.vsearch-brands {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 24px;
    flex-wrap: wrap;
}

.vsearch-brands-label {
    font-family: 'Barlow', sans-serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.4);
}

.vsearch-brand-chip {
    display: inline-flex;
    align-items: center;
    padding: 8px 16px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 20px;
    font-family: 'Barlow', sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    color: rgba(255,255,255,0.75);
    text-decoration: none;
    transition: all 0.25s ease;
}

.vsearch-brand-chip:hover {
    background: rgba(0,140,178,0.2);
    border-color: rgba(0,140,178,0.4);
    color: #fff;
    transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 768px) {
    .vsearch-bg { padding: 60px 16px 50px; }
    .vsearch-fields { flex-direction: column; }
    .vsearch-divider { width: 100%; height: 1px; margin: 0 12px; width: calc(100% - 24px); }
    .vsearch-btn {
        margin: 6px;
        padding: 18px;
        min-width: unset;
        width: calc(100% - 12px);
        border-radius: 10px;
    }
    .vsearch-stats { gap: 8px; }
    .vsearch-stat { padding: 0 16px; }
    .vsearch-stat-divider { height: 24px; }
    .vsearch-brands { gap: 8px; margin-top: 20px; }
    .vsearch-brand-chip { padding: 6px 12px; font-size: 11px; }
}

@media (max-width: 480px) {
    .vsearch-stat strong { font-size: 18px; }
}

/* ==========================================================================
   SECTIONS
   ========================================================================== */

.section {
    padding: 60px 0;
}

.section.dark {
    background: var(--dark-bg);
    color: var(--white);
}

.section.light {
    background: var(--light-bg);
}

/* ==========================================================================
   PRODUCT GRID
   ========================================================================== */

.products-section {
    padding: 40px 20px;
}

.section-title {
    text-align: center;
    font-size: 32px;
    margin-bottom: 40px;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.product-card {
    background: var(--white);
    border: 1px solid #eee;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.product-card .box-image {
    position: relative;
    overflow: hidden;
}

.product-card .box-image img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    transition: transform 0.3s;
}

.product-card:hover .box-image img {
    transform: scale(1.05);
}

.product-card .box-image .badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: var(--alert-color);
    color: var(--white);
    padding: 5px 10px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 3px;
    z-index: 1;
}

.product-card .box-image .badge.sale {
    background: var(--success-color);
}

.product-card .box-content {
    padding: 20px;
    text-align: center;
}

.product-card .category {
    font-size: 12px;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 5px;
}

.product-card h3 {
    font-size: 16px;
    margin-bottom: 10px;
}

.product-card h3 a {
    color: var(--text-color);
}

.product-card h3 a:hover {
    color: var(--primary-color);
}

.product-card .price {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.product-card .price .regular-price {
    text-decoration: line-through;
    color: #999;
    font-size: 14px;
    margin-left: 10px;
}

/* ==========================================================================
   BUTTONS
   ========================================================================== */

.button {
    display: inline-block;
    padding: 12px 30px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 99px;
    cursor: pointer;
    transition: all 0.3s;
    border: none;
}

.button.primary {
    background: var(--primary-color);
    color: var(--white);
}

.button.primary:hover {
    background: #006f8f;
}

.button.is-outline {
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
}

.button.is-outline:hover {
    background: var(--primary-color);
    color: var(--white);
}

/* ==========================================================================
   ABOUT SECTION
   ========================================================================== */

.about-section {
    display: flex;
    align-items: center;
    gap: 40px;
    padding: 60px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.about-section .col {
    flex: 1;
}

.about-section .text-content ul {
    list-style: none;
    margin: 20px 0;
}

.about-section .text-content li {
    padding: 8px 0;
    padding-left: 30px;
    position: relative;
}

.about-section .text-content li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 700;
}

@media (max-width: 768px) {
    .about-section {
        flex-direction: column;
    }
}

/* ==========================================================================
   FOOTER
   ========================================================================== */

footer {
    background: var(--dark-bg);
    color: #999;
    padding: 60px 0 20px;
}

.footer-main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.footer-section h3 {
    color: var(--white);
    font-size: 18px;
    margin-bottom: 20px;
}

.footer-section p {
    line-height: 1.8;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: #999;
}

.footer-section ul li a:hover {
    color: var(--white);
}

.footer-bottom {
    text-align: center;
    padding-top: 40px;
    margin-top: 40px;
    border-top: 1px solid #333;
}

.footer-bottom p {
    font-size: 14px;
}

/* ==========================================================================
   SHOP PAGE
   ========================================================================== */

.shop-header {
    background: var(--light-bg);
    padding: 40px 20px;
    text-align: center;
}

.shop-header h1 {
    margin-bottom: 10px;
}

.shop-container {
    display: flex;
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 20px;
    gap: 40px;
}

.shop-sidebar {
    width: 250px;
    flex-shrink: 0;
}

.shop-sidebar h3 {
    font-size: 18px;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--primary-color);
}

.shop-sidebar ul {
    list-style: none;
}

.shop-sidebar ul li {
    margin-bottom: 10px;
}

.shop-sidebar ul li a {
    color: var(--text-color);
    display: block;
    padding: 8px 0;
}

.shop-sidebar ul li a:hover,
.shop-sidebar ul li.active a {
    color: var(--primary-color);
}

.shop-products {
    flex: 1;
}

.shop-products .product-grid {
    margin: 0;
}

@media (max-width: 768px) {
    .shop-container {
        flex-direction: column;
    }
    .shop-sidebar {
        width: 100%;
    }
}

/* ==========================================================================
   PRODUCT DETAIL PAGE
   ========================================================================== */

.product-detail {
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 20px;
}

.product-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.product-gallery {
    position: sticky;
    top: 100px;
}

.product-gallery-main {
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 15px;
}

.product-gallery-main img {
    width: 100%;
}

.product-gallery-thumbs {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.product-gallery-thumbs img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 5px;
    cursor: pointer;
    opacity: 0.7;
    transition: opacity 0.2s;
}

.product-gallery-thumbs img:hover,
.product-gallery-thumbs img.active {
    opacity: 1;
}

.product-info h1 {
    font-size: 28px;
    margin-bottom: 10px;
}

.product-sku {
    color: #666;
    font-size: 14px;
    margin-bottom: 15px;
}

.product-price {
    font-size: 32px;
    color: var(--primary-color);
    font-weight: 700;
    margin: 20px 0;
}

.product-price .regular-price {
    text-decoration: line-through;
    color: #999;
    font-size: 20px;
    margin-left: 15px;
}

.product-meta {
    margin: 20px 0;
}

.product-meta p {
    padding: 8px 0;
    border-bottom: 1px solid #eee;
}

.product-meta strong {
    display: inline-block;
    width: 100px;
    color: #333;
}

.add-to-cart-section {
    margin: 30px 0;
    padding: 20px;
    background: #f9f9f9;
    border-radius: 8px;
}

.add-to-cart-section .qty-input {
    width: 80px;
    padding: 10px;
    text-align: center;
    font-size: 16px;
    border: 1px solid #ddd;
    border-radius: 5px;
    margin-right: 15px;
}

.product-description {
    margin-top: 40px;
}

.product-description h2 {
    margin-bottom: 15px;
}

.product-description p {
    line-height: 1.8;
}

@media (max-width: 768px) {
    .product-detail-grid {
        grid-template-columns: 1fr;
    }
}

/* ==========================================================================
   CART PAGE
   ========================================================================== */

.cart-page {
    max-width: 1000px;
    margin: 40px auto;
    padding: 0 20px;
}

.cart-page h1 {
    margin-bottom: 30px;
}

.cart-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 30px;
}

.cart-table th,
.cart-table td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid #eee;
}

.cart-table th {
    background: #f9f9f9;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
}

.cart-table .product-col {
    display: flex;
    align-items: center;
    gap: 15px;
}

.cart-table .product-col img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 5px;
}

.cart-table input[type="number"] {
    width: 60px;
    padding: 8px;
    text-align: center;
    border: 1px solid #ddd;
    border-radius: 5px;
}

.cart-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 30px;
}

.cart-totals {
    background: #f9f9f9;
    padding: 30px;
    border-radius: 8px;
    max-width: 400px;
    margin-left: auto;
}

.cart-totals h2 {
    margin-bottom: 20px;
}

.cart-totals .total-row {
    display: flex;
    justify-content: space-between;
    padding: 15px 0;
    border-bottom: 1px solid #eee;
    font-size: 18px;
}

.cart-totals .total-row.grand-total {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
    border-bottom: none;
}

/* ==========================================================================
   CHECKOUT PAGE
   ========================================================================== */

.checkout-page {
    max-width: 800px;
    margin: 40px auto;
    padding: 0 20px;
}

.checkout-page h1 {
    margin-bottom: 30px;
}

.checkout-form {
    background: #f9f9f9;
    padding: 30px;
    border-radius: 8px;
}

.checkout-form h2 {
    margin-bottom: 20px;
    font-size: 20px;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 700;
    font-size: 14px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: inherit;
    font-size: 16px;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.form-row {
    display: flex;
    gap: 20px;
}

.form-row .form-group {
    flex: 1;
}

.alert {
    padding: 15px 20px;
    border-radius: 5px;
    margin-bottom: 20px;
}

.alert-success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.alert-error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* ==========================================================================
   STATIC PAGES
   ========================================================================== */

.page-header {
    background: var(--dark-bg);
    color: var(--white);
    padding: 60px 20px;
    text-align: center;
}

.page-header h1 {
    margin-bottom: 10px;
}

.content {
    max-width: 800px;
    margin: 60px auto;
    padding: 0 20px;
}

.content h2 {
    color: var(--primary-color);
    margin-top: 40px;
    margin-bottom: 20px;
}

.content h3 {
    color: #333;
    margin-top: 30px;
    margin-bottom: 15px;
}

.content p {
    margin-bottom: 20px;
    line-height: 1.8;
}

.content ul,
.content ol {
    margin-left: 30px;
    margin-bottom: 20px;
}

.content li {
    margin-bottom: 10px;
    line-height: 1.6;
}

/* ==========================================================================
   REVIEWS / TESTIMONIALS
   ========================================================================== */

.review-item {
    background: #f9f9f9;
    padding: 25px;
    margin-bottom: 25px;
    border-radius: 8px;
    border-left: 4px solid var(--primary-color);
}

.review-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
}

.review-author {
    font-weight: 700;
    font-size: 18px;
}

.review-rating {
    color: #ffc107;
}

.review-vehicle {
    color: #666;
    font-style: italic;
    margin-bottom: 10px;
}

.review-text {
    line-height: 1.8;
}

/* ==========================================================================
   FAQ PAGE
   ========================================================================== */

.faq-item {
    margin-bottom: 30px;
    padding: 20px;
    background: #f9f9f9;
    border-radius: 8px;
}

.faq-item h3 {
    color: var(--primary-color);
    cursor: pointer;
    margin-bottom: 10px;
}

.faq-item p {
    line-height: 1.8;
}

/* ==========================================================================
   UTILITY CLASSES
   ========================================================================== */

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

.mt-1 { margin-top: 10px; }
.mt-2 { margin-top: 20px; }
.mt-3 { margin-top: 30px; }
.mb-1 { margin-bottom: 10px; }
.mb-2 { margin-bottom: 20px; }
.mb-3 { margin-bottom: 30px; }

.pt-1 { padding-top: 10px; }
.pt-2 { padding-top: 20px; }
.pt-3 { padding-top: 30px; }
.pb-1 { padding-bottom: 10px; }
.pb-2 { padding-bottom: 20px; }
.pb-3 { padding-bottom: 30px; }

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 28px;
    }

    .hero-content p {
        font-size: 14px;
    }

    .product-grid {
        grid-template-columns: 1fr;
    }

    .section-title {
        font-size: 24px;
    }

    .form-row {
        flex-direction: column;
    }
}

/* ==========================================================================
   HERO — slow Ken Burns zoom
   ========================================================================== */

@keyframes hero-zoom {
    from { transform: scale(1);    }
    to   { transform: scale(1.12); }
}

#banner-hero .bg {
    animation: hero-zoom 10s ease-in-out infinite alternate;
    transform-origin: 44% 34%;
    will-change: transform;
}

/* Hero text redesign */
#banner-hero .banner-layers {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

#banner-hero .text-box {
    position: relative !important;
    left: auto !important;
    top: auto !important;
    transform: none !important;
    width: 100% !important;
    max-width: 820px;
    padding: 0 24px;
    text-align: center;
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-family: 'Barlow', sans-serif;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 24px;
    border: 1px solid rgba(0,180,224,0.45);
    padding: 9px 22px;
    border-radius: 99px;
    backdrop-filter: blur(8px);
    background: rgba(0,140,178,0.15);
    text-shadow: 0 0 20px rgba(0,180,224,0.6);
}

.hero-eyebrow-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--primary-color);
    display: inline-block;
    flex-shrink: 0;
    box-shadow: 0 0 8px rgba(0,180,224,0.9);
}

.hero-main-title {
    font-family: 'Barlow', sans-serif;
    font-size: clamp(52px, 9vw, 110px);
    font-weight: 800;
    line-height: 0.95;
    letter-spacing: -2px;
    text-transform: uppercase;
    color: #fff;
    margin: 0 0 12px;
    text-shadow:
        0 2px 40px rgba(0,0,0,0.8),
        0 0 80px rgba(0,140,178,0.2);
}

.hero-main-title .hero-title-accent {
    display: block;
    color: transparent;
    -webkit-text-stroke: 2px rgba(255,255,255,0.75);
    text-shadow: none;
    background: linear-gradient(90deg, rgba(255,255,255,0.9), rgba(0,180,224,0.7));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    -webkit-text-stroke: 0;
}

.hero-divider {
    width: 70px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), rgba(0,180,224,0.3), transparent);
    margin: 24px auto;
    border-radius: 3px;
    box-shadow: 0 0 12px rgba(0,140,178,0.6);
}

.hero-sub {
    font-family: 'Lato', sans-serif;
    font-size: clamp(16px, 2vw, 20px);
    color: rgba(255,255,255,0.8);
    line-height: 1.7;
    max-width: 580px;
    margin: 0 auto 40px;
    font-weight: 400;
    text-shadow: 0 1px 12px rgba(0,0,0,0.7);
}

.hero-ctas {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 52px;
}

.hero-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 17px 40px;
    background: linear-gradient(135deg, #008cb2 0%, #00b4e0 100%);
    color: #fff;
    font-family: 'Barlow', sans-serif;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 99px;
    box-shadow: 0 6px 30px rgba(0,140,178,0.55), 0 0 0 1px rgba(0,180,224,0.3);
    transition: transform 0.2s, box-shadow 0.2s;
}

.hero-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 44px rgba(0,140,178,0.7), 0 0 0 1px rgba(0,180,224,0.5);
    color: #fff;
}

.hero-btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 36px;
    background: rgba(255,255,255,0.08);
    color: #fff;
    font-family: 'Barlow', sans-serif;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    text-decoration: none;
    border: 1px solid rgba(255,255,255,0.4);
    border-radius: 99px;
    transition: border-color 0.2s, background 0.2s, transform 0.2s;
    backdrop-filter: blur(6px);
}

.hero-btn-secondary:hover {
    border-color: rgba(255,255,255,0.8);
    background: rgba(255,255,255,0.14);
    transform: translateY(-3px);
    color: #fff;
}

.hero-badges {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 28px;
    flex-wrap: wrap;
}

.hero-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'Barlow', sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: rgba(255,255,255,0.65);
    letter-spacing: 1px;
    text-shadow: 0 1px 8px rgba(0,0,0,0.5);
}

.hero-badge svg {
    width: 16px;
    height: 16px;
    color: var(--primary-color);
    flex-shrink: 0;
    filter: drop-shadow(0 0 4px rgba(0,180,224,0.6));
}

/* Entrance animation */
@keyframes hero-fade-up {
    from { opacity: 0; transform: translateY(28px); }
    to   { opacity: 1; transform: translateY(0); }
}

#banner-hero .hero-eyebrow    { animation: hero-fade-up 0.7s 0.2s both ease-out; }
#banner-hero .hero-main-title { animation: hero-fade-up 0.8s 0.35s both ease-out; }
#banner-hero .hero-divider    { animation: hero-fade-up 0.6s 0.55s both ease-out; }
#banner-hero .hero-sub        { animation: hero-fade-up 0.7s 0.65s both ease-out; }
#banner-hero .hero-ctas       { animation: hero-fade-up 0.7s 0.82s both ease-out; }
#banner-hero .hero-badges     { animation: hero-fade-up 0.6s 1.05s both ease-out; }

@media (max-width: 600px) {
    .hero-main-title { letter-spacing: -1px; }
    .hero-btn-primary, .hero-btn-secondary { padding: 15px 28px; font-size: 13px; }
    .hero-badges { gap: 16px; }
}

/* ==========================================================================
   FEATURED PRODUCTS — Premium section
   ========================================================================== */

.fp-section {
    background:
        radial-gradient(ellipse 70% 40% at 50% 0%, rgba(0,140,178,0.08) 0%, transparent 65%),
        linear-gradient(180deg, #111318 0%, #0d0f13 100%);
    padding: 90px 24px 80px;
    position: relative;
    overflow: hidden;
}

/* Subtle top border glow */
.fp-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0,140,178,0.5), transparent);
}

/* ---- Section header ---- */
.fp-header {
    text-align: center;
    margin-bottom: 56px;
}

.fp-eyebrow {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    font-family: 'Barlow', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--primary-color);
    margin-bottom: 14px;
}

.fp-eyebrow-line {
    display: inline-block;
    width: 32px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary-color));
}

.fp-eyebrow-line:last-child {
    background: linear-gradient(90deg, var(--primary-color), transparent);
}

.fp-heading {
    font-family: 'Barlow', sans-serif;
    font-size: clamp(28px, 4vw, 46px);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: -0.5px;
    color: #fff;
    margin: 0 0 12px;
}

.fp-subheading {
    font-family: 'Lato', sans-serif;
    font-size: 16px;
    color: rgba(255,255,255,0.4);
    margin: 0;
}

/* ---- Grid ---- */
.fp-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-width: 1240px;
    margin: 0 auto;
}

/* ---- Card ---- */
@keyframes fp-card-in {
    from { opacity: 0; transform: translateY(30px); }
    to   { opacity: 1; transform: translateY(0); }
}

.fp-card {
    position: relative;
    background: #16181e;
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 16px;
    overflow: hidden;
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
    animation: fp-card-in 0.6s both ease-out;
}

.fp-card:hover {
    transform: translateY(-6px);
    border-color: rgba(0,140,178,0.4);
    box-shadow: 0 20px 60px rgba(0,0,0,0.5), 0 0 0 1px rgba(0,140,178,0.2);
}

/* Invisible full-card link layer */
.fp-card-link {
    position: absolute;
    inset: 0;
    z-index: 0;
}

/* ---- Image ---- */
.fp-card-img-wrap {
    position: relative;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background: #0d0f13;
}

.fp-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    display: block;
}

.fp-card:hover .fp-card-img {
    transform: scale(1.07);
}

/* Hover overlay */
.fp-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.2) 60%, transparent 100%);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-bottom: 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 2;
}

.fp-card:hover .fp-card-overlay {
    opacity: 1;
}

.fp-overlay-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 22px;
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.35);
    border-radius: 99px;
    color: #fff;
    font-family: 'Barlow', sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    text-decoration: none;
    backdrop-filter: blur(8px);
    transform: translateY(8px);
    transition: transform 0.25s ease, background 0.2s;
    position: relative;
    z-index: 3;
}

.fp-card:hover .fp-overlay-btn {
    transform: translateY(0);
}

.fp-overlay-btn:hover {
    background: rgba(0,140,178,0.5);
    border-color: rgba(0,180,224,0.6);
    color: #fff;
}

/* ---- Badges ---- */
.fp-badges {
    position: absolute;
    top: 12px;
    left: 12px;
    display: flex;
    flex-direction: column;
    gap: 5px;
    z-index: 4;
}

.fp-badge {
    display: inline-block;
    padding: 4px 10px;
    border-radius: 99px;
    font-family: 'Barlow', sans-serif;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.fp-badge--sale {
    background: #b20000;
    color: #fff;
}

.fp-badge--new {
    background: var(--primary-color);
    color: #fff;
}

.fp-badge--sold {
    background: rgba(0,0,0,0.6);
    color: rgba(255,255,255,0.6);
    border: 1px solid rgba(255,255,255,0.2);
}

/* ---- Card info ---- */
.fp-card-info {
    padding: 18px 18px 16px;
    position: relative;
    z-index: 1;
}

.fp-card-cat {
    font-family: 'Barlow', sans-serif;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--primary-color);
    margin: 0 0 6px;
}

.fp-card-name {
    font-family: 'Barlow', sans-serif;
    font-size: 15px;
    font-weight: 700;
    line-height: 1.3;
    margin: 0 0 14px;
    color: #fff;
}

.fp-card-name a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s;
}

.fp-card-name a:hover { color: var(--primary-color); }

.fp-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid rgba(255,255,255,0.06);
    padding-top: 12px;
}

.fp-card-price {
    display: flex;
    align-items: baseline;
    gap: 8px;
}

.fp-price-now {
    font-family: 'Barlow', sans-serif;
    font-size: 17px;
    font-weight: 800;
    color: #fff;
}

.fp-price-old {
    font-family: 'Barlow', sans-serif;
    font-size: 13px;
    font-weight: 500;
    color: rgba(255,255,255,0.3);
    text-decoration: line-through;
}

.fp-card-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: rgba(0,140,178,0.15);
    border: 1px solid rgba(0,140,178,0.35);
    color: var(--primary-color);
    text-decoration: none;
    transition: background 0.2s, border-color 0.2s, transform 0.2s;
    position: relative;
    z-index: 2;
}

.fp-card-cta:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: #fff;
    transform: scale(1.1);
}

/* ---- View all ---- */
.fp-footer {
    text-align: center;
    margin-top: 52px;
}

.fp-view-all {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 40px;
    background: transparent;
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 99px;
    color: rgba(255,255,255,0.8);
    font-family: 'Barlow', sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    text-decoration: none;
    transition: border-color 0.2s, color 0.2s, background 0.2s, transform 0.2s;
}

.fp-view-all:hover {
    border-color: var(--primary-color);
    color: #fff;
    background: rgba(0,140,178,0.1);
    transform: translateY(-2px);
}

/* ---- Responsive ---- */
@media (max-width: 1100px) {
    .fp-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 760px) {
    .fp-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
    .fp-section { padding: 60px 16px 60px; }
}

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