@import url('fonts/font-campton.css');
@import url('fonts/font-bebas-neue.css');
@import url('fonts/font-gilroy.css');
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Poppins:wght@300;400;500;600;700&family=Playfair+Display:ital,wght@0,400;0,700;1,400;1,700&display=swap');

/* ===========================================
    BSG AUTO PARTS - Bootstrap 5.3 Custom Styles
    Uses Bootstrap grid system for all layout
    Custom CSS only for colors, typography, and minimal component styling
    Bootstrap-first: avoid fixed widths/heights and prefer grid/utilities
    Instruction: keep custom CSS minimal and rely on Bootstrap classes for sizing/layout.
    =========================================== */

/* CSS Custom Properties */
:root {
    /* Colors - Figma Exact */
    --color-primary: #97272C;
    --color-primary-dark: #7A1F23;
    --color-primary-light: #FA777D;
    --color-text: #231F20;
    --color-text-light: #6C696A;
    --color-text-muted: #9D9D9D;
    --color-border: #E9E9E9;
    --color-bg-light: #F7F7F7;
    --color-dark: #1A1A1A;
    --color-surface-secondary: #231F20;

    /* Layout */
    --nav-height: 140px;
    /* Header + Main Nav approximate height */

    /* Font Families */
    --font-family: 'Campton', 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-family-heading: 'Campton', 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-family-serif: 'Playfair Display', Georgia, serif;
    --font-family-campton: 'Campton', 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-family-gilroy: 'Gilroy-SemiBold', 'Campton', 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-family-bebas: 'Bebas Neue', 'Campton', 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;

    /* =============================================
       FIGMA TYPOGRAPHY SYSTEM
       Naming: --{category}-{style}-{property}
       ============================================= */

    /* Heading/H2 - Semibold 48/70 */
    --h2-semibold-size: 48px;
    --h2-semibold-line-height: 70px;
    --h2-semibold-weight: 600;
    --h2-semibold-letter-spacing: -2px;

    /* Heading/H3 - Semibold 40/48 */
    --h3-semibold-size: 40px;
    --h3-semibold-line-height: 48px;
    --h3-semibold-weight: 600;
    --h3-semibold-letter-spacing: -2px;

    /* Heading/H3 - Medium 40/48 */
    --h3-medium-size: 40px;
    --h3-medium-line-height: 48px;
    --h3-medium-weight: 500;
    --h3-medium-letter-spacing: -2px;

    /* Heading/H4 - Semibold 32/42 */
    --h4-semibold-size: 32px;
    --h4-semibold-line-height: 42px;
    --h4-semibold-weight: 600;
    --h4-semibold-letter-spacing: -1px;

    /* Heading/H5 - Semibold 24/36 */
    --h5-semibold-size: 24px;
    --h5-semibold-line-height: 36px;
    --h5-semibold-weight: 600;
    --h5-semibold-letter-spacing: 0;

    /* Heading/H6 - Semibold 20/24 */
    --h6-semibold-size: 20px;
    --h6-semibold-line-height: 24px;
    --h6-semibold-weight: 600;
    --h6-semibold-letter-spacing: 0;

    /* Body/Paragraph-Lg 20/24 */
    --paragraph-lg-size: 20px;
    --paragraph-lg-line-height: 24px;
    --paragraph-lg-weight: 400;

    /* Body/Paragraph 16/24 */
    --paragraph-size: 16px;
    --paragraph-line-height: 24px;
    --paragraph-weight: 400;

    /* Body/Paragraph-Medium 16/24 */
    --paragraph-medium-size: 16px;
    --paragraph-medium-line-height: 24px;
    --paragraph-medium-weight: 500;

    /* Body/Paragraph-Semibold 16/24 */
    --paragraph-semibold-size: 16px;
    --paragraph-semibold-line-height: 24px;
    --paragraph-semibold-weight: 600;

    /* Body/Paragraph-sm 14/18 */
    --paragraph-sm-size: 14px;
    --paragraph-sm-line-height: 18px;
    --paragraph-sm-weight: 400;

    /* Body/Paragraph-xsm 12/20 (Eyebrows) */
    --paragraph-xsm-size: 12px;
    --paragraph-xsm-line-height: 20px;
    --paragraph-xsm-weight: 500;

    /* Legacy variables (for backward compatibility) */
    --paragraph-font-size: 16px;

    /* Border Radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 16px;
}

.paragraph-font {
    font-size: var(--paragraph-font-size) !important;
}

/* ===========================================
   FIGMA TYPOGRAPHY UTILITY CLASSES
   Use these in HTML to avoid repeating typography styles
   Naming: .text-{style} matches Figma text style names
   =========================================== */

/* Headings */
.text-h2-semibold {
    font-family: var(--font-family-campton);
    font-size: var(--h2-semibold-size);
    font-weight: var(--h2-semibold-weight);
    line-height: var(--h2-semibold-line-height);
    letter-spacing: var(--h2-semibold-letter-spacing);
}

.text-h3-semibold {
    font-family: var(--font-family-campton);
    font-size: var(--h3-semibold-size);
    font-weight: var(--h3-semibold-weight);
    line-height: var(--h3-semibold-line-height);
    letter-spacing: var(--h3-semibold-letter-spacing);
}

.text-h3-medium {
    font-family: var(--font-family-campton);
    font-size: var(--h3-medium-size);
    font-weight: var(--h3-medium-weight);
    line-height: var(--h3-medium-line-height);
    letter-spacing: var(--h3-medium-letter-spacing);
}

.text-h4-semibold {
    font-family: var(--font-family-campton);
    font-size: var(--h4-semibold-size);
    font-weight: var(--h4-semibold-weight);
    line-height: var(--h4-semibold-line-height);
    letter-spacing: var(--h4-semibold-letter-spacing);
}

.text-h5-semibold {
    font-family: var(--font-family-campton);
    font-size: var(--h5-semibold-size);
    font-weight: var(--h5-semibold-weight);
    line-height: var(--h5-semibold-line-height);
}

.text-h6-semibold {
    font-family: var(--font-family-campton);
    font-size: var(--h6-semibold-size);
    font-weight: var(--h6-semibold-weight);
    line-height: var(--h6-semibold-line-height);
}

.heading-h6-semibold {
    font-family: var(--font-family-campton);
    font-size: var(--h6-semibold-size);
    font-weight: var(--h6-semibold-weight);
    line-height: var(--h6-semibold-line-height);
}

/* Body/Paragraph */
.text-paragraph-lg {
    font-family: var(--font-family-campton);
    font-size: var(--paragraph-lg-size);
    font-weight: var(--paragraph-lg-weight);
    line-height: var(--paragraph-lg-line-height);
}

.text-paragraph {
    font-family: var(--font-family-campton);
    font-size: var(--paragraph-size);
    font-weight: var(--paragraph-weight);
    line-height: var(--paragraph-line-height);
}

.text-paragraph-medium {
    font-family: var(--font-family-campton);
    font-size: var(--paragraph-medium-size);
    font-weight: var(--paragraph-medium-weight);
    line-height: var(--paragraph-medium-line-height);
}

.text-paragraph-semibold {
    font-family: var(--font-family-campton);
    font-size: var(--paragraph-semibold-size);
    font-weight: var(--paragraph-semibold-weight);
    line-height: var(--paragraph-semibold-line-height);
}

.text-paragraph-sm {
    font-family: var(--font-family-campton);
    font-size: var(--paragraph-sm-size);
    font-weight: var(--paragraph-sm-weight);
    line-height: var(--paragraph-sm-line-height);
}

.text-paragraph-xsm {
    font-family: var(--font-family-campton);
    font-size: var(--paragraph-xsm-size);
    font-weight: var(--paragraph-xsm-weight);
    line-height: var(--paragraph-xsm-line-height);
    font-style: normal;
}

/* Text Colors */
.text-body {
    color: var(--color-text-light) !important;


}

.text-heading {
    color: var(--color-text);
}

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

.text-on-dark {
    color: rgba(255, 255, 255, 0.7);
}

.text-on-action {
    color: white;
}

.pt-6 {
    padding-top: 4.5rem !important;
}

/* ===========================================
   SECTION TITLE COMPONENT
   Two-part section titles: first-part (dark) + second-part (accent)
   Typography: Campton SemiBold, H3
   =========================================== */
.section-title {
    font-family: var(--font-family-campton);
    font-size: var(--h3-semibold-size);
    line-height: var(--h3-semibold-line-height);
    letter-spacing: var(--h3-semibold-letter-spacing);
    text-align: center;
    margin-bottom: 0;
}

.section-title .first-part {
    font-weight: 500;
    color: var(--color-text);
}

.section-title .second-part {
    color: var(--color-primary);
    font-weight: 600;
}

/* ===========================================
   PAGE HERO & SHARED UTILITIES
   =========================================== */
.page-hero {
    position: relative;
    min-height: 320px;
    display: flex;
    align-items: center;
    color: #fff;
    overflow: hidden;
    background-color: var(--color-dark);
}

.page-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.8), rgba(151, 39, 44, 0.65));
    z-index: 1;
}

.page-hero .hero-bg {
    position: absolute;
    inset: 0;
    background-image: var(--hero-bg, none);
    background-size: cover;
    background-position: center;
    transform: scale(1.02);
}

.page-hero .container-fluid,
.page-hero .container {
    position: relative;
    z-index: 2;
}

.section-eyebrow {
    font-family: var(--font-family-campton);
    font-size: var(--paragraph-xsm-size);
    font-weight: 500;
    line-height: var(--paragraph-xsm-line-height);
    letter-spacing: 0.08em;
    text-transform: uppercase;

}

.section-eyebrow-primary {
    color: var(--color-primary);
}

.section-heading {
    font-family: var(--font-family-heading);
    letter-spacing: 0.04em;
}

.card-lift {
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.card-lift:hover {
    transform: translateY(-6px);
    box-shadow: 0 14px 36px rgba(0, 0, 0, 0.08) !important;
}

/* ===========================================
   DOWNLOADS
   =========================================== */
.downloads-hero-banner {
    position: relative;
    min-height: 240px;

    overflow: hidden;
    background: #741d21;
    display: flex;
    align-items: flex-end;
    color: #fff;
}

.downloads-hero-banner::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: var(--hero-bg, none);
    background-size: cover;
    background-position: center;
    opacity: 0.9;
}

.downloads-hero-banner::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.05) 0%, rgba(0, 0, 0, 0.35) 100%);
}


.downloads-banner-title {
    font-family: var(--font-family-heading);
    font-size: clamp(36px, 5vw, 72px);
    letter-spacing: 0.14em;
    color: transparent;
    -webkit-text-stroke: 2px rgba(255, 255, 255, 0.9);
    line-height: 1;
    margin: 0;
    position: relative;
    z-index: 1;
}

.download-center {
    padding: 64px 0 72px;
}



.download-center-lead {
    color: var(--color-text-light);
}

/* Download Tile - uses Bootstrap grid now, minimal custom CSS */
.download-tile {
    position: relative;
    overflow: hidden;
    color: #fff;
    text-decoration: none;
    background-color: #181818;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    isolation: isolate;
}

.download-tile::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: var(--tile-bg, none);
    background-size: cover;

    z-index: 0;
}

.download-tile-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.1) 30%, rgba(0, 0, 0, 0.55) 100%);
    z-index: 0;
}

.download-tile-title {
    font-family: var(--font-family-campton);
    font-size: 20px !important;
    line-height: var(--paragraph-semibold-line-height);
    font-weight: var(--paragraph-semibold-weight);
}

.download-tile-meta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.85);
}

.download-tile-meta .dot {
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: #fff;
    display: inline-block;
    margin-top: -2px;
}

.download-tile:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 48px rgba(0, 0, 0, 0.18);
}

.download-tile-inner {
    min-height: 300px;
    z-index: 1;
    text-align: center;
    justify-content: center !important;
}

/* Download Swipe - Mobile horizontal scroll */
.download-swipe {
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.download-swipe::-webkit-scrollbar {
    display: none;
}

@media (min-width: 992px) {
    .download-swipe {
        flex-wrap: wrap !important;
        overflow: visible !important;
    }

    .download-swipe>[class*="col-"] {
        flex-shrink: 1 !important;
    }

}

/* Brand Materials Cards */
.brand-material-card {
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}



.brand-material-card .download-link {
    font-family: var(--font-family-campton);
    font-size: var(--paragraph-sm-size);
    line-height: var(--paragraph-sm-line-height);
    font-weight: var(--paragraph-medium-weight);
    color: #4b99ff;
}

.brand-material-card .download-link:hover {
    color: var(--color-primary-dark);
}

.brand-material-card .format-badges .badge {
    font-size: 11px;
    font-weight: 500;
    padding: 4px 10px;
}

.brand-material-card .brand-logo-container {
    min-height: 80px;
}

.brand-material-card .brand-logo-container img {
    max-height: 60px;
}

/* ===========================================
   NEWS
   =========================================== */
.news-meta {
    font-family: var(--font-family-campton);
    font-size: var(--paragraph-sm-size);
    line-height: var(--paragraph-sm-line-height);
    color: var(--color-text-light);
}

.news-title {
    font-family: var(--font-family-campton);
    font-size: var(--h6-semibold-size);
    line-height: var(--h6-semibold-line-height);
    font-weight: var(--h6-semibold-weight);
}

.news-detail-content p {
    margin-bottom: 1rem;
    color: var(--color-text-light);
}

.blockquote-accent {
    border-left: 3px solid var(--color-primary);
    padding-left: 12px;
    font-style: italic;
    color: var(--color-text);
}

/* ===========================================
   FILTER TABS
   =========================================== */

.filter-tabs {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 0;
    gap: 12px;
    list-style: none;
    margin: 0;
}

.filter-tabs .filter-tab {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 12px 20px;
    background: transparent;
    border: 1px solid var(--color-text);
    border-radius: 999px;
    font-family: var(--font-family-campton);
    font-weight: 500;
    font-size: var(--paragraph-size);
    line-height: 24px;
    color: var(--color-text);
    cursor: pointer;
    transition: all 0.2s ease;
}

.filter-tabs .filter-tab:hover {
    background: var(--color-text);
    color: #fff;
}

.filter-tabs .filter-tab.active {
    background: var(--color-text);
    border-color: var(--color-text);
    font-weight: var(--paragraph-medium-weight);
    color: #fff;
}

@media (max-width: 768px) {
    .filter-tabs {
        justify-content: flex-start;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }

    .filter-tabs::-webkit-scrollbar {
        display: none;
    }

    .filter-tabs li {
        flex: 0 0 auto;
    }

    #contact-hero {
        border-radius: 0 !important;
    }
}

/* ===========================================
   MEDIA
   =========================================== */



.media-card {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-lg);
}

.media-card img {
    height: 320px;
    object-fit: cover;
    background-repeat: no-repeat;
}

.media-card.media-card-bg {
    min-height: 320px;
    background-image: var(--media-bg, none);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.media-card .badge {
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 2;
}

.media-card .play-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.65);
    color: #fff;
}

.media-hero-wrapper {
    background: #000;
    box-shadow: none;
    cursor: pointer;
}



.media-card .overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 55%, rgba(0, 0, 0, 0.78));
    z-index: 1;
}

.media-card .overlay-content {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 24px;
    z-index: 2;
    color: #fff;
}

.media-card .overlay-icon {
    position: absolute;
    bottom: 12px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    color: #fff;
    font-size: 18px;
}

.media-card h5 {
    font-family: var(--font-family-campton);
    font-size: var(--h6-semibold-size);
    line-height: var(--h6-semibold-line-height);
    font-weight: var(--h6-semibold-weight);
    letter-spacing: 0;
}


.media-hero-wrapper video {
    object-fit: contain !important;
}

.media-play-btn {
    width: 80px!important;
    height: 80px!important;
    padding: 0;
    border: none;
    background: transparent;
    cursor: pointer;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.media-play-btn img {
    width: 80px!important;
    height: 80px!important;
    display: block;
    opacity: 0.7;
}

.media-play-btn:hover {
    transform: scale(1.05);
}

@media (max-width: 767px) {

    .media-card img,
    .media-card.media-card-bg {
        height: 200px;
    }

    .media-hero-wrapper video {
        object-fit: cover !important;
    }

    .media-hero-description {
        text-align: justify;
    }
}

/* ===========================================
   CONTACT
   =========================================== */
.contact-hero-banner {
    position: relative;
    min-height: 240px;
    border-radius: 0;
    overflow: hidden;
    background: #741d21;
    display: flex;
    align-items: flex-end;
    color: #fff;
}

@media (min-width: 1200px) {
    .contact-hero-banner {
        border-radius: var(--radius-lg);
    }

    .downloads-hero-banner {
        border-radius: var(--radius-lg);
    }

}

@media (max-width: 768px) {
    .contact-download-centering {
        flex: 0 0 auto;
        width: 100%;
        padding: 0;
    }

    #contact-hero,
    #downloads-hero {
        padding: 0 !important;
    }

    #contact-hero .container-fluid,
    #downloads-hero .container-fluid {
        padding: 0;
    }

    #contact-hero .row,
    #downloads-hero .row {
        margin: 0;
    }
}

.contact-hero-banner::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: var(--hero-bg, none);
    background-size: cover;
    background-position: center;
    opacity: 0.9;
}

.contact-hero-banner::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.05) 0%, rgba(0, 0, 0, 0.35) 100%);
}

.contact-banner-title {
    font-family: var(--font-family-heading);
    font-size: clamp(36px, 5vw, 72px);
    letter-spacing: 0.14em;
    color: transparent;
    -webkit-text-stroke: 2px rgba(255, 255, 255, 0.9);
    line-height: 1;
    margin: 0;
    position: relative;
    z-index: 1;
}

/* ===========================================
   ABOUT US
   =========================================== */
#about-hero {
    padding-top: 0;
    padding-bottom: 0;
    position: relative;
}

.about-hero-banner {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.about-hero-banner::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 5rem;
    /* Taller gradient on mobile */
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 1) 100%);
    pointer-events: none;
}

.about-hero-banner img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 0;
    /* No border radius on mobile */
}

#about-intro {
    position: relative;
    padding-top: 0;
}

/* Desktop styles for about hero */
@media (min-width: 768px) {
    #about-hero {
        padding-top: 2.5rem;
    }

    .about-hero-banner img {
        height: 14.4375rem;
        /* 231px fixed height on desktop */
        border-radius: var(--radius-lg);
    }

    .about-hero-banner {
        border-radius: var(--radius-lg);
    }


    .about-hero-banner::after {
        height: 7.5rem;
        /* 120px gradient on desktop */
    }

}

.about-intro-title {
    color: var(--color-text);
}

.about-intro-title .second-part {
    color: var(--color-primary);
}

/* At a Glance Section */
#about-us-at-a-glance {
    background: radial-gradient(71.1% 256.87% at 50% 71.1%, #282A30 0%, #141515 100%);
    position: relative;
    overflow: hidden;
}

/* SVG decorative element at top-left */
#about-us-at-a-glance::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 38%;
    height: 63%;
    background: url('images/about-us-dual-background-object.svg') no-repeat top left;
    background-size: contain;
    pointer-events: none;
    z-index: 0;
}

.glance-title .text-accent {
    color: var(--color-primary);
}

.glance-description {
    color: rgba(255, 255, 255, 0.7);
    max-width: 700px;
}

/* Bird wrapper with lamp glow behind */
.glance-bird-wrapper {
    position: relative;
    display: inline-block;
}

.glance-bird-wrapper::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at center,
            rgba(255, 255, 255, 0.25) 0%,
            rgba(255, 255, 255, 0.15) 25%,
            rgba(255, 255, 255, 0.05) 50%,
            transparent 70%);
    border-radius: 50%;
    z-index: 0;
    animation: lampGlow 3s ease-in-out infinite alternate;
}

@keyframes lampGlow {
    0% {
        opacity: 0.7;
        transform: translate(-50%, -50%) scale(0.95);
    }

    100% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1.05);
    }
}

.glance-bird-img {
    max-width: 100%;
    height: auto;
    position: relative;
    z-index: 1;
    padding-right: 5%;
    /* 72/1440 = 5% */
    padding-top: 6.7%;
    /* 42/628 ≈ 6.7% */
    padding-bottom: 6.7%;
    /* 42/628 ≈ 6.7% */
}

@media (max-width: 991px) {
    h3 {
        font-size: 32px !important;
    }

    .text-h3-medium {
        font-size: 32px !important;
    }

    .text-h3-semibold {
        font-size: 32px !important;
    }

    #about-us-at-a-glance {
        min-height: auto;
    }

    .glance-bird-img {
        max-width: 90%;
        padding: 0;
    }

    .glance-bird-wrapper::before {
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 175%;
        height: 215%;
        background: radial-gradient(ellipse at center,
                rgba(255, 255, 255, 0.25) 0%,
                rgba(255, 255, 255, 0.15) 25%,
                rgba(255, 255, 255, 0.05) 50%,
                transparent 70%);
        border-radius: 50%;
        z-index: 0;
        animation: lampGlow 3s ease-in-out infinite alternate;
    }
}

/* Figures Section */

.figures-section::before {
    content: '';
    position: absolute;
    left: 3px;
    width: 100%;
    height: 100%;
    background: url(images/about-us-dual-background-object-matte.svg) no-repeat top left;
    pointer-events: none;
    z-index: 0;
    opacity: 0.3;


}




.figures-section {
    background: linear-gradient(180deg, #231F20 0%, #545454 95%);
    display: flex;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding: 5rem 0;
}

@media (max-width: 767px) {
    .figures-section>.container-fluid {
        background-image: url('images/about-figures-bg-mobile.png');
    }
}



.figures-title .first-part {
    color: #fff;
}

.figures-title .second-part {
    color: var(--color-primary);
    font-style: italic;
}

.donut-chart-container {
    position: relative;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    max-width: 100%;
    margin: 0 auto;
    gap: 0;
}

.donut-chart-container canvas {
    flex-shrink: 0;
    max-width: 280px;
    max-height: 280px;
}

/* Center label for mobile (inside donut hole) */
.donut-center-label {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    pointer-events: none;
}

.donut-center-percent {
    display: block;
    color: #fff;
    font-size: 32px;
    font-weight: 600;
    line-height: 1.2;
}

.donut-center-text {
    display: block;
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    line-height: 1.3;
}

/* Mobile: center chart, full width canvas */
@media (max-width: 991.98px) {
    .donut-chart-container {
        justify-content: center;
    }

    .donut-chart-container canvas {
        max-width: 300px;
        max-height: 300px;
    }
}

.donut-labels {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-left: -10px;
    position: relative;
    z-index: 1;
}

.donut-label {
    display: flex;
    align-items: flex-start;
    gap: 0;
}

.label-line {
    display: inline-block;
    width: 30px;
    height: 1px;
    background-color: rgba(255, 255, 255, 0.4);
    margin-top: 10px;
    flex-shrink: 0;
    margin-right: 8px;
}

.label-percent {
    display: block;
    color: #fff;
    font-size: 14px;
    line-height: 1.2;
}

.label-text {
    display: block;
    color: rgba(255, 255, 255, 0.7);
    font-size: 12px;
    line-height: 1.3;
}

.label-content {
    display: flex;
    flex-direction: column;
}

.figures-stat-value {
    color: #fff;
    display: block;
}

.figures-stat-label {
    display: block;
    margin-top: 4px;
}

/* Branches Section */
.branches-title .first-part {
    color: var(--color-text);
    font-weight: 500;
}

.branches-title .second-part {
    color: var(--color-primary);
}

.branches-description {
    font-size: var(--paragraph-font-size);
    line-height: var(--paragraph-line-height);
    font-style: normal;
    font-weight: var(--paragraph-weight);
}

@media (max-width: 767.98px) {
    .branches-description {
        font-size: var(--paragraph-font-size);
        line-height: var(--paragraph-line-height);
        font-style: normal;
        font-weight: var(--paragraph-weight);
    }
}

.country-icon {
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.country-icon img {
    height: 80px;
    width: auto;
    opacity: 0.6;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.country-icon:hover img {
    opacity: 1;
    transform: scale(1.2);
}

.country-name {
    color: var(--color-text);
}

.branch-card {
    padding: 8px;
    background: #FAFAFA;
    border-radius: 12px;
}

/* Branch Cards Swipe - Mobile horizontal scroll */
@media (max-width: 767.98px) {
    .branch-cards-swipe {
        flex-wrap: nowrap;
        overflow-x: auto;
        scrollbar-width: none;
        -ms-overflow-style: none;
        padding-bottom: 8px;
    }

    .branch-cards-swipe::-webkit-scrollbar {
        display: none;
    }

    .branch-cards-swipe>[class*="col-"] {
        flex: 0 0 75%;
        max-width: 75%;
    }
}

.branch-map {
    border-radius: 12px;
    overflow: hidden;
    background: #f5f5f5;
    height: 170px;
}

.branch-map iframe {
    width: 100%;
    height: 100%;
    border: 0;
    border-radius: 12px;
}

.branch-map img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.branch-map iframe {
    width: 100%;
    height: 100%;
    border: 0;
    border-radius: 8px;
}

.branch-name {
    color: var(--color-text);
    margin-bottom: 8px;
}

.branch-address {
    font-family: var(--font-family-campton);
    font-size: var(--paragraph-xsm-size);
    line-height: var(--paragraph-xsm-line-height);
    font-weight: var(--paragraph-xsm-weight);
    color: var(--color-text-light);
    margin-bottom: 12px;
}

.branch-contact {
    font-family: var(--font-family-campton);
    font-size: var(--paragraph-xsm-size);
    line-height: var(--paragraph-xsm-line-height);
    font-weight: var(--paragraph-xsm-weight);
    color: var(--color-text);
}

.branch-phone,
.branch-email {
    margin-bottom: 4px;
}

.branch-phone i,
.branch-email i {
    color: var(--color-primary);
    margin-right: 8px;
}

.branch-thumb {
    width: 72px;
    height: 72px;
    border-radius: 4px;
    overflow: hidden;
}
.branch-thumb:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transform: scale(1.05);
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}
.branch-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.branch-thumb-more {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
}

.branch-thumb-more::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 4px;
}

.branch-thumb-more span {
    position: relative;
    z-index: 1;
    color: #fff;
    font-size: 20px;
    font-weight: 700;
}

/* Mission Vision Motivation Section */
.mission-vision-section {
    background: linear-gradient(135deg, #2D2D2D 0%, #1a1a1a 100%);
    position: relative;
    overflow: hidden;
}

.mission-vision-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 0%, rgba(80, 80, 80, 0.2) 0%, transparent 50%);
    pointer-events: none;
}

.mvm-card {
    position: relative;
    z-index: 1;
}

.mvm-image {
    border-radius: 24px;
    overflow: hidden;
    aspect-ratio: 1/1;
}

.mvm-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Hover image swap for mission card */
.mvm-image-hover {
    position: relative;
}

.mvm-image-hover picture {
    display: block;
    width: 100%;
    height: 100%;
}

.mvm-image-hover .mvm-img-hover {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.mvm-image-hover .mvm-img-default {
    transition: opacity 0.4s ease;
}

.mvm-image-hover:hover .mvm-img-default {
    opacity: 0;
}

.mvm-image-hover:hover .mvm-img-hover {
    opacity: 1;
}

.mvm-title {
    font-family: var(--font-family-bebas);
    font-size: 40px;
    font-weight: 400;
    color: #fff;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0;
}

.mvm-title .accent {
    color: var(--color-primary);
}

.mvm-description {
    font-family: var(--font-family-campton);
    color: rgba(255, 255, 255, 0.7);
    font-size: var(--paragraph-sm-size);
    line-height: var(--paragraph-sm-line-height);
    font-weight: var(--paragraph-sm-weight);
    margin: 0;
}

/* Trusted Quality Section */
.trusted-quality-section {
    position: relative;
    background: url('images/nature-road-bg.jpg') center center / cover no-repeat;
    background-color: #2a3a2a;
    min-height: 800px;
}

.quality-badges-container {
    position: absolute;
    top: 15%;
    left: 0;
    right: 0;
    z-index: 2;
}

.quality-badge {
    text-align: center;
    padding: 0;
    position: relative;
}

@media (min-width: 992px) {
    .quality-badge {
        padding: 0 16px;
    }

    .quality-badge:not(:last-child)::after {
        content: '';
        position: absolute;
        right: -18px;
        top: 50%;
        transform: translate(50%, -50%);
        width: 2px;
        height: 72px;
        background: rgba(255, 255, 255, 0.7);
    }
}

@media (max-width: 991.98px) {
    .trusted-quality-section {
        min-height: 700px;
    }

    .quality-badges-container {
        top: 3%;
    }

    .quality-badge {
        padding: 6px 0;
    }

    .quality-badge:not(:last-child)::after {
        content: '';
        position: absolute;
        bottom: -4px;
        left: 50%;
        transform: translateX(-50%);
        width: 2px;
        height: 16px;
        background: rgba(255, 255, 255, 0.7);
    }

    .badge-text {
        font-size: 14px;
        line-height: 1.3;
    }

    .trusted-quality-content {
        bottom: 3%;
    }

    .trusted-title {
        font-size: 28px;
        line-height: 1.1;
        margin-bottom: 8px;
    }

    .trusted-description {
        font-weight: 400;
        font-size: 14px;
    }
}

.badge-text {
    color: #fff;
    font-family: var(--font-family-campton);
    font-size: var(--h6-semibold-size);
    line-height: var(--h6-semibold-line-height);
    font-weight: var(--h6-semibold-weight);
    line-height: 1.4;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.trusted-quality-content {
    position: absolute;
    bottom: 10%;
    left: 0;
    right: 0;
    z-index: 2;
}

.trusted-title {
    font-family: var(--font-family-campton);
    font-size: var(--h4-semibold-size);
    line-height: var(--h4-semibold-line-height);
    font-weight: var(--h4-semibold-weight);
    letter-spacing: 0;
    color: #fff;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.trusted-description {
    color: #fff;
    font-family: var(--font-family-campton);
    font-size: 20px;
    line-height: var(--paragraph-line-height);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    margin: 0;
}

.contact-section .section-heading {
    text-transform: none;
}



.detail-label {
    font-family: var(--font-family-campton);
    font-size: var(--paragraph-semibold-size);
    line-height: var(--paragraph-semibold-line-height);
    font-weight: var(--paragraph-semibold-weight);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--color-text);
}

.detail-link {
    font-family: var(--font-family-campton);
    color: var(--color-text);
    font-size: var(--paragraph-xsm-size);
    font-weight: var(--paragraph-xsm-weight);
    line-height: var(--paragraph-xsm-line-height);
    text-decoration: none;
}

.detail-link:hover {
    color: var(--color-primary);
}

.detail-text {
    font-family: var(--font-family-campton);
    font-size: var(--paragraph-xsm-size);
    font-weight: var(--paragraph-xsm-weight);
    line-height: var(--paragraph-xsm-line-height);
    color: var(--color-text);
}

.contact-form {
    border-radius: 14px;
}

.contact-form .form-label {
    font-family: var(--font-family-campton);
    font-size: var(--paragraph-xsm-size);
    line-height: var(--paragraph-xsm-line-height);
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--color-text-light);
}

.contact-input {
    font-family: var(--font-family-campton);
    border: 1px solid var(--color-border);
    border-radius: 10px;
    background: #fff;
    padding: 0.85rem 1rem;
    min-height: 54px;
    color: #6C696A;
    font-size: var(--paragraph-sm-size);
    font-weight: 400;
    line-height: 18px;
}

.contact-input::placeholder {
    color: var(--color-text-light);
    font-weight: 400;
}

.contact-input:focus {
    border-color: var(--color-border);
    box-shadow: none;
    outline: none;
}

select.contact-input {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-image: none;
}

.contact-submit {
    font-family: var(--font-family-campton);
    padding: 0.85rem 1.5rem;
    font-size: var(--paragraph-semibold-size);
    font-weight: var(--paragraph-semibold-weight);
    --bs-btn-bg: #231f20;
    --bs-btn-border-color: #231f20;
    --bs-btn-hover-bg: #000;
    --bs-btn-hover-border-color: #000;
}





.map-wrapper {
    height: 400px;
    border-radius: 16px;
    overflow: hidden;
}

.contact-map-iframe {
    width: 100%;
    height: 100%;
    border: 0;
    filter: grayscale(100%);
    transition: filter 0.3s ease;
}

.contact-map-iframe:hover {
    filter: grayscale(0%);
}

.map-card {
    position: absolute;
    top: 16px;
    left: 16px;
    border-radius: 12px;
}

.map-card .card-body {
    padding: 0.85rem 1.1rem;
}




/* Base Styles */
body {
    font-family: var(--font-family);
    color: var(--color-text);
    line-height: 1.6;
    font-size: 16px;
    overflow-x: hidden;
}

/* ===========================================
   GLOBAL MAX-WIDTH CONSTRAINT
   Limits content width on ultra-wide screens (2000px+)
   Uses 1800px max to avoid gaps at typical desktop sizes
   Content stays fluid up to max-width, then centers
   =========================================== */
.container-fluid>.row {
    max-width: 1800px;
    margin-left: auto;
    margin-right: auto;
}

/* Full-bleed sections that should extend edge-to-edge */
.page-hero .container-fluid>.row {
    max-width: none;
}

/* Headings - Campton */
h1 {
    font-family: var(--font-family-campton);
    font-weight: 600;
    font-size: 60px;
    line-height: 68px;
    letter-spacing: -2px;
}

/* h3 - Campton Book */
h3 {
    font-family: var(--font-family-campton);
    font-weight: 400;
    font-size: 1.75rem;
    line-height: 1.6;
    letter-spacing: -0.01em;
}

/* Text Accent Color */
.text-accent {
    color: var(--color-primary) !important;
}

/* Bootstrap Primary Color Override */
.btn-primary {
    --bs-btn-bg: var(--color-primary);
    --bs-btn-border-color: var(--color-primary);
    --bs-btn-hover-bg: var(--color-primary-dark);
    --bs-btn-hover-border-color: var(--color-primary-dark);
    --bs-btn-active-bg: var(--color-primary-dark);
    --bs-btn-active-border-color: var(--color-primary-dark);
}

.bg-primary {
    background-color: var(--color-primary) !important;
}

.text-primary {
    color: var(--color-primary) !important;
}

.badge.bg-primary {
    background-color: var(--color-primary) !important;
}

/* ===========================================
   HEADER STYLES
   =========================================== */
#site-header .header-logo {
    height: 48px;
    width: auto;
}

.header-link {
    color: var(--color-text);
    text-decoration: none;
    font-family: var(--font-family-campton);
    font-size: var(--paragraph-size);
    font-weight: var(--paragraph-weight);
    line-height: var(--paragraph-line-height);
    transition: color 0.2s ease;
}

.header-link:hover {
    color: var(--color-primary);
}

.btn-dealer {
    background: var(--color-primary);
    color: white;
    padding: 12px 20px;
    border-radius: var(--radius-md);
    font-family: var(--font-family-campton);
    font-weight: var(--paragraph-weight);
    font-size: var(--paragraph-size);
    line-height: var(--paragraph-line-height);
    text-decoration: none;
    transition: background-color 0.2s ease;
    border: none;
    cursor: pointer;
}

.btn-dealer:hover {
    background: var(--color-primary-dark);
    color: white;
}

/* Dealer Login Dropdown */
.btn-dealer.dropdown-toggle::after {
    display: none;
    /* Hide default Bootstrap caret */
}

/* Language Dropdown Arrow */
#lang-dropdown::after {
    display: none;
}

.lang-dropdown-arrow {
    display: inline-block;
    vertical-align: .255em;
    margin-top: -3px;
    margin-left: -2px;
}

.dropdown-menu {
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    padding: 8px 0;
}

.dropdown-menu {
    z-index: 99999;
}

.dropdown-item {
    padding: 10px 20px;
    font-family: var(--font-family-campton);
    font-size: var(--paragraph-sm-size);
    line-height: var(--paragraph-sm-line-height);
    color: var(--color-text);
    transition: all 0.2s ease;
    z-index: 99999;
}

.dropdown-item:hover,
.dropdown-item.active {
    background-color: var(--color-primary);
    color: white;
}

/* ===========================================
   HEADER & NAVIGATION - Sticky with Scroll Hide/Show
   =========================================== */
#site-header {
    position: relative;
    z-index: 1060;
}

/* Index Header - Transparent with blur on Mobile */
@media (max-width: 991.98px) {
    #site-header.header-index {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        background-color: rgba(255, 255, 255, 0.15) !important;
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
    }

    .header-index .mobile-menu-toggle .hamburger-line {
        background: #fff;
    }

    .header-index~.hero-wrapper {
        height: 100vh;
    }

    .product-hero-section {
        height: 100vh !important;
    }

}

/* Gradient Header (Product Dynamic Page) */
#site-header.header-glass {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1060;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.01));
}

.header-glass .header-link {
    color: #fff;
}

.header-glass .header-link:hover {
    color: var(--color-primary-light);
}

.header-glass .mobile-menu-toggle .hamburger-line {
    background: #fff;
}

.header-glass .btn-dealer {
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #fff;
}

.header-glass .btn-dealer svg {
    stroke: #fff;
}

.header-glass .btn-dealer:hover {
    background: rgba(255, 255, 255, 0.25);
    color: #fff;
}

.header-glass #lang-dropdown {
    color: #fff;
}

.header-glass .lang-dropdown-arrow {
    filter: invert(1);
}

.header-glass .header-link img,
.header-glass #lang-dropdown img:first-child {
    filter: brightness(0) invert(1);
}

/* Glassmorphic Nav (Product Dynamic Page) */
.nav-glass {
    position: absolute;
    top: 80px;
    left: 0;
    width: 100%;
    z-index: 1050;
    background: transparent;
    transition: transform 0.3s ease;
}

.nav-glass .nav-link {
    color: rgba(255, 255, 255, 0.8) !important;
}

.nav-glass .nav-link:hover {
    color: #fff !important;
}

.nav-glass .nav-link.active {
    color: #fff !important;
}

.nav-glass .nav-link::after {
    background: #fff !important;
}

#main-nav {
    position: sticky;
    top: 0;
    z-index: 1050;
    transition: transform 0.3s ease;
}

#main-nav.nav-hidden {
    transform: translateY(-100%);
}

#main-nav .nav-link {
    color: var(--color-text);
    font-family: var(--font-family-campton);
    font-weight: var(--paragraph-medium-weight);
    font-size: var(--paragraph-medium-size);
    line-height: var(--paragraph-medium-line-height);
    padding: 8px 16px;
    position: relative;
    transition: color 0.2s ease;
}

#main-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    transform: scaleX(0);
    transition: transform 0.2s ease;
}

#main-nav .nav-link:hover {
    color: var(--color-primary);
}

#main-nav .nav-link.active {
    color: var(--color-primary);
    font-weight: var(--paragraph-semibold-weight);
}

#main-nav .nav-link.active::after {
    transform: scaleX(1);
}

/* ===========================================
   HERO SECTION - Full Viewport with Slider
   =========================================== */
.hero-wrapper {
    position: relative;
    height: calc(100vh - var(--nav-height, 140px));
    min-height: 500px;
    background-color: #1a1a1a;
}

/* Hero Carousel */
.hero-carousel {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hero-carousel .carousel-inner,
.hero-carousel .carousel-item {
    height: 100%;
}

.hero-carousel .carousel-item {
    transition: opacity 0.8s ease-in-out;
}

.hero-carousel.carousel-fade .carousel-item {
    opacity: 0;
}

.hero-carousel.carousel-fade .carousel-item.active {
    opacity: 1;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 70% center;
    z-index: 0;
}

.hero-slide-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.3) 60%, rgba(0, 0, 0, 0.1) 100%);
    z-index: 1;
}

.hero-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    display: flex;
    align-items: center;
}

#hero-section {
    position: relative;
}

#hero-section .container-fluid {
    z-index: 2;
}

/* Carousel Indicators */
.hero-carousel .carousel-indicators {
    bottom: 40px;
    z-index: 3;
}

.hero-carousel .carousel-indicators button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    border: 2px solid transparent;
    margin: 0 6px;
    transition: all 0.3s ease;
}

.hero-carousel .carousel-indicators button.active {
    background-color: var(--color-primary);
    border-color: var(--color-primary);
}

.hero-carousel .carousel-indicators button:hover {
    background-color: rgba(255, 255, 255, 0.8);
}

/* Carousel Controls */
.hero-carousel .carousel-control-prev,
.hero-carousel .carousel-control-next {
    width: 60px;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 3;
}

.hero-carousel:hover .carousel-control-prev,
.hero-carousel:hover .carousel-control-next {
    opacity: 1;
}

.hero-carousel .carousel-control-prev-icon,
.hero-carousel .carousel-control-next-icon {
    width: 40px;
    height: 40px;
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    background-size: 50%;
}

.hero-title {
    font-family: var(--font-family-campton);
    font-weight: 600;
    font-style: normal;
    font-size: clamp(32px, 5vw, 60px);
    line-height: 68px;
    color: white;
    text-transform: none;
    letter-spacing: -2px;
}

.hero-title .text-accent {
    color: var(--color-primary-light) !important;
    font-family: var(--font-family-heading);
    font-style: normal;
    letter-spacing: 0.03em;
}

.hero-subtitle {
    font-family: var(--font-family-campton);
    font-size: var(--paragraph-lg-size);
    line-height: var(--paragraph-lg-line-height);
    font-weight: var(--paragraph-lg-weight);
    color: white;
    max-width: 480px;
}


/* ===========================================
   STATS SECTION (At a Glance)
   =========================================== */
.stat-value {
    font-family: var(--font-family-campton);
    font-size: var(--h3-semibold-size);
    line-height: var(--h3-semibold-line-height);
    letter-spacing: var(--h3-semibold-letter-spacing);
    font-weight: var(--h3-semibold-weight);
    color: var(--color-primary);
}

.stat-label {
    font-family: var(--font-family-campton);
    font-size: var(--paragraph-lg-size);
    line-height: var(--paragraph-lg-line-height);
    font-weight: 400;
    color: var(--color-text-light);
}

.stat-divider {
    width: 1px;
    height: 80px;
    background-color: var(--color-border);
}

/* ===========================================
   ALL MAKES SECTION
   =========================================== */
.all-makes-title {
    font-family: var(--font-family-campton);
    font-weight: var(--h3-semibold-weight);
    font-size: var(--h3-semibold-size);
    line-height: var(--h3-semibold-line-height);
    letter-spacing: var(--h3-semibold-letter-spacing);
    text-transform: none;
}

.all-makes-sht {
    font-size: var(--h3-font-size);
    font-style: normal;
    font-weight: 600;
}

/* Legend Styling */
.legend-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--color-primary);
    display: inline-block;
}

/* Mobile Chassis Diagram - Allow overflow for edge-to-edge effect */
.chassis-mobile-wrap {
    display: block;
    position: relative;
    overflow: hidden;
}

.chassis-mobile {
    box-sizing: content-box;
    width: 114%;
    float: right;
}

/* "See All" overlay link positioned over the SVG text */
.chassis-see-all-link {
    position: absolute;
    /* Aligned over SVG "See All" text (viewBox 0 0 1000 564, text at ~568,540) */
    bottom: 0;
    left: 48%;
    padding: 2px 16px;
    font-family: Campton, sans-serif;
    font-size: 11px;
    font-weight: 600;
    text-decoration: none;
    z-index: 10;
    cursor: pointer;
    /* Transparent so SVG text shows through */
    color: transparent;
}

.legend-dot.hollow {
    background: transparent;
    border: 2px solid var(--color-text);
}

.legend-line {
    width: 24px;
    height: 2px;
    display: inline-block;
}

.legend-line.solid {
    background: var(--color-text);
}

.legend-line.dashed {
    background: repeating-linear-gradient(90deg,
            var(--color-text) 0px,
            var(--color-text) 4px,
            transparent 4px,
            transparent 8px);
}

/* ===========================================
   NEWS CARDS
   =========================================== */
.news-card {
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.news-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1) !important;
}

.news-card-img {
    height: 280px;
    object-fit: cover;
    width: 100%;
}

.news-card-horizontal {
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.news-card-horizontal:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1) !important;
}

.news-card .badge-overlay {
    z-index: 1;
}

.news-card-img-sm {
    width: 200px;
    min-width: 200px;
    height: 100%;
    min-height: 160px;
    object-fit: cover;
}

#latest-news-title {
    text-align: left;
}

#latest-news-view-more {
    text-align: right;
}

.news-swipe {
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.news-swipe::-webkit-scrollbar {
    display: none;
}

/* ===========================================
   NEWS LIST PAGE - Figma Design
   =========================================== */
.news-hero-section {
    background: #fff;
    padding-top: 48px;
    padding-bottom: 48px;
}

/* Featured News Card */
.featured-news-card {
    width: 100%;
}

.featured-news-img {
    width: 100%;
    height: 377px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 8px;
}

.featured-news-title {
    font-family: var(--font-family-campton);
    font-weight: var(--h4-semibold-weight);
    font-size: var(--h4-semibold-size);
    line-height: var(--h4-semibold-line-height);
    letter-spacing: var(--h4-semibold-letter-spacing);
    color: var(--color-text);
    margin: 24px 0 0 0;
}

.news-list-card-link {
    text-decoration: none;
}
.news-list-card {
    background: #fafafa;
    border-radius: 24px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.news-list-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
}

.news-list-card-img-wrapper {
    width: 100%;
    height: 200px;
    border-radius: 8px;
    overflow: hidden;
}

.news-list-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.news-list-card-content {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.news-list-card-title {
    font-family: var(--font-family-campton);
    font-weight: var(--paragraph-semibold-weight);
    font-size: var(--paragraph-semibold-size);
    line-height: var(--paragraph-semibold-line-height);
    color: var(--color-text);
    margin: 0;
}

.news-list-card-desc {
    font-family: var(--font-family-campton);
    font-weight: var(--paragraph-xsm-weight);
    font-size: var(--paragraph-xsm-size);
    line-height: var(--paragraph-xsm-line-height);
    color: var(--color-text-light);
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 5;
    line-clamp: 5;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* News Pagination - Figma exact specs */
.news-pagination {
    display: flex;
    gap: 4px;
    align-items: center;
}

.pagination-item {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 8px;
    background: #f8f8f8;
    font-family: var(--font-family-campton);
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: var(--color-text-light);
    text-decoration: none;
    transition: all 0.2s ease;
}

.pagination-item:hover {
    background: #e9e9e9;
    color: var(--color-text);
}

.pagination-item.active {
    background: var(--color-primary);
    color: #fff;
    font-weight: 500;
}

.pagination-arrow {
    color: var(--color-text-light);
}

.pagination-arrow:hover {
    color: var(--color-primary);
}

.pagination-dots {
    background: transparent;
    pointer-events: none;
}

/* Mobile adjustments for news-list */
@media (max-width: 768px) {
    .featured-news-img {
        height: 231px;
    }

    .featured-news-title {
        font-size: 24px;
        line-height: 32px;
    }

    .news-list-card-img-wrapper {
        height: 244px;
    }

    .news-list-card-title {
        font-size: 16px;
        color: #97272C;
    }

    .news-hero-description {




        /* Body/Paragraph */
        font-family: 'Campton';
        font-style: normal;
        font-weight: 400;
        font-size: 16px;
        line-height: 25px;
        /* or 156% */
        text-align: center;

        color: #6C696A !important;



        font-style: normal;

        leading-trim: NONE;

        letter-spacing: 0px;
        text-align: center;
    }

    .news-list-card-desc {
        -webkit-line-clamp: 6;
        line-clamp: 6;
        font-style: Book;

        font-family: 'Campton';
        font-style: normal;
        font-weight: 400;
        font-size: 16px;
        line-height: 25px;


        color: #231F20;

    }

    .featured-news-title {
        color: #97272C;

    }

    .news-list-card {
        padding: 0 !important;
    }

    .news-list-card:hover {
        transform: none;
        box-shadow: none;
    }

    .news-list-card {
        border-radius: 0 !important;
    }

    .news-list-card-title {
        margin-bottom: 20px;
        font-size: 24px !important;
    }
}

.read-more {
    font-family: var(--font-family-campton);
    color: var(--color-text);
    font-weight: var(--paragraph-xsm-weight);
    font-size: var(--paragraph-xsm-size);
    line-height: var(--paragraph-xsm-line-height);
    text-decoration: underline;
    text-underline-offset: 2px;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    transition: gap 0.2s ease;
}

.read-more:hover {
    color: var(--color-primary-dark);
    gap: 10px;
}

/* Link XS - Extra Small Link Style (Figma: link-xsm) */
.link-xsm {
    font-family: var(--font-family-campton);
    font-weight: var(--paragraph-xsm-weight);
    font-size: var(--paragraph-xsm-size);
    line-height: var(--paragraph-xsm-line-height);
    text-decoration: underline;
    text-underline-offset: 2px;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    transition: color 0.2s ease, gap 0.2s ease;
}

.link-xsm:hover {
    color: var(--color-primary-dark);
    gap: 8px;
}

.link-xsm i {
    font-size: 10px;
}

/* ===========================================
   NEWSLETTER SECTION
   =========================================== */
.newsletter-heading {
    text-transform: none;
    letter-spacing: 0;
    font-family: var(--font-family-campton);
    font-weight: 700;
}

.newsletter-input {
    height: 48px;
    border-radius: 8px;
    border: 1px solid #C4C3C4;
    background: var(--color-bg-light);
    font-family: var(--font-family-campton);
    font-size: var(--paragraph-sm-size);
    line-height: var(--paragraph-sm-line-height);
    font-weight: 400;
    color: var(--color-text-light);
}

.newsletter-input::placeholder {
    font-family: var(--font-family-campton);
    font-size: var(--paragraph-sm-size);
    line-height: var(--paragraph-sm-line-height);
    font-weight: 400;
    color: var(--color-text-light);
}

.newsletter-input:focus {
    border-color: var(--color-primary);
    box-shadow: 0 0 0 0.2rem rgba(151, 39, 44, 0.15);
}

/* Newsletter Subscribe Button */
.newsletter-btn {
    font-family: var(--font-family-campton);
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0;
    color: #FFFFFF;
    height: 48px;
    border-radius: 8px;
}

.news-detail-link {
    font-family: var(--font-family-campton);
    color: var(--color-text);


    line-height: 20px;
    text-decoration: underline;
    text-underline-offset: 2px;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    transition: color 0.2s ease, gap 0.2s ease;


    font-weight: 500;
    font-style: Medium;
    font-size: 12px;
    leading-trim: NONE;

    letter-spacing: 0%;

    text-decoration-style: solid;
    text-decoration-offset: 0%;
    text-decoration-thickness: 0%;
    text-decoration-skip-ink: auto;
}

/* Homepage Newsletter - Fixed widths on desktop, full width on mobile */
.newsletter-input-home {
    width: 100%;
}

.newsletter-btn-home {
    width: 100%;
    white-space: nowrap;
    background-color: var(--color-dark) !important;
    border-color: var(--color-dark) !important;
}

@media (min-width: 576px) {
    .newsletter-input-home {
        width: 240px;
    }

    .newsletter-btn-home {
        width: 215px;
    }
}

/* ===========================================
   FOOTER
   =========================================== */
.footer {
    background-color: var(--color-dark);
    background-image: url('images/footer-bg.png');
    background-repeat: repeat;
    background-size: auto;
    color: rgba(255, 255, 255, 0.6);
    padding-top: 2rem;
}

.footer-logo {
    height: 100px;
}

.footer-company-name {
    font-family: var(--font-family-campton);
    color: white;
    font-size: var(--paragraph-sm-size);
    font-weight: var(--paragraph-semibold-weight);
    letter-spacing: 0.05em;
}

.footer-address {
    font-family: var(--font-family-campton);
    font-size: var(--paragraph-sm-size);
    line-height: var(--paragraph-sm-line-height);
}

.footer-heading {
    font-family: var(--font-family-campton);
    color: white;
    font-size: var(--paragraph-sm-size);
    font-weight: var(--paragraph-semibold-weight);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.footer-heading a {
    color: white;
}

.footer-heading a:hover {
    color: rgba(255, 255, 255, 0.8);
}

.footer-links li {
    margin-bottom: 4px;
    text-decoration: none !important;
}

.footer-links a {
    font-family: var(--font-family-campton);
    color: white;
    text-decoration: none !important;
    font-size: var(--paragraph-sm-size);
    transition: color 0.2s ease;
}

.footer-links a:hover {
    color: white;
}

.footer-link-text {
    font-family: var(--font-family-campton);
    color: rgba(255, 255, 255, 0.6);
    font-size: var(--paragraph-sm-size);
}

.footer-product-lines {
    margin: 0 auto;

}

@media (min-width: 992px) {
    .footer-product-lines {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .footer-product-lines {
        max-width: 100%;
    }
}

@media (max-width: 576px) {
    .footer-product-lines {
        max-width: 300px;
    }
}

.footer-tag {
    font-family: var(--font-family-campton);
    font-size: var(--paragraph-sm-size);
    text-decoration: none !important;
    transition: color 0.2s ease;
}



.social-icon {
    width: 28px;
    height: 28px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: var(--color-primary);
    border-radius: 50%;
    color: white;
    font-size: 24px;
    transition: all 0.2s ease;
}

.social-icon:hover {
    background-color: var(--color-primary-dark);
    color: white;
    transform: translateY(-2px);
}

/* Scroll to Top Button */
#scrollUp {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: var(--color-primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
    z-index: 1040;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

#scrollUp:hover {
    background-color: var(--color-primary-dark);
    transform: translateY(-2px);
}

#scrollUp.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

#scrollUp i {
    font-size: 20px;
}

.footer-copyright {
    background: var(--color-primary);
    color: rgba(255, 255, 255, 0.9);
}

/* ===========================================
   PRODUCT LINES PAGE STYLES
   =========================================== */

/* Hero Banner */
#product-lines-hero {
    padding: 2rem 0;
}

.hero-banner {
    min-height: 280px;
}

.hero-overlay {
    background: linear-gradient(90deg, rgba(26, 26, 26, 0.85) 0%, rgba(26, 26, 26, 0.4) 100%);
}


/* Category Cards */
.category-card-inner {
    transition: all 0.3s ease;
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.category-card:hover .category-card-inner {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1) !important;
}

.category-card-icon {
    height: 160px;
    overflow: hidden;
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.category-card-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.category-card:hover .category-card-icon img {
    transform: scale(1.05);
}

.category-card .card-body h3 {
    font-family: var(--font-family-campton);
    font-size: var(--paragraph-semibold-size);
    line-height: var(--paragraph-semibold-line-height);
    font-weight: var(--paragraph-semibold-weight);
    letter-spacing: 0;
}

.category-card .btn-outline-dark {
    border-width: 1.5px;
    font-weight: 500;
    transition: all 0.2s ease;
}

.category-card:hover .btn-outline-dark {
    background-color: var(--color-primary);
    border-color: var(--color-primary);
    color: white;
}

/* ===========================================
   UTILITY CLASSES
   =========================================== */
.bg-light {
    background-color: var(--color-bg-light) !important;
}

/* Form focus states */
.form-control:focus {
    border-color: var(--color-primary);
    box-shadow: 0 0 0 0.2rem rgba(151, 39, 44, 0.15);
}

/* ===========================================
   CATEGORIES PAGE STYLES
   =========================================== */

/* Hero Section */
#categories-hero {
    min-height: 400px;
    display: flex;
    align-items: center;
}

.categories-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.categories-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(151, 39, 44, 0.6) 100%);
}

.categories-hero-content {
    padding: 80px 0;
}

.categories-hero-title {
    font-family: var(--font-family-campton);
    font-size: var(--h2-semibold-size);
    line-height: var(--h2-semibold-line-height);
    font-weight: var(--h2-semibold-weight);
    letter-spacing: var(--h2-semibold-letter-spacing);
    margin-bottom: 16px;
}

.categories-hero-subtitle {
    font-family: var(--font-family-campton);
    font-size: var(--paragraph-lg-size);
    line-height: var(--paragraph-lg-line-height);
    font-weight: var(--paragraph-lg-weight);
    opacity: 0.9;
    max-width: 600px;
}

/* Category Cards */
.category-card {
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all 0.3s ease;
}

.category-card:hover {
    transform: translateY(-8px);
}

.category-card-inner {
    background: #fff;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: box-shadow 0.3s ease;
}

.category-card:hover .category-card-inner {
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.category-card-image {
    position: relative;
    height: 180px;
    overflow: hidden;
}

.category-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.category-card:hover .category-card-image img {
    transform: scale(1.1);
}

.category-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent 40%, rgba(0, 0, 0, 0.4) 100%);
}

.category-card-content {
    padding: 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.category-card-icon {
    width: 48px;
    height: 48px;
    background: var(--color-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    margin-top: -48px;
    position: relative;
    z-index: 2;
    box-shadow: 0 4px 12px rgba(151, 39, 44, 0.3);
}

.category-card-icon i {
    font-size: 20px;
    color: #fff;
}

.category-card-title {
    font-family: var(--font-family-campton);
    font-size: var(--paragraph-semibold-size);
    line-height: var(--paragraph-semibold-line-height);
    font-weight: var(--paragraph-semibold-weight);
    color: var(--color-text);
    margin-bottom: 8px;
    text-transform: none;
    letter-spacing: 0;
}

.category-card-desc {
    font-family: var(--font-family-campton);
    font-size: var(--paragraph-sm-size);
    line-height: var(--paragraph-sm-line-height);
    color: var(--color-text-light);
    margin-bottom: 16px;
    flex: 1;
}

.category-card-link {
    font-family: var(--font-family-campton);
    font-size: var(--paragraph-sm-size);
    font-weight: var(--paragraph-semibold-weight);
    color: var(--color-primary);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: gap 0.3s ease;
}

.category-card:hover .category-card-link {
    gap: 12px;
}

.category-card-link i {
    transition: transform 0.3s ease;
}

.category-card:hover .category-card-link i {
    transform: translateX(4px);
}

/* CTA Section */
#categories-cta {
    background: linear-gradient(135deg, var(--color-dark) 0%, #2a2a2a 100%);
}

#categories-cta .btn-primary {
    padding: 12px 32px;
    font-weight: 600;
}

/* ===========================================
   PRODUCT GROUP PAGE STYLES (Frame 326)
   =========================================== */

/* Category Hero Section */
.category-hero {
    padding-top: 40px;
}

.category-hero img {
    border-radius: 16px;
}

/* Category Intro Section */

.category-intro .category-description {
    font-size: 16px;
    line-height: 1.6;
    color: var(--color-text-light);
}

/* Product Groups Section */
.product-groups-section .section-title {
    font-family: var(--font-family-heading);
    font-size: 48px;
    font-weight: 400;
    letter-spacing: 1px;
}

/* Feature List */
.feature-list .feature-item {
    font-size: 20px;
    line-height: 1.5;
}

.feature-list .feature-item i {
    flex-shrink: 0;
}

/* Product Group Cards */
.product-group-card {
    background: #ffffff;
    border: 1px solid #ececec;
    border-radius: 8px;
    transition: all 0.3s ease;
    min-height: 120px;
}

.product-group-card:hover {
    border-color: var(--color-primary);
    box-shadow: 0 4px 12px rgba(151, 39, 44, 0.1);
}

.product-group-card .product-icon {
    width: 62px;
    height: 62px;
    flex-shrink: 0;
}

.product-group-card .product-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 8px;
}

.product-group-card .product-name {
    font-family: var(--font-family-campton);
    font-size: var(--paragraph-semibold-size);
    line-height: var(--paragraph-semibold-line-height);
    font-weight: var(--paragraph-semibold-weight);
    letter-spacing: 0;
}

.product-group-card .product-count {
    font-family: var(--font-family-campton);
    font-size: var(--paragraph-xsm-size);
    line-height: var(--paragraph-xsm-line-height);
    font-weight: var(--paragraph-xsm-weight);
    color: var(--color-text-light);
}

.product-group-card .view-more {
    font-family: var(--font-family-campton);
    font-size: var(--paragraph-xsm-size);
    line-height: var(--paragraph-xsm-line-height);
    font-weight: var(--paragraph-xsm-weight);
    color: var(--color-text);
    display: flex;
    align-items: center;
    gap: 4px;
    text-decoration: underline;
    text-underline-offset: 2px;
    transition: color 0.2s ease;
}

.product-group-card:hover .view-more {
    color: var(--color-primary);
}

.product-group-card .view-more i {
    font-size: 12px;
    transition: transform 0.2s ease;
}

.product-group-card:hover .view-more i {
    transform: translateX(4px);
}

/* Product Group - Mobile swipe & vertical cards */
@media (max-width: 991.98px) {
    .product-group-swipe {
        flex-wrap: nowrap;
        overflow-x: auto;
        scrollbar-width: none;
        -ms-overflow-style: none;
        padding-bottom: 8px;
    }

    .product-group-swipe::-webkit-scrollbar {
        display: none;
    }

    .product-group-swipe>[class*="col-"] {
        flex: 0 0 45%;
        max-width: 45%;
    }

    /* Vertical card layout on mobile */
    .product-group-card {
        flex-direction: column;
        align-items: flex-start !important;
        padding: 24px 20px !important;
        min-height: auto;
    }

    .product-group-card .product-icon {
        width: 80px;
        height: 80px;
        margin-bottom: 12px;
    }

    .product-group-card .product-name {
        font-size: 18px;
        font-weight: 700;
        color: var(--color-text);
    }

    .product-group-card .product-count {
        font-size: 14px;
        margin-top: 4px;
    }

    .product-group-card .view-more {
        margin-top: 12px;
        border: 1px solid var(--color-text);
        border-radius: 4px;
        padding: 6px 14px;
        text-decoration: none;
        padding-top: 10px;
    }
}


/* ===========================================
   SOCIAL MEDIA CARDS (Brand Events)
   =========================================== */
.social-card {
    border-radius: 8px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.social-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.social-card .card-header {
    border-radius: 8px 8px 0 0;
}

.social-card .brand-avatar {
    object-fit: contain;
    background: var(--color-bg-light);
    padding: 4px;
}

.social-card .brand-handle {
    font-size: 11px;
}

.social-card .card-img-top {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
}

.social-card .card-footer {
    border-radius: 0 0 8px 8px;
}

.social-card .card-body {
    padding: 1rem;
}

.social-card .card-text {
    line-height: 1.5;
}

/* ===========================================
   PRODUCT LINES PAGE
   =========================================== */
.product-line-card {
    transition: transform 0.2s ease;
}

.product-line-card:hover {
    transform: translateY(-4px);
}

.product-line-card:hover .product-line-image {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.product-line-image {
    aspect-ratio: 4 / 3;
    background-color: #f5f5f5;
    transition: box-shadow 0.2s ease;
}

.product-line-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ===========================================
   PRODUCT HERO SECTION (Dynamic Page)
   =========================================== */
.product-hero-section {

    width: 100%;
    overflow: hidden;
}

.product-hero-section .ratio {
    background: #000;
}

.product-hero-video {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: contain;
}

/* Product Details Section */
.btn-product-tab {
    padding: 10px 24px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
    border: 1px solid var(--color-border);
    background: #fff;
    color: var(--color-text);
    transition: all 0.2s ease;
}

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

.btn-product-tab.active {
    background: var(--color-text);
    color: #fff;
    border-color: var(--color-text);
}

.product-image-markers {
    position: relative;
    display: inline-block;
}

.product-marker {
    border-radius: 50%;
    background: transparent;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform 0.2s ease;
    height: 40px;
    width: 40px;
    padding: 0;
}

.product-marker:hover {
    transform: scale(1.08);
}

.product-marker-dot {
    position: relative;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: visible;
}

.product-marker-dot-inner {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #fff;
    position: relative;
    z-index: 2;
}

.product-marker-dot::before,
.product-marker-dot::after {
    content: "";
    position: absolute;
    inset: -2px;
    border-radius: 50%;
    border: 2px solid rgba(151, 39, 44, 0.6);
    transform: scale(1);
    opacity: 0.9;
    pointer-events: none;
    animation: product-marker-wave 1.8s infinite;
}

.product-marker-dot::after {
    animation-delay: 0.6s;
}

@keyframes product-marker-wave {
    0% {
        transform: scale(1);
        opacity: 0.9;
    }

    100% {
        transform: scale(1.8);
        opacity: 0;
    }
}

/* Product Marker Wrapper - Pozisyonu buradan kontrol edin */
.product-marker-wrapper {
    position: absolute;
    z-index: 10;
}

.product-marker-wrapper.active {
    z-index: 50;
}

/* Product Marker Popup */
.product-marker-popup {
    position: absolute;
    left: calc(100% + 12px);
    top: 50%;
    transform: translateY(-50%) translateX(10px);
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
    padding: 16px;
    min-width: 220px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
    z-index: 100;
    white-space: nowrap;
}

.product-marker-popup.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(-50%) translateX(0);
}

.product-marker-popup-close {
    position: absolute;
    top: 8px;
    right: 8px;
    width: 24px;
    height: 24px;
    border: none;
    background: transparent;
    color: var(--color-text-light);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    transition: color 0.2s ease;
}

.product-marker-popup-close:hover {
    color: var(--color-text);
}

.product-marker-popup-title {
    font-family: var(--font-family-campton);
    font-size: 14px;
    font-weight: 600;
    color: var(--color-text);
    margin-bottom: 8px;
    padding-right: 20px;
}

.product-marker-popup-text {
    font-size: 13px;
    color: var(--color-text-light);
    line-height: 1.5;
    margin: 0;
}

.product-description-title {
    font-family: var(--font-family-campton);
    font-size: 16px !important;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--color-text);
}




/* Product Features Section */
.product-features-section {
    position: relative;
    aspect-ratio: 1440 / 626;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.product-features-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.product-features-bg img {
    width: 100%;
    height: 100%;
    object-fit: fill;
}

.product-feature-item {
    padding: 20px;
}

.product-feature-icon {
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-feature-icon img {
    height: 40px;
    width: auto;
    filter: brightness(0) invert(1);
}

.product-feature-title {
    font-family: var(--font-family-campton);
    font-size: var(--paragraph-font-size);
    font-weight: 500;
    color: #fff;
    letter-spacing: 0;
    line-height: var(--paragraph-line-height);
    margin: 0;
    text-transform: uppercase;
}

.product-feature-title strong {
    font-weight: 700;
}

/* Product Group Dynamic - Mobile Responsive */
@media (max-width: 768px) {
    .product-marker-popup {
        position: fixed;
        left: 16px;
        right: 16px;
        bottom: 16px;
        top: auto;
        transform: translateY(20px);
        min-width: auto;
        white-space: normal;
        border-radius: 12px;
        z-index: 1000;
    }

    .product-marker-popup.show {
        transform: translateY(0);
    }

    .product-features-section {
        aspect-ratio: auto;
        padding: 48px 0;
    }

    .counter-value {
        font-size: 48px;
    }
}

/* ===========================================
   PRODUCT GROUP STATIC PAGE STYLES
   =========================================== */

.product-static-section {
    padding: 48px 0;
}

.product-static-desc {
    font-family: var(--font-family-campton);
    font-size: var(--paragraph-font-size);
    font-weight: 400;
    line-height: var(--paragraph-line-height);
    color: var(--color-text-light);
    max-width: 848px;
    text-align: center;
}

.product-static-image {
    max-width: 540px;
    margin: 0 auto;
}

.btn-static-tab {
    font-family: var(--font-family-campton);
    font-size: var(--paragraph-font-size);
    font-weight: 400;
    line-height: var(--paragraph-line-height);
    padding: 12px 20px;
    border: 1px solid var(--color-text);
    border-radius: 999px;
    background: transparent;
    color: var(--color-text);
    transition: all 0.3s ease;
}

.btn-static-tab:hover {
    background: var(--color-text);
    color: #fff;
}

.btn-static-tab.active {
    background: var(--color-text);
    border-color: var(--color-text);
    color: #fff;
    font-weight: 500;
}

.product-static-content {
    background: #F9F9F9;
    border-radius: 12px;
    padding: 28px 16px;
}

.product-static-content-title {
    font-family: var(--font-family-campton);
    font-size: var(--paragraph-font-size);
    font-weight: 600;
    line-height: var(--paragraph-line-height);
    color: var(--color-text);
    margin-bottom: 20px;
}

.product-static-content-text {
    font-family: var(--font-family-campton);
    font-size: var(--paragraph-font-size);
    font-weight: 400;
    line-height: var(--paragraph-line-height);
    color: var(--color-text-light);
    margin: 0;
}

.hidden-on-desktop {
    display: none !important;
}

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

@media (max-width: 991.98px) {
    .hidden-on-mobile {
        display: none !important;
    }
}

/* Hero Section Mobile */
@media (max-width: 768px) {
    .hero-title {
        font-size: clamp(28px, 8vw, 48px);
        line-height: 1.1;
    }

    .hero-subtitle {
        font-size: var(--paragraph-sm-size);
        line-height: var(--paragraph-sm-line-height);
    }

    .hero-carousel .carousel-indicators {
        bottom: 20px;
    }

    .hero-carousel .carousel-control-prev,
    .hero-carousel .carousel-control-next {
        display: none;
    }



    .text-paragraph {
        font-size: 15px;
        line-height: 1.6;
    }

    .section-eyebrow {
        font-size: 11px;
    }
}

/* Navigation Mobile Adjustments */
@media (max-width: 576px) {
    #main-nav .nav-link {
        font-size: 13px;
        padding: 6px 10px;
    }

    .btn-dealer {
        padding: 8px 12px;
        font-size: 12px;
    }
}

/* ===========================================
   MOBILE MENU STYLES
   =========================================== */

/* Hamburger Toggle Button */
.mobile-menu-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    padding: 8px;
    background: transparent;
    border: none;
    cursor: pointer;
}

.mobile-menu-toggle .hamburger-line {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--color-primary);
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* Mobile Menu Offcanvas */
.mobile-menu {
    width: 100% !important;
    max-width: 100% !important;
    height: 100vh !important;
    top: 0 !important;
    z-index: 9999 !important;
    background: var(--color-primary) !important;
    border-left: none !important;
}

.mobile-menu.show,
.mobile-menu.showing {
    visibility: visible !important;
}

@media (min-width: 576px) {
    .mobile-menu {
        max-width: 375px !important;
    }
}

.mobile-menu-header {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 28px 24px;
    border-bottom: none;
    background: var(--color-primary);
    position: relative;
}

.mobile-menu-logo {
    height: 44px;
    width: auto;
}

.mobile-menu-close {
    display: flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    border: none;
    color: white;
    font-family: var(--font-family-campton);
    font-size: 16px;
    font-weight: 400;
    cursor: pointer;
    padding: 0;
    position: absolute;
    right: 24px;
    top: 50%;
    transform: translateY(-50%);
}

.mobile-menu-close svg {
    stroke: white;
}

.mobile-menu-body {
    display: flex;
    flex-direction: column;
    padding: 0 3.5rem 1.5rem;
    overflow-y: auto;
}

/* Mobile Navigation */
.mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 1.75rem;
}

.mobile-nav-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    color: white;
    text-decoration: none;
    font-family: var(--font-family-campton);
    font-size: 20px;
    font-weight: 600;
    line-height: 24px;
    background: transparent;
    border: none;
    padding: 0;
    cursor: pointer;
    transition: opacity 0.2s ease;
}

.mobile-nav-item:hover {
    color: white;
    opacity: 0.8;
}

.mobile-nav-item svg {
    stroke: white;
    flex-shrink: 0;
}

/* Accordion chevron rotation */
.mobile-nav-accordion .mobile-nav-item[aria-expanded="true"] .mobile-nav-chevron {
    transform: rotate(180deg);
}

.mobile-nav-chevron {
    transition: transform 0.3s ease;
}

/* Submenu */
.mobile-nav-submenu {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 16px 0 0 32px;
}

.mobile-nav-subitem {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: white;
    text-decoration: none;
    font-family: var(--font-family-campton);
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    transition: opacity 0.2s ease;
}

.mobile-nav-subitem:hover {
    color: white;
    opacity: 0.8;
}

.mobile-nav-subitem svg {
    stroke: white;
    flex-shrink: 0;
}

/* Menu Divider */
.mobile-menu-divider {
    border: none;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    margin: 2rem 0;
    opacity: 1;
}

/* Quick Links */
.mobile-quick-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 0;
}

.mobile-quick-link {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: white;
    text-decoration: none;
    font-family: var(--font-family-campton);
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    transition: opacity 0.2s ease;
}

.mobile-quick-link:hover {
    color: white;
    opacity: 0.8;
}

.mobile-quick-link svg {
    stroke: white;
}

.mobile-language-selector {
    cursor: pointer;
    width: 100%;
    background: transparent;
    border: none;
    padding: 0;
}

.mobile-language-selector .d-flex {
    color: white;
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
}

/* Mobile Language Options */
.mobile-language-options {
    display: flex;
    flex-direction: column;
    padding: 8px 32px 8px 56px;
    gap: 8px;
}

.mobile-language-option {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-family: var(--font-family-campton);
    font-size: 14px;
    font-weight: 400;
    padding: 8px 0;
    transition: color 0.2s ease;
}

.mobile-language-option:hover,
.mobile-language-option.active {
    color: white;
}

/* Dealer Login Button */
.mobile-dealer-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.25rem;
    padding: 0.75rem;
    margin-top: 2rem;
    background: white;
    border: 1px solid white;
    border-radius: 0.5rem;
    color: var(--color-primary);
    text-decoration: none;
    font-family: var(--font-family-campton);
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    transition: all 0.2s ease;
    width: 100%;
}

.mobile-dealer-btn:hover {
    background: rgba(255, 255, 255, 0.9);
    color: var(--color-primary);
}

.mobile-dealer-btn svg {
    stroke: var(--color-primary);
}

/* Social Media Links */
.mobile-social-links {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 10.625rem;
}

.mobile-social-img {
    max-width: 12.5rem;
    height: auto;
}

/* Hide main nav on mobile */
@media (max-width: 991.98px) {
    #main-nav {
        display: none !important;
    }

}

/* ===================================
   NEWS DETAIL PAGE STYLES
   =================================== */

/* News Detail Hero */
.news-detail-hero {
    padding-top: 24px;
    padding-bottom: 24px;
}

.news-detail-hero img {
    max-height: 500px;
    object-fit: cover;
}

/* Breadcrumb */
.news-detail-breadcrumb {
    font-family: var(--font-primary);
    font-size: 14px;
    color: var(--color-text-light);
}

.news-detail-breadcrumb a {
    color: var(--color-text-light);
    transition: color 0.2s ease;
}

.news-detail-breadcrumb a:hover {
    color: var(--color-primary);
}

.news-detail-breadcrumb .text-primary {
    color: var(--color-primary) !important;
    font-weight: 500;
}

/* Title */
.news-detail-title {
    font-family: var(--font-primary);
    font-size: 36px;
    font-weight: 600;
    line-height: 1.2;
    color: var(--color-text);
}

@media (max-width: 768px) {
    .news-detail-title {
        font-size: 28px;
    }
}

/* Content */
.news-detail-content {
    font-family: var(--font-primary);
    font-size: 16px;
    line-height: 1.7;
    color: var(--color-text);
    text-align: justify;
}

.news-detail-content p {
    margin-bottom: 1.5rem;
}

/* Share Section */
.share-label {
    font-family: var(--font-primary);
    font-size: 14px;
    color: var(--color-text);
}

.share-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 1px solid var(--color-border);
    color: var(--color-text);
    text-decoration: none;
    transition: all 0.2s ease;
}

.share-icon:hover {
    background: var(--color-primary);
    border-color: var(--color-primary);
    color: white;
}

.share-icon i {
    font-size: 14px;
}

/* Top Stories Sidebar */
.top-stories-sidebar {
    position: sticky;
    top: 100px;
}

.top-stories-title {
    font-family: var(--font-primary);
    font-size: 20px;
    font-weight: 600;
    color: var(--color-text);
}

.see-all-link {
    font-family: var(--font-primary);
    font-size: 14px;
    color: var(--color-primary);
    text-decoration: none;
    transition: opacity 0.2s ease;
}

.see-all-link:hover {
    color: var(--color-primary-dark);
    opacity: 0.8;
}

/* Top Story Item */
.top-story-item {
    padding-bottom: 16px;
    border-bottom: 1px solid var(--color-border);
}

.top-story-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.top-story-category {
    font-family: var(--font-primary);
    font-size: 12px;
    color: var(--color-text-light);
    margin-bottom: 4px;
}

.top-story-link {
    font-family: var(--font-primary);
    font-size: 14px;
    font-weight: 500;
    color: var(--color-text);
    text-decoration: none;
    display: block;
    line-height: 1.4;
    transition: color 0.2s ease;
}

.top-story-link:hover {
    color: var(--color-primary);
}

.top-story-image {
    width: 58px;
    height: 58px;
    object-fit: cover;
    border-radius: 8px;
}

/* Mobile Top Stories Section */
.top-stories-mobile {
    background: #F8F8F8;
}

/* Desktop: Hide sidebar on mobile, show mobile section */
@media (min-width: 992px) {
    .top-stories-sidebar {
        display: block;
    }

    .top-stories-mobile {
        display: none !important;
    }
}

@media (max-width: 991.98px) {
    .top-stories-sidebar {
        display: none;
    }

    .top-stories-mobile {
        display: block !important;
    }

}