/* 
===============================================
    Variables & Base
=============================================== 
*/
:root {
    --primary-color: #d8681a;
    --top-bar-bg: #1a1a1a;
    --banner-bg: #0d0d0d;
    --text-white: #ffffff;
    --text-light-gray: #aaaaaa;
    --font-inter: 'Inter', sans-serif;
    --font-exo: 'Exo', sans-serif;
    --font-oswald: 'Oswald', sans-serif;
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--font-inter);
    background-color: #ffffff;
    overflow-x: hidden;
}

.site_paddinglr {
    padding-inline: 135px;
}

.section-title-oswald {
    font-family: var(--font-oswald);
}

/* 
===============================================
    Top Bar
=============================================== 
*/
.top-bar {
    background-color: var(--top-bar-bg);
    color: var(--text-light-gray);
    font-family: var(--font-inter);
    font-size: 15px;
    padding: 9px 0;
}

.top-bar-left {
    display: flex;
    align-items: center;
    gap: 7px;
}

.top-bar-right {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 30px;
}

.top-bar-item {
    display: flex;
    align-items: center;
    gap: 7px;
}

.top-bar i {
    color: var(--text-white);
    font-size: 13px;
}

/* 
===============================================
    Header / Navbar
=============================================== 
*/
/* Hero wrapper: gives header a positioning context to float over banner */
.hero-wrapper {
    position: relative;
}

.main-header {
    background-color: rgba(184, 90, 20, 0.92);
    /* rgba orange — banner shows through */
    padding: 0;
    position: absolute;
    /* floats over the banner */
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
}

.main-header .navbar {
    padding: 6px 0;
    min-height: 78px;
    align-items: center;
}

/* Logo */
.navbar-brand {
    padding: 0;
    margin-right: 0;
}

.logo-img {
    border-radius: 30%;
    object-fit: cover;
    display: block;
}

/* Site name displayed next to logo */
.navbar-brand-name {
    font-family: var(--font-oswald);
    font-size: 20px;
    font-weight: 600;
    color: var(--text-white);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    line-height: 1.2;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.25);
    text-decoration: none;
    white-space: nowrap;
    transition: opacity 0.2s ease;
}

.navbar-brand:hover .navbar-brand-name {
    opacity: 0.85;
}

/* Nav Links — right-aligned */
.nav-links {
    align-items: center;
    gap: 30px;
    flex-direction: row;
}

.nav-links .nav-link {
    font-family: var(--font-exo);
    color: var(--text-white) !important;
    font-size: 16px;
    font-weight: 400;
    padding: 6px 16px;
    position: relative;
    white-space: nowrap;
    transition: opacity 0.2s ease;
}

.nav-links .nav-link:hover {
    opacity: 0.8;
}

.nav-links .nav-link.active {
    font-weight: 700;
}

/* Vertical Divider between nav links and icons */
.nav-divider {
    width: 1px;
    height: 24px;
    background-color: rgba(255, 255, 255, 0.5);
    margin: 0 14px;
    flex-shrink: 0;
}

/* Nav Icons */
.nav-icons {
    gap: 18px;
}

.icon-link {
    color: var(--text-white);
    font-size: 18px;
    text-decoration: none;
    transition: opacity 0.2s ease;
    position: relative;
    display: inline-flex;
    align-items: center;
}

.icon-link:hover {
    opacity: 0.75;
    color: var(--text-white);
}

.cart-badge {
    position: absolute;
    top: -6px;
    right: -9px;
    background-color: var(--top-bar-bg);
    color: #fff;
    font-size: 9px;
    font-family: var(--font-inter);
    width: 15px;
    height: 15px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

/* Hamburger (mobile) */
.navbar-toggler {
    border-color: rgba(255, 255, 255, 0.5);
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255,255,255,1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.navbar-brand-tagline {
    font-size: 13px;
    font-style: italic;
    font-family: var(--font-inter);
}

/* 
===============================================
    Banner Section
=============================================== 
*/
.banner-section {
    position: relative;
    overflow: hidden;
    /* no background so no color bleeds outside the slider */
}

/* 
    Kill Slick's default margin-bottom that creates the black gap
    when dots are enabled. Must be !important to beat slick-theme.css
*/
.banner-slider.slick-dotted.slick-slider,
.slick-dotted.slick-slider {
    margin-bottom: 0 !important;
}

/* Slick list/track height */
.banner-slider .slick-list,
.banner-slider .slick-track {
    width: 100%;
}

/* Each slide — no forced height, driven by the image */
.slide-item {
    position: relative;
    overflow: hidden;
    line-height: 0;
    max-height: 910px;
    /* cap so it doesn't get too tall */
}

/* Banner image — full width, natural aspect ratio, NO object-fit so nothing is cut */
.banner-bg-img {
    width: 100%;
    height: auto;
    /* natural height = full image, no cropping at all */
    display: block;
    max-height: 910px;
    object-fit: cover;
    object-position: center bottom;
    /* if slight crop needed, keep wheel */
}

/* Dark gradient overlay */
.slide-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right,
            rgba(5, 5, 5, 0.78) 0%,
            rgba(5, 5, 5, 0.50) 40%,
            rgba(5, 5, 5, 0.08) 100%);
    z-index: 1;
}

/* Text content sits above overlay */
.slide-inner {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
    display: flex;
    align-items: center;
    line-height: normal;
    padding-left: 135px;
}

/* Banner text block */
.banner-content {
    max-width: 900px;
}

.banner-subtitle {
    font-family: var(--font-exo);
    color: var(--primary-color);
    font-size: 25px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
    display: block;
}

.banner-title {
    margin-bottom: 32px;
    display: block;
    line-height: 1;
    padding-bottom: 80px;
}

.banner-title .line-regular {
    display: block;
    font-family: var(--font-exo);
    font-weight: 400;
    font-size: 83px;
    line-height: 95px;
    color: var(--text-white);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.banner-title .line-bold {
    display: block;
    font-family: var(--font-exo);
    font-weight: 700;
    font-size: 83px;
    color: var(--text-white);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-custom {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--text-white);
    font-family: var(--font-exo);
    font-weight: 400;
    font-size: 22px;
    padding: 14px 45px;
    border-radius: 4px;
    border: none;
    text-transform: uppercase;
    text-decoration: none;
    letter-spacing: 1.5px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
    border-radius: 50px;
}

.btn-custom:hover {
    background-color: #bf5b10;
    color: var(--text-white);
    transform: translateY(-2px);
}

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

.btn-custom--outline:hover {
    background-color: var(--primary-color);
    color: var(--text-white);
}

/* 
===============================================
    Slick Dots — BOTTOM RIGHT corner
=============================================== 
*/
.banner-section {
    position: relative;
    /* anchor for absolute dots */
}

/* Override slick's default bottom positioning */
.banner-slider {
    position: relative;
}

.slick-dots {
    position: absolute !important;
    bottom: 20px !important;
    right: 40px !important;
    left: auto !important;
    top: auto !important;
    transform: none !important;
    width: auto !important;
    display: flex !important;
    align-items: center;
    gap: 7px;
    list-style: none;
    padding: 0;
    margin: 0;
    z-index: 10;
}

/* Force li size */
.slick-dots li {
    width: auto !important;
    height: auto !important;
    margin: 0 !important;
    padding: 0 !important;
    line-height: 0 !important;
}

/* Inactive dot: target button directly and override everything */
.slick-dots li button {
    display: block !important;
    width: 20px !important;
    height: 8px !important;
    padding: 0 !important;
    margin: 0 !important;
    border: none !important;
    border-radius: 4px !important;
    background-color: #999999 !important;
    /* light gray */
    cursor: pointer !important;
    font-size: 0 !important;
    line-height: 0 !important;
    color: transparent !important;
    outline: none !important;
    opacity: 1 !important;
    transition: background-color 0.3s ease, width 0.3s ease !important;
}

/* Completely kill slick's default ::before dot */
.slick-dots li button:before {
    display: none !important;
    content: '' !important;
}

/* Active dot: orange pill, wider */
.slick-dots li.slick-active button {
    background-color: var(--primary-color) !important;
    width: 28px !important;
}

/* 
===============================================
    Find Auto Parts Section
=============================================== */
.find-parts-section {
    background-color: #ffffff;
    padding: 40px 0 0 0;
}

/* Section Heading */
.find-parts-heading {
    margin-bottom: 42px;
}

.find-parts-title {
    font-family: 'Oswald', sans-serif;
    font-size: 45px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 14px;
    line-height: 1.2;
}

.find-parts-subtitle {
    font-family: var(--font-inter);
    font-size: 18px;
    color: #777777;
    line-height: 28px;
    margin: 0;
}

/* Product Card Slider wrapper */
.product-card-slider {
    position: relative;
    margin-bottom: 0;
}

/* Each slide shows 2 cards at once — handled by slick slidesToShow:2 */
.prod-slide {
    padding: 0 8px;
}

/* Card base */
.prod-card {
    border-radius: 4px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 50px 30px 100px 45px;
    position: relative;
    gap: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.prod-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.25);
}

/* Dark variant — exact black mesh pattern */
.prod-card--dark {
    background-color: #0d0d0d;
    background-image:
        radial-gradient(circle at 80% 50%, rgba(255, 255, 255, 0.06) 0%, rgba(0, 0, 0, 0) 70%),
        radial-gradient(rgba(255, 255, 255, 0.12) 1.2px, transparent 1.2px),
        radial-gradient(rgba(255, 255, 255, 0.08) 1.2px, transparent 1.2px);
    background-size: 100% 100%, 8px 8px, 8px 8px;
    background-position: 0 0, 0 0, 4px 4px;
}

/* Red variant — exact rich deep crimson red with 3D depth */
.prod-card--red {
    background-color: #a30509;
    background-image: radial-gradient(circle at 75% 50%, #c40a0e 0%, #850003 100%);
}

/* Card left content */
.prod-card-content {
    flex: 1;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}

.prod-card-title {
    font-family: 'Oswald', sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: #ffffff;
    line-height: 40px;
    margin-bottom: 36px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.prod-card-price {
    font-family: var(--font-exo);
    font-size: 18px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 80px;
    letter-spacing: 0.5px;
}

/* Shop Now button */
.btn-shop-now {
    display: inline-block;
    align-self: flex-start;
    background: #ff5a00;
    color: #ffffff;
    font-family: var(--font-exo);
    font-size: 22px;
    font-weight: 400;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-decoration: none;
    padding: 10px 42px;
    border-radius: 50px;
    transition: background-color 0.3s ease, transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: none;
}

.btn-shop-now:hover {
    background-color: #e04f00;
    color: #ffffff;
    transform: translateY(-1px);
}

/* Card right image */
.prod-card-img-wrap {
    flex-shrink: 0;
    width: 220px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.prod-card-img {
    width: auto;
    height: auto;
    max-height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.55));
    transition: transform 0.4s ease;
    justify-content: flex-end;
    position: absolute;
    bottom: 20px;
    max-width: 375px;
    right: 10px;
}

.prod-card:hover .prod-card-img {
    transform: scale(1.06) rotate(-1deg);
}

/* 
===============================================
    CATALOG PAGE CARD — Parts Page Variant
    Separate classes — index slider untouched.
    Layout: row (lg+), column (below lg)
=============================================== */

/* ── Base card reset over the shared .prod-card ── */
.prod-card--grey-styled {
    background: #ffffff;
    border: 1px solid #e8e8e8;
    border-radius: 12px;
    padding: 0;
    flex-direction: row;
    /* text LEFT, image RIGHT on desktop */
    align-items: stretch;
    justify-content: flex-start;
    gap: 0;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.07);
    overflow: hidden;
    min-height: unset;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.prod-card--grey-styled:hover {
    box-shadow: 0 14px 40px rgba(0, 0, 0, 0.13);
    transform: translateY(-4px);
}

/* ── Text / content panel (left side on desktop) ── */
.prod-card--grey-styled .prod-card-content {
    flex: 1 1 0;
    min-width: 0;
    padding: 36px 32px 32px 36px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: auto;
    z-index: 1;
    order: 1;
    /* content LEFT in row mode */
}

/* ── Image panel (right side on desktop) ── */
.catalog-card-img-wrap {
    flex: 0 0 42%;
    max-width: 42%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f5f5f5 0%, #ececec 100%);
    border-left: 1px solid #efefef;
    padding: 28px 20px;
    min-height: 320px;
    overflow: hidden;
    position: relative;
    order: 2;
    /* image RIGHT in row mode */
}

.catalog-card-img-wrap::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 60% 50%, rgba(216, 104, 26, 0.06) 0%, transparent 70%);
    pointer-events: none;
}

/* ── The image itself — fully responsive, never overflows ── */
.catalog-card-img {
    display: block;
    width: 100%;
    max-width: 280px;
    height: auto;
    max-height: 260px;
    object-fit: contain;
    filter: drop-shadow(0 10px 22px rgba(0, 0, 0, 0.22));
    transition: transform 0.4s ease;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.prod-card--grey-styled:hover .catalog-card-img {
    transform: scale(1.06) rotate(-1.5deg);
}

/* ── Overrides: title / price on the white card ── */
.prod-card--grey-styled .prod-card-title {
    font-family: var(--font-oswald);
    font-size: 24px;
    font-weight: 700;
    line-height: 34px;
    color: #1a1a1a;
    text-shadow: none;
    margin-bottom: 10px;
}

.prod-card--grey-styled .prod-card-price {
    font-family: var(--font-exo);
    font-size: 26px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0;
    letter-spacing: 0.5px;
}

/* ── Badge / tag ── */
.prod-card-tag {
    font-family: var(--font-exo);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--primary-color);
    background: #fff3eb;
    border: 1px solid #fddfc8;
    border-radius: 50px;
    padding: 3px 14px;
    display: inline-block;
}

/* ── Star rating ── */
.prod-card-rating {
    display: flex;
    align-items: center;
    gap: 3px;
    font-size: 13px;
    color: #f5a623;
}

.prod-card-rating .rating-text {
    font-family: var(--font-inter);
    font-size: 12px;
    color: #888;
    font-weight: 500;
    margin-left: 4px;
}

/* ── Description ── */
.prod-card-desc {
    font-family: var(--font-inter);
    font-size: 14px;
    line-height: 1.75;
    color: #666;
}

/* ── Action buttons row ── */
.prod-card-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.prod-card-actions .btn-custom {
    font-size: 13px;
    padding: 11px 20px;
    letter-spacing: 1px;
    flex: 1 1 auto;
    text-align: center;
}

/* ── Floating wishlist button ── */
.prod-card-wishlist-btn-float {
    position: absolute;
    top: 14px;
    right: 14px;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 15px;
    color: #aaa;
    transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease;
    z-index: 5;
    padding: 0;
}

.prod-card-wishlist-btn-float:hover,
.prod-card-wishlist-btn-float.active {
    color: #e03030;
    border-color: #e03030;
    background: #fff5f5;
}

/* =============================
   RESPONSIVE BREAKPOINTS
   1880px → 320px
   ============================= */

/* ≥ 1200px — row layout is active (desktop only).
   Below 1200px each col-lg-6 card is ~560px — not wide
   enough for side-by-side text+image, so we ALWAYS use
   column layout below this point.                        */

/* Large desktop tweak — cap image so it doesn't overscale */
@media (max-width: 1880px) {
    .catalog-card-img {
        max-width: 260px;
        max-height: 240px;
    }
}

@media (max-width: 1400px) {
    .prod-card--grey-styled .prod-card-content {
        padding: 30px 26px 28px 30px;
    }

    .catalog-card-img-wrap {
        flex: 0 0 40%;
        max-width: 40%;
        min-height: 290px;
    }

    .catalog-card-img {
        max-width: 240px;
        max-height: 220px;
    }
}

/* 1199px and below — switch to COLUMN layout.
   Image is FIRST in HTML so it naturally sits at TOP.
   No order tricks needed — just reset any desktop orders. */
@media (max-width: 1199px) {
    .prod-card--grey-styled {
        flex-direction: column;
    }

    .prod-card--grey-styled .prod-card-content {
        flex: unset;
        padding: 28px 26px 22px 28px;
        order: 0;
        /* reset — flows naturally after img in HTML */
    }

    .catalog-card-img-wrap {
        flex: unset;
        max-width: 100%;
        width: 100%;
        order: 0;
        /* reset — img is first in HTML = first visually */
        border-left: none;
        border-top: none;
        border-bottom: 1px solid #efefef;
        min-height: 260px;
        padding: 24px 20px;
    }

    .catalog-card-img {
        max-width: 300px;
        max-height: 230px;
    }
}

/* 991px — tablet */
@media (max-width: 991px) {
    .prod-card--grey-styled .prod-card-content {
        padding: 24px 22px 20px 24px;
    }

    .catalog-card-img-wrap {
        min-height: 240px;
        padding: 20px 18px;
    }

    .catalog-card-img {
        max-width: 280px;
        max-height: 210px;
    }
}

/* 767px — narrow tablet */
@media (max-width: 767px) {
    .prod-card--grey-styled .prod-card-content {
        padding: 22px 18px 18px 20px;
    }

    .prod-card--grey-styled .prod-card-title {
        font-size: 20px;
        line-height: 28px;
    }

    .prod-card--grey-styled .prod-card-price {
        font-size: 22px;
    }

    .catalog-card-img-wrap {
        min-height: 220px;
        padding: 18px 16px;
    }

    .catalog-card-img {
        max-width: 250px;
        max-height: 190px;
    }
}

/* 575px — large mobile */
@media (max-width: 575px) {
    .prod-card--grey-styled .prod-card-content {
        padding: 18px 16px 16px 16px;
    }

    .prod-card--grey-styled .prod-card-title {
        font-size: 18px;
        line-height: 26px;
    }

    .prod-card--grey-styled .prod-card-price {
        font-size: 20px;
    }

    .prod-card-actions {
        flex-direction: column;
    }

    .prod-card-actions .btn-custom {
        width: 100%;
        font-size: 12px;
        padding: 10px 14px;
    }

    .catalog-card-img-wrap {
        min-height: 195px;
        padding: 14px 12px;
    }

    .catalog-card-img {
        max-width: 220px;
        max-height: 175px;
    }
}

/* 420px — small phone */
@media (max-width: 420px) {
    .prod-card--grey-styled .prod-card-content {
        padding: 16px 14px 14px 14px;
    }

    .prod-card--grey-styled .prod-card-title {
        font-size: 16px;
        line-height: 24px;
    }

    .catalog-card-img-wrap {
        min-height: 170px;
        padding: 12px 10px;
    }

    .catalog-card-img {
        max-width: 185px;
        max-height: 150px;
    }
}

/* 360px — very small phone */
@media (max-width: 360px) {
    .prod-card--grey-styled .prod-card-content {
        padding: 14px 12px 12px 12px;
    }

    .catalog-card-img-wrap {
        min-height: 155px;
    }

    .catalog-card-img {
        max-width: 165px;
        max-height: 135px;
    }
}

/* Product Slider Dots — centered below slider */
.product-card-slider .slick-dots {
    position: static !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    width: 100% !important;
    gap: 8px !important;
    padding: 24px 0 10px 0 !important;
    margin: 0 !important;
    right: auto !important;
    bottom: auto !important;
    left: auto !important;
    transform: none !important;
}

.product-card-slider .slick-dots li button {
    width: 10px !important;
    height: 10px !important;
    background-color: #f7dcd0 !important;
    /* Soft peach dot color */
    border-radius: 50% !important;
    transition: background-color 0.3s ease !important;
}

.product-card-slider .slick-dots li.slick-active button {
    background-color: #ff5a00 !important;
    /* Brand orange active dot */
    width: 10px !important;
}

/* 
===============================================
    WELCOME STORE SECTION
=============================================== */
*/ .welcome-section {
    padding: 100px 0;
    background-color: #ffffff;
    position: relative;
    overflow: hidden;
    font-family: var(--font-inter);
}

.welcome-left-col {
    position: relative;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.welcome-image-wrapper {
    position: relative;
    display: block;
    width: 100%;
    max-width: 100%;
    border-radius: 4px;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.12);
    margin: 25px 0 0 25px;
    /* Allow space for badge to hang over left */
}

.welcome-dashboard-img {
    width: 100%;
    height: 600px;
    border-radius: 4px;
    display: block;
    object-fit: cover;
}

/* Premium overlapping 3D Experience Badge */
.experience-badge {
    position: absolute;
    top: -25px;
    left: -10px;
    background-color: #ff5a00;
    /* Rich brand orange */
    color: #ffffff;
    padding: 35px;
    border-radius: 4px;
    box-shadow: 0 12px 28px rgba(255, 90, 0, 0.35);
    z-index: 10;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-width: 180px;
}

/* Darker fold under the left edge of the badge to create the 3D overlapping effect! */
.experience-badge::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 0;
    height: 0;
    border-top: 10px solid #c43d00;
    /* Darker shadow orange */
    border-left: 10px solid transparent;
}

.experience-badge .badge-number {
    font-family: var(--font-oswald);
    font-weight: 400;
    font-size: 42px;
    line-height: 52px;
    display: block;
    letter-spacing: 0;
}

.experience-badge .badge-text {
    font-family: var(--font-exo);
    font-weight: 700;
    font-size: 21px;
    line-height: 1.2;
    text-transform: capitalize;
    display: block;
}

/* Right Column Content styling */
.welcome-right-col {
    padding-left: 60px;
    /* Perfect space gutter between 50% columns */
}

.welcome-section {
    padding-bottom: 50px;
}

.welcome-subtitle {
    font-family: 'Oswald', sans-serif;
    font-weight: 300 !important;
    font-size: 28px;
    color: #ff5a00;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
    display: block;
    line-height: 35px;
}

.welcome-title {
    font-family: var(--font-oswald);
    font-weight: 600;
    font-size: 45px;
    line-height: 55px;
    color: #111111;
    margin-bottom: 20px;
    letter-spacing: 0;
    width: 85%;
}

.welcome-desc-lead {
    font-family: var(--font-inter);
    font-size: 18px;
    font-weight: 400;
    line-height: 28px;
    color: #666666;
    margin-bottom: 20px;
}

.welcome-desc-body {
    font-family: var(--font-inter);
    font-size: 18px;
    line-height: 28px;
    color: #666666;
    margin-bottom: 55px;
}

/* Custom rounded button customisation */
.welcome-right-col .btn-shop-now {
    padding: 12px 38px;
    font-size: 22px;
    line-height: 32px;
    border-radius: 30px;
    font-weight: 500;
}

/* Decorative Windshield Image in Bottom-Right */
.welcome-bike-decor {
    position: absolute;
    bottom: -110px;
    right: -40px;
    width: 250px;
    opacity: 0.95;
    pointer-events: none;
    z-index: 0;
    transform: rotate(-5deg);
}

.welcome-decor-img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

/* 
===============================================
    Features Strip
=============================================== */
.features-strip {
    background-color: #ffffff;
    padding: 30px 0 35px 0;
    margin-top: 0px;
}

.features-grid {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0;
    max-width: 80%;
    margin: 0px auto;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 25px;
    flex: 1;
}

.feature-icon-wrap {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon {
    font-size: 35px;
    color: #1a1a1a;
    opacity: 0.8;
    transition: color 0.3s ease;
}

.feature-item:hover .feature-icon {
    color: #ff5a00;
}

.feature-text {
    flex: 1;
}

.feature-title {
    font-family: 'Oswald', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 10px;
}

.feature-desc {
    font-family: var(--font-inter);
    font-size: 18px;
    color: #666666;
    line-height: 26px;
    margin: 0;

}

.feature-highlight {
    color: inherit;
    font-weight: inherit;
}

.feature-divider {
    width: 1px;
    height: 50px;
    background-color: #eaeaea;
    flex-shrink: 0;
    margin-right: 50px;
}


/* 
===============================================
    Footer Section
=============================================== 
*/
.site-footer {
    position: relative;
    background-image: url('../images/banner1.jpg');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    color: var(--text-white);
    padding: 100px 0 30px 0;
    font-family: var(--font-inter);
    z-index: 1;
}

/* Semi-transparent dark overlay for footer background */
.site-footer::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(22, 22, 22, 0.70);
    /* Lighter dark overlay so motorcycle rider is clearly visible */
    z-index: -1;
}

/* 1. Newsletter Subscribe Row */
.newsletter-wrap {
    background-color: rgba(30, 30, 30, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 50px;
    padding: 6px;
    margin-bottom: 75px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
}

.newsletter-form {
    display: flex;
    align-items: center;
    width: 100%;
}

.newsletter-input {
    flex: 1;
    background: transparent;
    border: none;
    outline: none;
    color: var(--text-white);
    font-size: 15px;
    font-family: var(--font-inter);
    padding: 12px 28px;
}

.newsletter-input::placeholder {
    color: #888888;
}

.newsletter-btn {
    background-color: #ff5a00;
    /* Vibrant orange matching the screenshot */
    color: var(--text-white);
    font-family: var(--font-exo);
    font-size: 14px;
    font-weight: 700;
    border: none;
    outline: none;
    border-radius: 50px;
    padding: 14px 42px;
    letter-spacing: 1px;
    transition: background-color 0.3s ease, transform 0.2s ease;
    white-space: nowrap;
}

.newsletter-btn:hover {
    background-color: #e04f00;
    transform: scale(1.02);
}

/* 2. Main Footer Columns */
.footer-main-row {
    margin-bottom: 50px;
}

.footer-widget {
    margin-bottom: 30px;
}

.widget-title {
    font-family: var(--font-oswald);
    font-weight: 400;
    font-size: 27px;
    letter-spacing: 1px;
    color: var(--text-white);
    margin-bottom: 30px;
    text-transform: uppercase;
    position: relative;
}

/* Column 1: Logo & About */
.footer-logo-img {
    height: 60px;
    width: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.footer-brand-title {
    font-family: var(--font-oswald);
    font-weight: 400;
    font-size: 40px;
    line-height: 1.25;
    letter-spacing: 0.5px;
    color: var(--text-white);
    margin: 0;
}

.footer-about-text {
    font-size: 18px;
    line-height: 1.7;
    color: #b0b0b0;
    margin-bottom: 25px;
    font-family: var(--font-exo);
    max-width: 385px;
}

.footer-social-links {
    display: flex;
    align-items: center;
    gap: 12px;
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border: 1.5px solid #ffffff;
    /* Solid white border */
    border-radius: 50%;
    color: #ffffff;
    text-decoration: none;
    transition: opacity 0.2s ease;
}

.social-icon:hover {
    opacity: 0.7;
    color: #ffffff;
}

/* Specific styling for plain-text social icon characters */
.social-icon.facebook-icon {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 20px;
    line-height: 1;
}

.social-icon.google-icon {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 13.5px;
    line-height: 1;
}

.social-icon.youtube-icon {
    flex-direction: column;
    justify-content: center;
    line-height: 0.9;
    padding-top: 1px;
}

.social-icon.youtube-icon span {
    font-family: var(--font-oswald);
    font-weight: 700;
    font-size: 9px;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    display: block;
}

/* Column 2: Quick Links */
.footer-links-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links-list li {
    margin-bottom: 12px;
}

.footer-links-list li a {
    color: #b0b0b0;
    text-decoration: none;
    font-size: 17px;
    transition: color 0.2s ease;
    display: inline-block;
}

.footer-links-list li a:hover {
    color: #ff5a00;
    /* Orange color on hover */
}

/* Column 3: Opening Hours */
.opening-hours-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.opening-hours-list li {
    display: flex;
    justify-content: flex-start;
    /* Aligns items to the left */
    align-items: center;
    margin-bottom: 12px;
    font-size: 17px;
    color: #b0b0b0;
}

.opening-hours-list .day {
    font-weight: 400;
    width: 130px;
    /* Fixed width for consistent spacing and straight vertical column alignment */
    flex-shrink: 0;
}

.opening-hours-list .time {
    color: #b0b0b0;
}

/* Column 4: Contact/Map */
.footer-map-container {
    overflow: hidden;
    border-radius: 4px;
    border: none;
    /* Clean layout borderless map widget */
}

.footer-map-container iframe {
    display: block;
}

/* 4. Contact details row - Sandwiched between matching borders */
.footer-info-row {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    /* Top line */
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    /* Bottom line */
    padding: 18px 0;
    margin-bottom: 25px;
}

.info-item {
    font-size: 14.5px;
    color: #b0b0b0;
}

.info-item .info-text {
    letter-spacing: 0.5px;
}

/* 5. Copyright and Payment bottom row */
.footer-bottom-row {
    padding-top: 20px;
    border-top: none;
    /* Removed extra line above copyright to match screenshot */
    font-size: 13.5px;
    color: #b0b0b0;
}

.designer-text {
    color: #ff5a00;
    /* Bold orange color */
    font-weight: 700;
}

.pay-badge {
    background-color: #ffffff;
    border-radius: 2px;
    padding: 3px 6px;
    height: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.15);
}

.pay-badge svg {
    display: block;
    height: auto;
}


/* 
===============================================
    Blog Section
=============================================== 
*/
.blog-section {
    padding: 100px 0;
    background-color: #ffffff;
    font-family: var(--font-inter);
}

.blog-left-col {
    min-height: 100%;
}

.blog-subtitle {
    font-family: var(--font-exo);
    font-weight: 700;
    font-size: 15px;
    color: #ff5a00;
    /* Orange color */
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 18px;
    display: block;
}

.blog-main-title {
    font-family: var(--font-oswald);
    font-weight: 700;
    font-size: 42px;
    line-height: 1.15;
    color: #111111;
    margin-bottom: 25px;
    letter-spacing: 0.5px;
}

.blog-description {
    font-family: var(--font-inter);
    font-size: 15px;
    line-height: 1.7;
    color: #555555;
    margin-bottom: 0;
}

.blog-nav-arrows {
    display: flex;
    align-items: center;
    gap: 10px;
}

.nav-arrow {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 1.5px solid #111111;
    background-color: transparent;
    color: #111111;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 14px;
    transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.nav-arrow:hover {
    background-color: #ff5a00;
    border-color: #ff5a00;
    color: #ffffff;
}

/* Blog Carousel Spacing */
.blog-section .col-lg-8 {
    min-width: 0;
    /* Solves flexbox container width calculation issue for slick slider */
}

.blog-carousel {
    min-width: 0;
    margin: 0 -15px;
}

.blog-carousel-item {
    padding: 0 15px;
    outline: none;
}

.blog-carousel .slick-list {
    padding: 0;
}

/* Blog Cards */
.blog-card {
    background-color: #ffffff;
    margin-bottom: 30px;
}

.blog-card-img-wrap {
    overflow: hidden;
    border-radius: 4px;
    margin-bottom: 22px;
}

.blog-card-img {
    width: 100%;
    height: 255px;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.blog-card:hover .blog-card-img {
    transform: scale(1.04);
}

.blog-card-body {
    padding: 0;
}

.blog-card-title {
    font-family: var(--font-oswald);
    font-weight: 700;
    font-size: 21px;
    line-height: 1.3;
    color: #111111;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: color 0.2s ease;
}

.blog-card:hover .blog-card-title {
    color: #ff5a00;
}

.blog-card-excerpt {
    font-family: var(--font-inter);
    font-size: 15px;
    line-height: 1.65;
    color: #555555;
    margin-bottom: 16px;
}

.blog-readmore {
    font-family: var(--font-exo);
    font-weight: 700;
    font-size: 14px;
    color: #ff5a00;
    text-transform: uppercase;
    text-decoration: none;
    letter-spacing: 0.8px;
    display: inline-block;
    margin-bottom: 18px;
    transition: color 0.2s ease;
}

.blog-readmore:hover {
    color: #e04f00;
}

.blog-card-meta {
    border-top: 1px solid #eeeeee;
    padding-top: 14px;
    display: flex;
    align-items: center;
    gap: 22px;
    font-size: 13.5px;
    color: #777777;
}

.meta-item {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.meta-item i {
    font-size: 14px;
    color: #999999;
}


/* 
===============================================
    Testimonials Section
=============================================== 
*/
.testimonial-section {
    background-color: #1a1a1a;
    background-image: url('../images/testimonial_bg.jpg');
    background-size: 100% 100%;
    background-position: center center;
    background-repeat: no-repeat;
    position: relative;
    padding: 100px 0;
    font-family: var(--font-inter);
}



.testimonial-container {
    z-index: 5;
}



/* Quote Mark 99 */
.testimonial-quote-mark {
    font-family: var(--font-exo);
    font-weight: 700;
    font-size: 180px;
    line-height: 1;
    color: #333333;
    position: absolute;
    left: 20px;
    top: -20px;
    user-select: none;
    z-index: 0;
}

/* Testimonial Slider Column */
.testimonial-slider-col {
    z-index: 10;
}

.testimonial-slider-wrap {
    background: transparent;
    padding: 20px 0;
}

.testimonial-slide {
    text-align: center;
    outline: none;
}

/* Avatar styling */
.testimonial-avatar-wrap {
    position: relative;
    width: 90px;
    height: 90px;
    margin: 0 auto 30px auto;
    border-radius: 50%;
    padding: 3px;
    background: linear-gradient(135deg, var(--primary-color) 0%, #ff5a00 100%);
    box-shadow: 0 8px 24px rgba(216, 104, 26, 0.3);
}

.testimonial-avatar {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    display: block;
    border: 3px solid #1a1a1a;
}

/* Testimonial Text styling */
.testimonial-text {
    font-size: 17px;
    line-height: 1.85;
    color: #e5e5e5;
    font-family: var(--font-inter);
    font-weight: 400;
    max-width: 680px;
    margin: 0 auto 30px auto;
    letter-spacing: 0.2px;
}

/* Author styling */
.testimonial-author {
    font-size: 16px;
    font-family: var(--font-inter);
    margin: 0;
}

.testimonial-author .author-name {
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: 0.5px;
}

.testimonial-author .author-title {
    font-weight: 400;
    color: var(--text-light-gray);
    margin-left: 5px;
}

/* Right-aligned motorcycle crop wrapper */
.testimonial-bike-wrap {
    position: absolute;
    top: -76px;
    bottom: 0;
    right: 0;
    width: 35%;
    height: 100%;
    pointer-events: none;
    z-index: 2;
}

.testimonial-bike-img {
    position: absolute;
    top: 50%;
    left: -5%;
    transform: translateY(-50%);
    height: 125%;
    /* Large enough to break out top and bottom */
    width: auto;
    object-fit: contain;
    opacity: 0.95;
    filter: brightness(0.85) contrast(1.05);
}



/* Slick Dots styling for testimonial slider */
.testimonial-slider .slick-dots {
    position: relative !important;
    bottom: auto !important;
    right: auto !important;
    left: auto !important;
    transform: none !important;
    width: 100% !important;
    display: flex !important;
    justify-content: center !important;
    margin-top: 35px !important;
    gap: 8px;
}

.testimonial-slider .slick-dots li {
    margin: 0 !important;
}

.testimonial-slider .slick-dots li button {
    width: 12px !important;
    height: 12px !important;
    border-radius: 50% !important;
    background-color: #555555 !important;
    transition: background-color 0.3s ease, width 0.3s ease, border-radius 0.3s ease !important;
}

.testimonial-slider .slick-dots li.slick-active button {
    width: 24px !important;
    border-radius: 6px !important;
    background-color: var(--primary-color) !important;
}

/* 
===============================================
    About Page Css start
=============================================== 
*/

/* ===== ABOUT HERO ===== */
.about-hero {
    position: relative;
    min-height: 320px;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
}

.about-hero-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 0;
}

.about-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right,
            rgba(5, 5, 5, 0.82) 0%,
            rgba(5, 5, 5, 0.55) 50%,
            rgba(5, 5, 5, 0.25) 100%);
    z-index: 1;
}

.about-hero-content {
    position: relative;
    z-index: 2;
    padding: 140px 135px 60px 135px;
}

.about-hero-title {
    font-family: var(--font-exo);
    font-size: 55px;
    font-weight: 400;
    color: #ffffff;
    text-transform: capitalize;
    line-height: 1.1;
    margin-bottom: 18px;
}

.about-hero-title span {
    color: var(--primary-color);
    font-weight: 700;
}

.about-hero-subtitle {
    font-family: var(--font-inter);
    font-size: 18px;
    color: #cccccc;
    max-width: 560px;
    line-height: 1.7;
    border-left: 3px solid var(--primary-color);
    padding-left: 16px;
    margin: 0;
}

/* ===== STATS STRIP ===== */
.stats-strip {
    background-color: #ffffff;
    padding: 50px 0;
    border-bottom: 1px solid #eaeaea;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 20px;
}

.stat-icon-box {
    width: 70px;
    height: 70px;
    background-color: var(--primary-color);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.stat-icon-box i {
    font-size: 30px;
    color: #ffffff;
}

.stat-number {
    font-family: var(--font-exo);
    font-size: 35px;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1;
    margin-bottom: 4px;
}

.stat-label {
    font-family: var(--font-inter);
    font-size: 18px;
    color: #777777;
    margin: 0;
}

.stat-divider {
    width: 1px;
    height: 60px;
    background-color: #eaeaea;
}

/* ===== OUR STORY SECTION ===== */
.our-story-section {
    background-color: #111111;
    padding: 90px 0;
}

.story-label {
    font-family: var(--font-exo);
    font-size: 15px;
    font-weight: 700;
    color: #ff5a00;
    text-transform: capitalize;
    letter-spacing: 1.5px;
    margin-bottom: 10px;
    display: block;
}

.story-title {
    font-family: var(--font-oswald);
    font-size: 45px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 28px;
    line-height: 1.15;
    letter-spacing: 0.5px;
    text-transform: capitalize;
}

.story-title span {
    color: var(--primary-color);
}

.story-text {
    font-family: var(--font-inter);
    font-size: 18px;
    line-height: 1.7;
    color: #aaaaaa;
    margin-bottom: 18px;
}

.story-img-wrap {
    border-radius: 8px;
    overflow: hidden;
    height: 100%;
    min-height: 420px;
}

.story-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* ===== MISSION / VISION / VALUES ===== */
.mvv-section {
    background-color: #f7f7f7;
    padding: 70px 0;
}

.mvv-card {
    background-color: #ffffff;
    border: 1px solid #e5e5e5;
    border-radius: 6px;
    padding: 36px 30px;
    height: 100%;
    transition:
        box-shadow 0.3s ease,
        transform 0.3s ease;
}

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

.mvv-card-label {
    font-family: var(--font-exo);
    font-size: 15px;
    font-weight: 700;
    color: var(--primary-color);
    text-transform: capitalize;
    letter-spacing: 1.5px;
    margin-bottom: 14px;
    display: block;
}

.mvv-card-title {
    font-family: var(--font-oswald);
    font-size: 27px;
    font-weight: 400;
    color: #1a1a1a;
    margin-bottom: 16px;
    text-transform: capitalize;
    letter-spacing: 1px;
}

.mvv-card-text {
    font-family: var(--font-inter);
    font-size: 15px;
    line-height: 1.7;
    color: #555555;
    margin: 0;
}

/* ===== CTA SECTION ===== */
.about-cta-section {
    position: relative;
    padding: 90px 0;
    text-align: center;
    overflow: hidden;
}

.about-cta-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.about-cta-overlay {
    position: absolute;
    inset: 0;
    background: rgba(10, 10, 10, 0.72);
    z-index: 1;
}

.about-cta-content {
    position: relative;
    z-index: 2;
}

.about-cta-subtitle {
    font-family: var(--font-inter);
    font-size: 18px;
    color: #aaaaaa;
    text-transform: capitalize;
    letter-spacing: 2px;
    margin-bottom: 16px;
    display: block;
}

.about-cta-title {
    font-family: var(--font-exo);
    font-size: 45px;
    font-weight: 400;
    color: #ffffff;
    text-transform: capitalize;
    line-height: 1.1;
    margin-bottom: 36px;
}

.about-cta-title span {
    color: var(--primary-color);
    font-weight: 700;
}


/* 
===============================================
    Why Choose Us Section
=============================================== 
*/
.why-choose-section {
    background-color: #f9f9f9;
    padding: 60px 0 70px 0;
}

/* Section heading */
.why-label {
    font-family: var(--font-exo);
    font-size: 14px;
    font-weight: 700;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 10px;
}

.why-title {
    font-family: var(--font-oswald);
    font-size: 42px;
    font-weight: 700;
    color: #1a1a1a;
    letter-spacing: 0.5px;
    margin-bottom: 0;
}

.why-title span {
    color: var(--primary-color);
}

/* Feature cards */
.why-card {
    background-color: #ffffff;
    border: 1px solid #e8e8e8;
    border-radius: 8px;
    padding: 36px 28px;
    height: 100%;
    text-align: center;
    transition: box-shadow 0.3s ease, transform 0.3s ease, border-color 0.3s ease;
    position: relative;
    overflow: hidden;
}

.why-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background-color: var(--primary-color);
    transform: scaleX(0);
    transition: transform 0.3s ease;
    transform-origin: center;
}

.why-card:hover {
    box-shadow: 0 14px 40px rgba(0, 0, 0, 0.1);
    transform: translateY(-6px);
    border-color: transparent;
}

.why-card:hover::after {
    transform: scaleX(1);
}

/* Active/highlighted card */
.why-card--active {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.why-card--active .why-card-icon {
    background-color: rgba(255, 255, 255, 0.2);
    color: #ffffff;
}

.why-card--active .why-card-title {
    color: #ffffff;
}

.why-card--active .why-card-text {
    color: rgba(255, 255, 255, 0.85);
}

.why-card--active::after {
    display: none;
}

/* Icon circle */
.why-card-icon {
    width: 70px;
    height: 70px;
    background-color: #fff4ed;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 22px auto;
    font-size: 26px;
    color: var(--primary-color);
    transition: background-color 0.3s ease, color 0.3s ease;
}

.why-card:not(.why-card--active):hover .why-card-icon {
    background-color: var(--primary-color);
    color: #ffffff;
}

.why-card-title {
    font-family: var(--font-oswald);
    font-size: 22px;
    font-weight: 400;
    color: #1a1a1a;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
}

.why-card-text {
    font-family: var(--font-inter);
    font-size: 15px;
    line-height: 1.7;
    color: #666666;
    margin: 0;
}

/* Stats bar at the bottom */
.why-stats-bar {
    background-color: #1a1a1a;
    border-radius: 10px;
    padding: 40px 60px;
    display: flex;
    align-items: center;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 25px;
}

.why-stat-item {
    text-align: center;
    flex: 1;
    min-width: 120px;
}

.why-stat-num {
    font-family: var(--font-oswald);
    font-size: 48px;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1;
    display: inline;
}

.why-stat-plus {
    font-family: var(--font-oswald);
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1;
    margin-left: 2px;
}

.why-stat-label {
    font-family: var(--font-inter);
    font-size: 14px;
    color: #999999;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 8px 0 0 0;
}

.why-stat-divider {
    width: 1px;
    height: 55px;
    background-color: rgb(255 255 255 / 40%);
    flex-shrink: 0;
}

/* 
===============================================
    About Page Css end
=============================================== 
*/

/* 
===============================================
    Testimonials Page — testimonials.html
=============================================== 
*/

/* ---- Stats Strip ---- */
.testi-stats-strip {
    background-color: #1a1a1a;
    padding: 28px 0;
    border-bottom: 3px solid var(--primary-color);
}

.testi-stats-grid {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    flex-wrap: wrap;
}

.testi-stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 10px 50px;
    text-align: center;
}

.testi-stat-number {
    font-family: var(--font-oswald);
    font-size: 42px;
    font-weight: 700;
    color: #ffffff;
    line-height: 1;
    display: flex;
    align-items: flex-start;
    gap: 2px;
}

.testi-stat-plus {
    font-size: 22px;
    color: var(--primary-color);
    margin-top: 4px;
    font-weight: 700;
}

.testi-stat-star {
    font-size: 18px;
    color: #f5c518;
    margin-top: 8px;
    margin-left: 4px;
}

.testi-stat-label {
    font-family: var(--font-exo);
    font-size: 13px;
    font-weight: 700;
    color: #aaaaaa;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 6px;
}

.testi-stat-divider {
    width: 1px;
    height: 50px;
    background-color: rgba(255, 255, 255, 0.12);
    flex-shrink: 0;
}

/* ---- Section Header ---- */
.testi-featured-section {
    padding: 90px 0 70px 0;
    background-color: #ffffff;
}

.testi-section-header {
    margin-bottom: 55px;
}

.testi-section-eyebrow {
    display: inline-block;
    font-family: var(--font-exo);
    font-size: 13px;
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.testi-section-title {
    font-family: var(--font-oswald);
    font-size: 42px;
    font-weight: 700;
    color: #111111;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 18px;
    line-height: 1.2;
}

.testi-section-title--light {
    color: #ffffff;
}

.testi-section-desc {
    font-family: var(--font-inter);
    font-size: 15.5px;
    color: #666666;
    line-height: 1.75;
    max-width: 600px;
    margin: 0 auto;
}

/* ---- Featured Testimonial ---- */
.testi-featured-card {
    position: relative;
    background-color: #f8f8f8;
    border-radius: 8px;
    border-left: 5px solid var(--primary-color);
    padding: 60px 55px;
    overflow: hidden;
}

.testi-featured-quote-mark {
    position: absolute;
    top: -20px;
    right: 40px;
    font-family: Georgia, serif;
    font-size: 200px;
    color: var(--primary-color);
    opacity: 0.06;
    line-height: 1;
    pointer-events: none;
    user-select: none;
}

.testi-featured-img-wrap {
    position: relative;
    border-radius: 6px;
    overflow: hidden;
    height: 380px;
}

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

.testi-featured-img-wrap:hover .testi-featured-img {
    transform: scale(1.04);
}

.testi-featured-img-badge {
    position: absolute;
    bottom: 20px;
    right: 20px;
    width: 52px;
    height: 52px;
    background-color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 20px;
    box-shadow: 0 4px 15px rgba(216, 104, 26, 0.5);
}

.testi-stars {
    display: flex;
    gap: 4px;
}

.testi-stars i {
    color: #f5c518;
    font-size: 18px;
}

.testi-featured-text {
    font-family: var(--font-inter);
    font-size: 17px;
    line-height: 1.85;
    color: #444444;
    font-style: italic;
    margin-bottom: 30px;
    position: relative;
    padding-left: 0;
}

.testi-featured-author {
    display: flex;
    align-items: center;
    gap: 18px;
}

.testi-featured-avatar-wrap {
    flex-shrink: 0;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--primary-color);
}

.testi-featured-avatar {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.testi-featured-author-name {
    font-family: var(--font-oswald);
    font-size: 20px;
    font-weight: 600;
    color: #111111;
    text-transform: uppercase;
    margin-bottom: 4px;
}

.testi-featured-author-title {
    font-family: var(--font-inter);
    font-size: 13px;
    color: #888888;
}

/* ---- Testimonial Cards Grid ---- */
.testi-grid-section {
    padding: 0 0 90px 0;
    background-color: #ffffff;
}

.testi-card {
    background-color: #f8f8f8;
    border-radius: 8px;
    border-top: 4px solid var(--primary-color);
    padding: 32px;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testi-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.1);
}

.testi-card--dark {
    background-color: #1a1a1a;
    border-top-color: var(--primary-color);
}

.testi-card--orange {
    background-color: var(--primary-color);
    border-top-color: #bf5b10;
}

.testi-card-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 18px;
}

.testi-card-stars {
    display: flex;
    gap: 3px;
}

.testi-card-stars i {
    color: #f5c518;
    font-size: 15px;
}

.testi-card-stars--light i {
    color: rgba(255, 255, 255, 0.9);
}

.testi-card-quote-icon {
    font-size: 22px;
    color: var(--primary-color);
    opacity: 0.4;
    line-height: 1;
}

.testi-card-quote-icon--light {
    color: rgba(255, 255, 255, 0.5);
    opacity: 1;
}

.testi-card-text {
    font-family: var(--font-inter);
    font-size: 14.5px;
    line-height: 1.8;
    color: #666666;
    flex: 1;
    margin-bottom: 24px;
}

.testi-card-text--light {
    color: rgba(255, 255, 255, 0.88);
}

.testi-card--dark .testi-card-text {
    color: #bbbbbb;
}

.testi-card-author {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: auto;
    padding-top: 20px;
    border-top: 1px solid rgba(0, 0, 0, 0.07);
}

.testi-card--dark .testi-card-author {
    border-top-color: rgba(255, 255, 255, 0.1);
}

.testi-card--orange .testi-card-author {
    border-top-color: rgba(255, 255, 255, 0.25);
}

.testi-card-avatar-wrap {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    border: 2.5px solid var(--primary-color);
}

.testi-card--orange .testi-card-avatar-wrap {
    border-color: rgba(255, 255, 255, 0.5);
}

.testi-card-avatar {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.testi-card-author-name {
    font-family: var(--font-oswald);
    font-size: 16px;
    font-weight: 600;
    color: #111111;
    text-transform: uppercase;
    margin-bottom: 2px;
}

.testi-card--dark .testi-card-author-name {
    color: #ffffff;
}

.testi-card-author-name--light {
    color: #ffffff;
}

.testi-card-author-role {
    font-family: var(--font-exo);
    font-size: 12px;
    font-weight: 700;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.testi-card--dark .testi-card-author-role {
    color: #888888;
}

.testi-card-author-role--light {
    color: rgba(255, 255, 255, 0.7);
}


/* ---- CTA Section ---- */
.testi-cta-section {
    padding: 70px 0;
    background-color: #ffffff;
}

.testi-cta-card {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    border-radius: 8px;
    border-left: 6px solid var(--primary-color);
    padding: 50px 55px;
}

.testi-cta-eyebrow {
    display: inline-block;
    font-family: var(--font-exo);
    font-size: 12px;
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.testi-cta-title {
    font-family: var(--font-oswald);
    font-size: 38px;
    font-weight: 700;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 14px;
    line-height: 1.2;
}

.testi-cta-desc {
    font-family: var(--font-inter);
    font-size: 15px;
    color: #aaaaaa;
    line-height: 1.7;
    margin: 0;
}

/* ---- Review Form ---- */
.testi-review-section {
    padding: 90px 0 100px 0;
    background-color: #f8f8f8;
}

.testi-review-form-wrap {
    background-color: #ffffff;
    border-radius: 8px;
    padding: 55px 50px;
    border-top: 4px solid var(--primary-color);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
}

/* ---- Star Rating Picker ---- */
.testi-rating-selector {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.testi-rating-label {
    font-family: var(--font-exo);
    font-size: 13px;
    font-weight: 700;
    color: #444444;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.testi-star-picker {
    display: flex;
    gap: 6px;
}

.testi-pick-star {
    font-size: 28px;
    color: #cccccc;
    cursor: pointer;
    transition: color 0.15s ease, transform 0.15s ease;
}

.testi-pick-star.fa-solid {
    color: #f5c518;
}

.testi-pick-star:hover {
    transform: scale(1.2);
}


/* 
===============================================
    Contact Page — contact.html
=============================================== 
*/

/* ---- Info Cards ---- */
.contact-info-section {
    padding: 70px 0 0 0;
    background-color: #ffffff;
}

.contact-info-card {
    background-color: #f8f8f8;
    border-radius: 8px;
    border-top: 4px solid var(--primary-color);
    padding: 36px 30px;
    height: 100%;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.08);
}

.contact-info-card--dark {
    background-color: #1a1a1a;
}

.contact-info-icon-wrap {
    width: 64px;
    height: 64px;
    background-color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px auto;
    font-size: 22px;
    color: #ffffff;
    box-shadow: 0 6px 20px rgba(216, 104, 26, 0.35);
    transition: transform 0.3s ease;
}

.contact-info-card:hover .contact-info-icon-wrap {
    transform: scale(1.1) rotate(-5deg);
}

.contact-info-title {
    font-family: var(--font-oswald);
    font-size: 18px;
    font-weight: 600;
    color: #111111;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
}

.contact-info-card--dark .contact-info-title {
    color: #ffffff;
}

.contact-info-text {
    font-family: var(--font-inter);
    font-size: 14.5px;
    color: #666666;
    line-height: 1.65;
    margin-bottom: 6px;
}

.contact-info-card--dark .contact-info-text {
    color: #aaaaaa;
}

.contact-info-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
}

.contact-info-link:hover {
    color: #bf5b10;
}

.contact-info-note {
    font-size: 12px;
    color: #999999;
    font-style: italic;
}

.contact-hours-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.contact-hours-list li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    font-family: var(--font-inter);
    font-size: 14px;
    color: #cccccc;
}

.contact-hours-list li:last-child {
    border-bottom: none;
}

.contact-hours-list li span:last-child {
    color: var(--primary-color);
    font-weight: 600;
    font-family: var(--font-exo);
}

/* ---- Main Section ---- */
.contact-main-section {
    padding: 70px 0 70px 0;
    background-color: #ffffff;
}

/* ---- Form ---- */
.contact-form-wrap {
    background-color: #f8f8f8;
    border-radius: 8px;
    border-top: 4px solid var(--primary-color);
    padding: 50px 45px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
}

.contact-form-header {
    margin-bottom: 36px;
}

.contact-eyebrow {
    display: inline-block;
    font-family: var(--font-exo);
    font-size: 12px;
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.contact-form-title {
    font-family: var(--font-oswald);
    font-size: 36px;
    font-weight: 700;
    color: #111111;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin-bottom: 14px;
    line-height: 1.2;
}

.contact-form-desc {
    font-family: var(--font-inter);
    font-size: 15px;
    color: #666666;
    line-height: 1.75;
    margin: 0;
}

/* Field groups */
.contact-field-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.contact-field-label {
    font-family: var(--font-exo);
    font-size: 12.5px;
    font-weight: 700;
    color: #444444;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-field-inner {
    position: relative;
    display: flex;
    align-items: center;
}

.contact-field-inner--textarea {
    align-items: flex-start;
}

.contact-field-icon {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 14px;
    color: var(--primary-color);
    pointer-events: none;
    z-index: 2;
}

.contact-field-inner--textarea .contact-field-icon {
    top: 15px;
    transform: none;
}

.contact-field-input {
    width: 100%;
    padding: 13px 16px 13px 44px;
    background-color: #ffffff;
    border: 1.5px solid #e0e0e0;
    border-radius: 5px;
    font-family: var(--font-inter);
    font-size: 14.5px;
    color: #333333;
    outline: none;
    transition: border-color 0.25s ease, box-shadow 0.2s ease;
    -webkit-appearance: none;
    appearance: none;
}

.contact-field-input:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(216, 104, 26, 0.1);
}

.contact-field-input::placeholder {
    color: #bbbbbb;
}

.contact-field-textarea {
    resize: vertical;
    min-height: 155px;
}

.contact-field-select {
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23d8681a' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 36px;
}

/* Checkbox */
.contact-checkbox-wrap {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
}

.contact-checkbox-wrap input[type="checkbox"] {
    flex-shrink: 0;
    width: 18px;
    height: 18px;
    margin-top: 2px;
    accent-color: var(--primary-color);
    cursor: pointer;
}

.contact-checkbox-label {
    font-family: var(--font-inter);
    font-size: 13.5px;
    color: #666666;
    line-height: 1.6;
}

.contact-policy-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
}

.contact-policy-link:hover {
    color: #bf5b10;
    text-decoration: underline;
}

/* Submit button */
.contact-submit-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-exo);
    font-weight: 700;
    font-size: 15px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #ffffff;
    background-color: var(--primary-color);
    border: none;
    border-radius: 50px;
    padding: 12px 35px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
    box-shadow: none;
}

.contact-submit-btn:hover {
    background-color: #bf5b10;
    transform: translateY(-2px);
    box-shadow: none;
}

.contact-submit-btn i {
    font-size: 15px;
    transition: transform 0.3s ease;
}

.contact-submit-btn:hover i {
    transform: translateX(4px);
}

/* ---- Map ---- */
.contact-map-wrap {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    margin-bottom: 28px;
    border: 3px solid var(--primary-color);
}

.contact-map-wrap iframe {
    display: block;
}

/* ---- Social Links ---- */
.contact-social-wrap {
    background-color: #1a1a1a;
    border-radius: 8px;
    padding: 28px 28px;
    margin-bottom: 28px;
}

.contact-social-title {
    font-family: var(--font-oswald);
    font-size: 18px;
    font-weight: 600;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 18px;
}

.contact-social-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.contact-social-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    border-radius: 6px;
    text-decoration: none;
    color: #ffffff;
    font-family: var(--font-exo);
    font-size: 13.5px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.contact-social-item:hover {
    transform: translateY(-2px);
    opacity: 0.88;
    color: #ffffff;
}

.contact-social-item i {
    font-size: 17px;
}

.contact-social-item--fb {
    background-color: #1877f2;
}

.contact-social-item--yt {
    background-color: #ff0000;
}

.contact-social-item--ig {
    background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045);
}

.contact-social-item--wa {
    background-color: #25d366;
}

/* ---- FAQ ---- */
.contact-faq-wrap {
    background-color: #f8f8f8;
    border-radius: 8px;
    padding: 28px;
    border-top: 4px solid var(--primary-color);
}

.contact-faq-title {
    font-family: var(--font-oswald);
    font-size: 18px;
    font-weight: 600;
    color: #111111;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 18px;
    padding-bottom: 14px;
    border-bottom: 1px solid #ebebeb;
}

.contact-faq-item {
    border-bottom: 1px solid #ebebeb;
}

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

.contact-faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 14px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    font-family: var(--font-inter);
    font-size: 14.5px;
    font-weight: 500;
    color: #222222;
    cursor: pointer;
    text-align: left;
    transition: color 0.2s ease;
}

.contact-faq-question:hover {
    color: var(--primary-color);
}

.contact-faq-chevron {
    font-size: 12px;
    color: var(--primary-color);
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.contact-faq-item--open .contact-faq-chevron {
    transform: rotate(180deg);
}

.contact-faq-item--open .contact-faq-question {
    color: var(--primary-color);
}

.contact-faq-answer {
    font-family: var(--font-inter);
    font-size: 14px;
    color: #666666;
    line-height: 1.75;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.3s ease;
    padding-bottom: 0;
}

.contact-faq-item--open .contact-faq-answer {
    max-height: 200px;
    padding-bottom: 16px;
}


/* 
===============================================
    Blog Pages — blog.html & blog-single.html
=============================================== 
*/

/* ---- Static Header (non-banner inner pages) ---- */
.main-header--static {
    position: static !important;
    background-color: #b85a14 !important;
}

/* ---- Page Hero Banner ---- */
.page-hero-banner {
    position: relative;
    background-image: url('../images/banner1.jpg');
    background-size: cover;
    background-position: center center;
    background-attachment: fixed;
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.page-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom,
            rgba(5, 5, 5, 0.78) 0%,
            rgba(10, 10, 10, 0.70) 100%);
    z-index: 1;
}

.page-hero-content {
    position: relative;
    z-index: 2;
    padding: 60px 20px;
}

.page-hero-title {
    font-family: var(--font-oswald);
    font-size: 52px;
    font-weight: 700;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 18px;
}

.page-breadcrumb {
    justify-content: center;
    margin-bottom: 0;
    gap: 0;
}

.page-breadcrumb .breadcrumb-item,
.page-breadcrumb .breadcrumb-item a {
    font-family: var(--font-exo);
    font-size: 15px;
    color: #cccccc;
    text-decoration: none;
    transition: color 0.2s ease;
}

.page-breadcrumb .breadcrumb-item a:hover {
    color: var(--primary-color);
}

.page-breadcrumb .breadcrumb-item.active {
    color: var(--primary-color);
}

.page-breadcrumb .breadcrumb-item+.breadcrumb-item::before {
    color: #888888;
    content: "\f054";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    font-size: 10px;
    vertical-align: middle;
    padding: 0 8px;
    line-height: 21px;
}

/* ---- Blog Listing Section ---- */
.blog-listing-section {
    padding: 90px 0 100px 0;
    background-color: #ffffff;
    font-family: var(--font-inter);
}

.blog-list-card {
    background-color: #ffffff;
    margin-bottom: 55px;
    border-bottom: 1px solid #f0f0f0;
    padding-bottom: 55px;
    transition: transform 0.3s ease;
}

.blog-list-card:last-of-type {
    border-bottom: none;
}

.blog-list-img-wrap {
    position: relative;
    overflow: hidden;
    border-radius: 6px;
    margin-bottom: 28px;
}

.blog-list-img {
    width: 100%;
    height: 380px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.blog-list-card:hover .blog-list-img {
    transform: scale(1.04);
}

/* Date Badge */
.blog-list-date-badge,
.single-date-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background-color: var(--primary-color);
    color: #ffffff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 62px;
    height: 70px;
    border-radius: 4px;
    box-shadow: 0 4px 15px rgba(216, 104, 26, 0.4);
    z-index: 5;
    text-align: center;
}

.date-day {
    font-family: var(--font-oswald);
    font-size: 26px;
    font-weight: 700;
    line-height: 1;
    display: block;
}

.date-month {
    font-family: var(--font-exo);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: block;
}

/* Meta row */
.blog-list-meta {
    display: flex;
    align-items: center;
    gap: 22px;
    flex-wrap: wrap;
    margin-bottom: 16px;
    font-size: 13.5px;
    color: #888888;
}

.blog-list-meta .meta-item {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: color 0.2s ease;
}

.blog-list-meta .meta-item i {
    color: var(--primary-color);
    font-size: 13px;
}

/* Blog List Title */
.blog-list-title {
    font-family: var(--font-oswald);
    font-size: 28px;
    font-weight: 700;
    color: #111111;
    line-height: 1.25;
    margin-bottom: 16px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.blog-list-title a {
    text-decoration: none;
    color: inherit;
    transition: color 0.25s ease;
}

.blog-list-title a:hover {
    color: var(--primary-color);
}

.blog-list-excerpt {
    font-size: 15px;
    line-height: 1.75;
    color: #666666;
    margin-bottom: 24px;
}

/* Read More Button */
.btn-blog-readmore {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-exo);
    font-weight: 700;
    font-size: 14px;
    color: #ffffff;
    background-color: var(--primary-color);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 12px 32px;
    border-radius: 4px;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.btn-blog-readmore:hover {
    background-color: #bf5b10;
    color: #ffffff;
    transform: translateY(-2px);
}

/* Pagination */
.blog-pagination {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 10px;
    flex-wrap: wrap;
}

.page-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 4px;
    font-family: var(--font-exo);
    font-size: 15px;
    font-weight: 700;
    color: #333333;
    background-color: #f4f4f4;
    text-decoration: none;
    border: 1.5px solid transparent;
    transition: all 0.25s ease;
}

.page-btn:hover,
.page-btn--active {
    background-color: var(--primary-color);
    color: #ffffff;
    border-color: var(--primary-color);
}

.page-btn--next {
    background-color: #1a1a1a;
    color: #ffffff;
}

.page-btn--next:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: #ffffff;
}

.page-dots {
    font-size: 18px;
    color: #999999;
    padding: 0 5px;
    line-height: 44px;
}

/* ---- Sidebar ---- */
.blog-sidebar {
    padding-left: 20px;
}

.sidebar-widget {
    background-color: #f8f8f8;
    border-radius: 6px;
    padding: 30px;
    margin-bottom: 35px;
    border-top: 3px solid var(--primary-color);
}

.sidebar-widget-title {
    font-family: var(--font-oswald);
    font-size: 22px;
    font-weight: 600;
    color: #111111;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 22px;
    position: relative;
    padding-bottom: 14px;
}

.sidebar-widget-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background-color: var(--primary-color);
    border-radius: 2px;
}

/* Search widget */
.sidebar-search-form {
    display: flex;
    align-items: center;
    background-color: #ffffff;
    border: 1.5px solid #e5e5e5;
    border-radius: 4px;
    overflow: hidden;
    transition: border-color 0.2s ease;
}

.sidebar-search-form:focus-within {
    border-color: var(--primary-color);
}

.sidebar-search-input {
    flex: 1;
    border: none;
    outline: none;
    background: transparent;
    padding: 12px 16px;
    font-size: 14px;
    font-family: var(--font-inter);
    color: #333333;
}

.sidebar-search-input::placeholder {
    color: #aaaaaa;
}

.sidebar-search-btn {
    background-color: var(--primary-color);
    border: none;
    color: #ffffff;
    width: 46px;
    height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background-color 0.2s ease;
    flex-shrink: 0;
    font-size: 15px;
}

.sidebar-search-btn:hover {
    background-color: #bf5b10;
}

/* Categories widget */
.sidebar-categories-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sidebar-categories-list li {
    border-bottom: 1px solid #ebebeb;
}

.sidebar-categories-list li:last-child {
    border-bottom: none;
}

.sidebar-categories-list li a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 11px 0;
    font-size: 15px;
    color: #555555;
    text-decoration: none;
    font-family: var(--font-inter);
    transition: color 0.2s ease, padding-left 0.2s ease;
}

.sidebar-categories-list li a:hover {
    color: var(--primary-color);
    padding-left: 6px;
}

.cat-count {
    font-size: 12px;
    background-color: var(--primary-color);
    color: #ffffff;
    padding: 2px 8px;
    border-radius: 20px;
    font-family: var(--font-exo);
    font-weight: 700;
}

/* Recent Posts widget */
.sidebar-recent-posts {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.recent-post-item {
    display: flex;
    align-items: center;
    gap: 14px;
}

.recent-post-img-wrap {
    flex-shrink: 0;
    width: 75px;
    height: 70px;
    border-radius: 4px;
    overflow: hidden;
}

.recent-post-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.35s ease;
}

.recent-post-item:hover .recent-post-img {
    transform: scale(1.08);
}

.recent-post-info {
    flex: 1;
    min-width: 0;
}

.recent-post-title {
    font-family: var(--font-oswald);
    font-size: 15px;
    font-weight: 600;
    color: #222222;
    text-decoration: none;
    line-height: 1.3;
    display: block;
    margin-bottom: 6px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    transition: color 0.2s ease;
}

.recent-post-title:hover {
    color: var(--primary-color);
}

.recent-post-date {
    font-size: 12px;
    color: #999999;
    display: flex;
    align-items: center;
    gap: 5px;
}

/* Tags widget */
.sidebar-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.tag-badge {
    display: inline-block;
    padding: 6px 14px;
    font-family: var(--font-exo);
    font-size: 12.5px;
    font-weight: 700;
    color: #444444;
    background-color: #ffffff;
    border: 1.5px solid #ddd;
    border-radius: 4px;
    text-decoration: none;
    letter-spacing: 0.5px;
    transition: all 0.2s ease;
}

.tag-badge:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: #ffffff;
}

/* Newsletter sidebar widget */
.sidebar-newsletter-widget {
    background-color: #1a1a1a;
    border-top-color: var(--primary-color);
}

.sidebar-widget-title--light {
    color: #ffffff;
}

.sidebar-widget-title--light::after {
    background-color: var(--primary-color);
}

.sidebar-newsletter-text {
    font-size: 14px;
    color: #bbbbbb;
    line-height: 1.65;
    margin-bottom: 18px;
}

.sidebar-newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.sidebar-newsletter-input {
    width: 100%;
    background-color: rgba(255, 255, 255, 0.08);
    border: 1.5px solid rgba(255, 255, 255, 0.18);
    border-radius: 4px;
    padding: 12px 16px;
    font-size: 14px;
    color: #ffffff;
    font-family: var(--font-inter);
    outline: none;
    transition: border-color 0.2s ease;
}

.sidebar-newsletter-input::placeholder {
    color: #888888;
}

.sidebar-newsletter-input:focus {
    border-color: var(--primary-color);
}

.sidebar-newsletter-btn {
    width: 100%;
    background-color: var(--primary-color);
    color: #ffffff;
    border: none;
    border-radius: 4px;
    padding: 13px;
    font-family: var(--font-exo);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.sidebar-newsletter-btn:hover {
    background-color: #bf5b10;
    transform: translateY(-1px);
}

/* ---- Blog Single Article ---- */
.blog-single-section {
    padding: 90px 0 100px 0;
    background-color: #ffffff;
    font-family: var(--font-inter);
}

.single-featured-img-wrap {
    position: relative;
    border-radius: 6px;
    overflow: hidden;
    margin-bottom: 32px;
}

.single-featured-img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.single-featured-img-wrap:hover .single-featured-img {
    transform: scale(1.02);
}

.single-date-badge {
    top: 25px;
    left: 25px;
    width: 65px;
    height: 73px;
    box-shadow: 0 4px 15px rgba(216, 104, 26, 0.45);
}

/* Article Meta */
.single-article-meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 18px;
    padding-bottom: 18px;
    border-bottom: 1px solid #f0f0f0;
    font-size: 14px;
    color: #888888;
}

.single-article-meta .meta-item {
    display: inline-flex;
    align-items: center;
    gap: 7px;
}

.single-article-meta .meta-item i {
    color: var(--primary-color);
}

.single-article-title {
    font-family: var(--font-oswald);
    font-size: 36px;
    font-weight: 700;
    color: #111111;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    line-height: 1.25;
    margin-bottom: 28px;
}

/* Article Body */
.single-article-content p {
    font-size: 16px;
    line-height: 1.85;
    color: #555555;
    margin-bottom: 22px;
}

.single-article-content h3 {
    font-family: var(--font-oswald);
    font-size: 24px;
    font-weight: 600;
    color: #111111;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 38px 0 16px 0;
    padding-bottom: 12px;
    border-bottom: 2px solid #f0f0f0;
}

/* Blockquote */
.single-blockquote {
    position: relative;
    background-color: #1a1a1a;
    border-left: 5px solid var(--primary-color);
    border-radius: 4px;
    padding: 35px 35px 35px 55px;
    margin: 35px 0;
}

.single-blockquote-icon {
    position: absolute;
    top: 25px;
    left: 18px;
    font-size: 22px;
    color: var(--primary-color);
    opacity: 0.9;
}

.single-blockquote p {
    font-family: var(--font-exo);
    font-size: 18px;
    font-style: italic;
    font-weight: 400;
    color: #f0f0f0 !important;
    line-height: 1.7;
    margin-bottom: 12px !important;
}

.single-blockquote cite {
    font-family: var(--font-inter);
    font-size: 14px;
    color: var(--primary-color);
    font-style: normal;
    font-weight: 600;
    letter-spacing: 0.5px;
}

/* Dual images */
.single-dual-images {
    margin: 30px 0;
}

.single-dual-img {
    width: 100%;
    height: 220px;
    object-fit: contain;
    border-radius: 4px;
    background-color: #f4f4f4;
}

/* Content List */
.single-content-list {
    list-style: none;
    padding: 0;
    margin: 0 0 22px 0;
}

.single-content-list li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 16px;
    font-size: 15.5px;
    color: #555555;
    line-height: 1.7;
}

.single-content-list li i {
    color: var(--primary-color);
    font-size: 18px;
    flex-shrink: 0;
    margin-top: 2px;
}

.single-content-list li strong {
    color: #222222;
}

/* Tags + Share Row */
.single-bottom-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 18px;
    padding: 24px 0;
    border-top: 1px solid #eeeeee;
    border-bottom: 1px solid #eeeeee;
    margin: 40px 0;
}

.single-tags {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}

.single-tags-label {
    font-family: var(--font-exo);
    font-weight: 700;
    font-size: 14px;
    color: #333333;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.single-tags-label i {
    color: var(--primary-color);
}

.single-share {
    display: flex;
    align-items: center;
    gap: 10px;
}

.single-share-label {
    font-family: var(--font-exo);
    font-weight: 700;
    font-size: 14px;
    color: #333333;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.share-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.share-btn:hover {
    transform: translateY(-2px);
    opacity: 0.88;
    color: #ffffff;
}

.share-fb {
    background-color: #1877f2;
}

.share-tw {
    background-color: #000000;
}

.share-wa {
    background-color: #25d366;
}

.share-li {
    background-color: #0a66c2;
}

/* Author Bio Box */
.single-author-box {
    display: flex;
    align-items: flex-start;
    gap: 24px;
    background-color: #f7f7f7;
    border-left: 4px solid var(--primary-color);
    border-radius: 6px;
    padding: 30px;
    margin-bottom: 40px;
}

.author-avatar-wrap {
    flex-shrink: 0;
    width: 90px;
    height: 90px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--primary-color);
}

.author-avatar {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.author-info {
    flex: 1;
}

.author-name {
    font-family: var(--font-oswald);
    font-size: 22px;
    font-weight: 600;
    color: #111111;
    text-transform: uppercase;
    margin-bottom: 4px;
}

.author-role {
    font-family: var(--font-exo);
    font-size: 13px;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 0.8px;
    font-weight: 700;
    display: block;
    margin-bottom: 12px;
}

.author-bio {
    font-size: 14.5px;
    color: #666666;
    line-height: 1.7;
    margin-bottom: 14px;
}

.author-social {
    display: flex;
    gap: 8px;
}

.author-social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: var(--primary-color);
    color: #ffffff;
    font-size: 13px;
    text-decoration: none;
    transition: background-color 0.2s ease, transform 0.2s ease;
}

.author-social-link:hover {
    background-color: #bf5b10;
    transform: translateY(-2px);
    color: #ffffff;
}

/* Prev / Next Post Navigation */
.single-post-nav {
    display: flex;
    gap: 20px;
    justify-content: space-between;
    margin-bottom: 55px;
    flex-wrap: wrap;
}

.post-nav-link {
    flex: 1;
    min-width: 220px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 22px 26px;
    background-color: #f4f4f4;
    border-radius: 6px;
    text-decoration: none;
    border: 1.5px solid transparent;
    transition: border-color 0.25s ease, background-color 0.25s ease;
}

.post-nav-link:hover {
    border-color: var(--primary-color);
    background-color: #fff8f4;
}

.post-nav-next {
    text-align: right;
    align-items: flex-end;
}

.post-nav-label {
    font-family: var(--font-exo);
    font-size: 12px;
    font-weight: 700;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.post-nav-next .post-nav-label {
    justify-content: flex-end;
}

.post-nav-title {
    font-family: var(--font-oswald);
    font-size: 16px;
    font-weight: 600;
    color: #222222;
    line-height: 1.3;
    transition: color 0.2s ease;
}

.post-nav-link:hover .post-nav-title {
    color: var(--primary-color);
}

/* ---- Comments Section ---- */
.single-comments-section {
    margin-bottom: 55px;
}

.comments-title {
    font-family: var(--font-oswald);
    font-size: 26px;
    font-weight: 700;
    color: #111111;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 35px;
    padding-bottom: 14px;
    border-bottom: 2px solid #f0f0f0;
}

.comment-item {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid #f4f4f4;
}

.comment-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.comment-item--reply {
    margin-left: 60px;
    background-color: #fafafa;
    border-radius: 6px;
    padding: 22px;
    border-left: 3px solid var(--primary-color);
}

.comment-avatar-wrap {
    flex-shrink: 0;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    overflow: hidden;
    border: 2.5px solid var(--primary-color);
}

.comment-avatar {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.comment-body {
    flex: 1;
    min-width: 0;
}

.comment-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 10px;
    flex-wrap: wrap;
}

.commenter-name {
    font-family: var(--font-oswald);
    font-size: 17px;
    font-weight: 600;
    color: #111111;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.commenter-badge {
    font-family: var(--font-exo);
    font-size: 10px;
    font-weight: 700;
    background-color: var(--primary-color);
    color: #ffffff;
    padding: 2px 8px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.comment-date {
    font-size: 12.5px;
    color: #aaaaaa;
    margin-left: auto;
    white-space: nowrap;
}

.comment-reply-link {
    font-family: var(--font-exo);
    font-size: 12px;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: color 0.2s ease;
}

.comment-reply-link:hover {
    color: #bf5b10;
}

.comment-text {
    font-size: 15px;
    color: #666666;
    line-height: 1.75;
    margin: 0;
}

/* ---- Comment Form ---- */
.single-comment-form {
    background-color: #f8f8f8;
    border-radius: 6px;
    padding: 40px;
    border-top: 4px solid var(--primary-color);
}

.comment-form-title {
    font-family: var(--font-oswald);
    font-size: 28px;
    font-weight: 700;
    color: #111111;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
}

.comment-form-subtitle {
    font-size: 13.5px;
    color: #888888;
    margin-bottom: 28px;
}

.comment-form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.comment-form-label {
    font-family: var(--font-exo);
    font-size: 13px;
    font-weight: 700;
    color: #444444;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.comment-form-input,
.comment-form-textarea {
    border: 1.5px solid #e0e0e0;
    border-radius: 4px;
    background-color: #ffffff;
    padding: 12px 16px;
    font-size: 14.5px;
    font-family: var(--font-inter);
    color: #333333;
    outline: none;
    transition: border-color 0.25s ease, box-shadow 0.2s ease;
    width: 100%;
}

.comment-form-input:focus,
.comment-form-textarea:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(216, 104, 26, 0.12);
}

.comment-form-input::placeholder,
.comment-form-textarea::placeholder {
    color: #bbbbbb;
}

.comment-form-textarea {
    resize: vertical;
    min-height: 150px;
}

.comment-submit-btn {
    margin-top: 5px;
    padding: 15px 50px;
}

/* 
===============================================
    E-Commerce & Cart Styles
=============================================== 
*/

/* ---- Product List Page ---- */
.catalog-section {
    background-color: #ffffff;
    font-family: var(--font-inter);
}

.prod-card--grey-styled {
    display: flex;
    background-color: #f8f8f8;
    border-radius: 8px;
    border-top: 4px solid var(--primary-color);
    padding: 35px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin-bottom: 24px;
    position: relative;
    overflow: hidden;
}

.prod-card--grey-styled:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}

.prod-card--grey-styled .prod-card-title {
    color: #111111 !important;
    text-shadow: none !important;
    margin-bottom: 20px !important;
}

.prod-card--grey-styled .prod-card-price {
    color: var(--primary-color) !important;
    font-family: var(--font-oswald) !important;
    font-size: 24px !important;
    margin-bottom: 24px !important;
}

.prod-card-tag {
    font-family: var(--font-exo);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: var(--primary-color);
    text-transform: uppercase;
}

.rating-text {
    font-family: var(--font-exo);
    font-size: 13px;
    color: #888888;
}

.prod-card-actions {
    margin-top: 25px;
    display: flex;
    gap: 12px;
}

.prod-card-desc {
    font-size: 14.5px;
    line-height: 1.7;
}

/* ---- Related Product Card ---- */
.related-card-custom {
    display: flex;
    align-items: center;
    background-color: #f8f8f8;
    border-radius: 8px;
    border-top: 4px solid var(--primary-color);
    padding: 30px;
    gap: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin-bottom: 24px;
    border-left: 1px solid #eeeeee;
    border-right: 1px solid #eeeeee;
    border-bottom: 1px solid #eeeeee;
}

.related-card-custom:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
}

.related-card-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.related-card-title {
    font-family: var(--font-oswald);
    font-size: 22px;
    font-weight: 700;
    color: #111111;
    text-transform: uppercase;
    margin: 0;
    line-height: 1.35;
    letter-spacing: 0.5px;
}

.related-card-price {
    font-family: var(--font-oswald);
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-color);
    margin: 0;
}

.related-card-rating {
    display: flex;
    align-items: center;
    gap: 4px;
}

.related-card-rating i {
    color: #f5c518;
    font-size: 14px;
}

.related-card-rating span {
    font-family: var(--font-exo);
    font-size: 12px;
    color: #888888;
    margin-left: 6px;
    font-weight: 700;
}

.related-card-btn {
    align-self: flex-start;
    padding: 10px 28px !important;
    font-size: 13px !important;
    letter-spacing: 1px !important;
    border-radius: 4px !important;
}

.related-card-img-wrap {
    width: 150px;
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    background-color: #ffffff;
    border-radius: 6px;
    border: 1px solid #eee;
    padding: 10px;
}

.related-card-img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 5px 12px rgba(0, 0, 0, 0.1));
    transition: transform 0.4s ease;
}

.related-card-custom:hover .related-card-img {
    transform: scale(1.05) rotate(-1deg);
}

/* ---- Single Product Page ---- */
.product-detail-section {
    font-family: var(--font-inter);
    background-color: #ffffff;
}

.main-image-wrap {
    background-color: #fcfcfc;
    border: 1px solid #eeeeee;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.02);
}

.main-image-wrap img {
    max-height: 420px;
    object-fit: contain;
    transition: transform 0.5s ease;
}

.main-image-wrap:hover img {
    transform: scale(1.03);
}

.prod-thumb {
    width: 80px;
    height: 80px;
    border: 2px solid #eeeeee;
    border-radius: 6px;
    padding: 6px;
    cursor: pointer;
    background-color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: border-color 0.25s ease;
}

.prod-thumb img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.prod-thumb.active,
.prod-thumb:hover {
    border-color: var(--primary-color);
}

.product-category-eyebrow {
    font-family: var(--font-exo);
    font-size: 12px;
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: 2px;
    display: block;
    margin-bottom: 8px;
}

.product-detail-title {
    font-family: var(--font-oswald);
    font-size: 38px;
    font-weight: 700;
    color: #111111;
    text-transform: uppercase;
    line-height: 1.25;
}

.product-detail-price {
    font-family: var(--font-oswald);
    font-size: 32px;
    font-weight: 700;
    color: var(--primary-color);
}

.product-meta-specs-minimal {
    border-top: 1px solid #eeeeee;
    border-bottom: 1px solid #eeeeee;
    padding: 15px 0;
}

.meta-spec-row {
    margin-bottom: 8px;
    font-size: 14.5px;
}

.meta-spec-row:last-child {
    margin-bottom: 0;
}

.meta-spec-row .label {
    width: 110px;
    display: inline-block;
}

.option-label {
    font-family: var(--font-exo);
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.option-dropdown-select {
    border: 1.5px solid #e0e0e0;
    border-radius: 5px;
    padding: 12px 16px;
    font-size: 14.5px;
    color: #333333;
    outline: none;
    max-width: 320px;
}

.option-dropdown-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(216, 104, 26, 0.1);
}

/* Quantity Control */
.qty-selector {
    border: 1.5px solid #e0e0e0;
    border-radius: 5px;
    background-color: #ffffff;
    overflow: hidden;
}

.btn-qty-adj {
    background: none;
    border: none;
    width: 44px;
    height: 48px;
    font-size: 14px;
    color: #666666;
    cursor: pointer;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.btn-qty-adj:hover {
    background-color: #f4f4f4;
    color: var(--primary-color);
}

.qty-number-input {
    width: 48px;
    height: 48px;
    border: none;
    text-align: center;
    font-family: var(--font-exo);
    font-weight: 700;
    font-size: 16px;
    color: #333333;
    outline: none;
    -moz-appearance: textfield;
}

.qty-number-input::-webkit-outer-spin-button,
.qty-number-input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Tabs */
.custom-detail-tabs {
    border-bottom: 2px solid #eeeeee;
}

.custom-detail-tabs .nav-link {
    font-family: var(--font-exo);
    font-weight: 700;
    font-size: 15px;
    text-transform: uppercase;
    color: #888888;
    border: none;
    padding: 12px 24px;
    margin-bottom: -2px;
    border-bottom: 2px solid transparent;
    transition: all 0.2s ease;
}

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

.custom-detail-tabs .nav-link.active {
    color: var(--primary-color);
    border-bottom-color: var(--primary-color);
    background: none;
}

.specs-data-table th {
    font-family: var(--font-exo);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 13px;
    color: #444444;
    width: 240px;
    background-color: #fdfdfd;
}

.specs-data-table td {
    font-size: 14.5px;
    color: #666666;
}

.list-bullet-custom li {
    margin-bottom: 8px;
}

/* ---- Cart Page ---- */
.cart-page-section {
    font-family: var(--font-inter);
    background-color: #ffffff;
}

.cart-item-card {
    display: flex;
    align-items: center;
    background-color: #f8f8f8;
    border-radius: 6px;
    padding: 20px 24px;
    margin-bottom: 18px;
    border-left: 4px solid var(--primary-color);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.cart-item-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.04);
}

.cart-item-img-wrap {
    width: 80px;
    height: 80px;
    background-color: #ffffff;
    border-radius: 4px;
    border: 1px solid #eeeeee;
    padding: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.cart-item-img-wrap img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.cart-item-details {
    flex: 1;
    padding-left: 20px;
    padding-right: 15px;
}

.cart-item-category {
    font-family: var(--font-exo);
    font-size: 11px;
    color: var(--primary-color);
    font-weight: 700;
    text-transform: uppercase;
    display: block;
    margin-bottom: 3px;
}

.cart-item-title {
    font-family: var(--font-oswald);
    font-size: 18px;
    font-weight: 600;
    color: #111111;
    text-transform: uppercase;
    margin: 0 0 4px 0;
}

.cart-item-title a {
    text-decoration: none;
    color: inherit;
    transition: color 0.2s ease;
}

.cart-item-title a:hover {
    color: var(--primary-color);
}

.cart-item-price {
    font-family: var(--font-oswald);
    font-size: 18px;
    color: #333333;
    width: 90px;
    text-align: center;
}

.cart-item-qty {
    width: 150px;
    display: flex;
    justify-content: center;
}

.qty-control-wrapper {
    display: flex;
    align-items: center;
    border: 1.5px solid #e0e0e0;
    border-radius: 4px;
    background-color: #ffffff;
    overflow: hidden;
}

.qty-control-wrapper button {
    background: none;
    border: none;
    width: 32px;
    height: 36px;
    font-size: 11px;
    color: #888888;
    cursor: pointer;
}

.qty-control-wrapper button:hover {
    background-color: #f4f4f4;
    color: var(--primary-color);
}

.qty-control-wrapper input {
    width: 36px;
    height: 36px;
    border: none;
    text-align: center;
    font-family: var(--font-exo);
    font-weight: 700;
    font-size: 14px;
    color: #333333;
}

.cart-item-total {
    font-family: var(--font-oswald);
    font-size: 18px;
    font-weight: 700;
    color: var(--primary-color);
    width: 100px;
    text-align: right;
}

.cart-item-remove {
    width: 50px;
    text-align: right;
}

.btn-remove-item {
    background: none;
    border: none;
    color: #aaaaaa;
    font-size: 16px;
    cursor: pointer;
    transition: color 0.2s ease;
}

.btn-remove-item:hover {
    color: #dc3545;
}

.cart-summary-card {
    background-color: #f8f8f8;
    border-top: 4px solid var(--primary-color);
}

.summary-title {
    font-size: 20px;
    letter-spacing: 0.5px;
}

.summary-row {
    font-size: 15px;
}

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

.bg-light-orange-tint {
    background-color: rgba(216, 104, 26, 0.05);
    border: 1px solid rgba(216, 104, 26, 0.15);
}

/* Empty Cart Layout */
.empty-cart-icon {
    font-size: 80px;
    color: #dddddd;
    line-height: 1;
}

.empty-cart-title {
    font-family: var(--font-oswald);
    font-size: 26px;
    text-transform: uppercase;
    color: #222222;
}

.empty-cart-desc {
    max-width: 500px;
    margin: 0 auto;
    font-size: 15px;
    color: #777777;
    line-height: 1.6;
}

/* ---- Checkout Page ---- */
.checkout-page-section {
    font-family: var(--font-inter);
    background-color: #ffffff;
}

.checkout-form-wrap {
    background-color: #f8f8f8;
    border-top: 4px solid var(--primary-color);
}

.checkout-step-title {
    font-size: 20px;
    letter-spacing: 0.5px;
}

.checkout-form-wrap .form-control,
.checkout-form-wrap .form-select {
    border: 1.5px solid #e0e0e0;
    padding: 11px 14px;
    font-size: 14.5px;
    border-radius: 4px;
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.checkout-form-wrap .form-control:focus,
.checkout-form-wrap .form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(216, 104, 26, 0.1);
}

.checkout-summary-wrap {
    background-color: #ffffff;
    border-top: 4px solid var(--primary-color);
}

.checkout-summary-item {
    font-size: 14.5px;
}

.summary-item-title {
    font-weight: 500;
    color: #222222;
}

/* Order Success Screen */
.success-icon-wrap {
    font-size: 78px;
    color: #28a745;
}

.success-title {
    font-family: var(--font-oswald);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 34px;
    letter-spacing: 0.5px;
    color: #111111;
}

.success-subtitle {
    font-size: 15.5px;
    color: #555555;
    max-width: 600px;
    margin: 0 auto;
}

.success-details-card {
    max-width: 480px;
    border: 1.5px dashed #cccccc;
    border-radius: 6px;
    background-color: #fcfcfc;
}

.success-note {
    font-size: 14.5px;
}



/* 
===============================================
    Wishlist Button Alignments & Floating Styles
=============================================== 
*/
.prod-card-wishlist-btn-float {
    position: absolute;
    top: 25px;
    right: 25px;
    z-index: 10;
    width: 40px;
    height: 40px;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    background: #ffffff !important;
    border: 1px solid #e0e0e0 !important;
    color: #888888 !important;
    padding: 0 !important;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease !important;
    cursor: pointer;
}

.prod-card-wishlist-btn-float:hover {
    color: var(--primary-color) !important;
    border-color: var(--primary-color) !important;
    transform: scale(1.08);
}

.prod-card-wishlist-btn-float.in-wishlist {
    background-color: var(--primary-color) !important;
    border-color: var(--primary-color) !important;
    color: #ffffff !important;
}

.prod-card-wishlist-btn-float i {
    font-size: 16px;
}

/* Single Product Page - Action Row Height Alignment */
.product-action-block {
    display: flex;
    align-items: center;
    gap: 15px;
}

.product-action-block .qty-selector,
.product-action-block #btn-add-to-cart,
.product-action-block #btn-single-wishlist-toggle {
    height: 50px !important;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
    box-sizing: border-box !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.product-action-block .qty-selector .btn-qty-adj {
    height: 100% !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.product-action-block .qty-selector .qty-number-input {
    height: 100% !important;
    border: none !important;
    margin: 0 !important;
    padding: 0 !important;
    vertical-align: middle !important;
}

.product-action-block #btn-add-to-cart {
    padding: 0 35px !important;
    margin: 0 !important;
}

.product-action-block #btn-single-wishlist-toggle {
    padding: 0 !important;
    width: 50px !important;
    min-width: 50px !important;
    margin: 0 !important;
}

.product-action-block #btn-single-wishlist-toggle i {
    font-size: 18px;
}

/* Active wishlist buttons hover state */
.btn-wishlist-toggle.in-wishlist:hover {
    background-color: #bf5b10 !important;
    border-color: #bf5b10 !important;
    color: #ffffff !important;
}

/* Centering and styling for empty shopping cart and wishlist pages */
.empty-cart-wrap,
.empty-state-wrap {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
}

.empty-cart-wrap .btn-custom,
.empty-state-wrap .btn-custom {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    margin-top: 15px !important;
}

/* Custom Alert Info for Wishlist Login Prompt */
.auth-card-custom .alert-info {
    background-color: #f0f7ff !important;
    border: 1px solid #c2e0ff !important;
    color: #0056b3 !important;
    border-radius: 6px !important;
    padding: 12px 16px !important;
    font-family: var(--font-inter) !important;
    font-size: 14px !important;
}

.auth-card-custom .alert-info .btn-close {
    filter: invert(34%) sepia(85%) saturate(1470%) hue-rotate(193deg) brightness(87%) contrast(109%);
}


/* 
===============================================
    Auth & Profile Account Styles
=============================================== 
*/
.auth-page-wrapper {
    background-color: #f7f7f7;
    /* min-height: calc(100vh - 150px); */
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 0;
}

.auth-card-custom {
    background: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
    padding: 40px;
    max-width: 500px;
    width: 100%;
}

.auth-title {
    font-family: var(--font-oswald);
    font-weight: 700;
    text-transform: uppercase;
    color: #1a1a1a;
    letter-spacing: 1px;
    margin-bottom: 25px;
    border-bottom: 2px solid var(--primary-color);
    padding-bottom: 10px;
    display: inline-block;
}

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

.form-group-custom label {
    font-family: var(--font-exo);
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    color: #444444;
    margin-bottom: 8px;
    display: block;
}

.form-input-custom {
    width: 100%;
    background-color: #f9f9f9;
    border: 1px solid #cccccc;
    padding: 12px 15px;
    border-radius: 4px;
    font-family: var(--font-inter);
    color: #1a1a1a;
    font-size: 15px;
    transition: all 0.3s ease;
}

.form-input-custom:focus {
    background-color: #ffffff;
    border-color: var(--primary-color);
    outline: none;
    box-shadow: 0 0 0 3px rgba(216, 104, 26, 0.15);
}

.auth-link {
    color: var(--primary-color);
    font-family: var(--font-exo);
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    text-decoration: none;
    transition: color 0.2s ease;
}

.auth-link:hover {
    color: #bf5b10;
}

/* Verification Digits Wrapper */
.digit-input-container {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    margin: 25px 0;
}

.digit-input {
    width: 60px;
    height: 60px;
    font-size: 24px;
    text-align: center;
    border: 2px solid #cccccc;
    border-radius: 6px;
    background-color: #f9f9f9;
    font-weight: 700;
    font-family: var(--font-exo);
    color: #1a1a1a;
    transition: all 0.3s ease;
}

.digit-input:focus {
    border-color: var(--primary-color);
    background-color: #ffffff;
    box-shadow: 0 0 0 3px rgba(216, 104, 26, 0.15);
    outline: none;
}

/* Profile Layout */
.profile-section {
    background-color: #f7f7f7;
    padding: 60px 0;
    min-height: calc(100vh - 200px);
}

.profile-sidebar-card {
    background: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.03);
    padding: 30px 20px;
    text-align: center;
    margin-bottom: 30px;
}

.profile-avatar-container {
    position: relative;
    width: 120px;
    height: 120px;
    margin: 0 auto 20px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid #e0e0e0;
}

.profile-avatar-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    background-color: #f0f0f0;
}

.profile-avatar-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.6);
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    cursor: pointer;
    font-size: 12px;
    transition: background 0.3s ease;
}

.profile-avatar-overlay:hover {
    background: rgba(0, 0, 0, 0.8);
}

.profile-avatar-overlay i {
    font-size: 14px;
}

.profile-sidebar-nav {
    list-style: none;
    padding: 0;
    margin: 30px 0 0;
    text-align: left;
}

.profile-nav-item {
    margin-bottom: 8px;
}

.profile-nav-link {
    display: flex;
    align-items: center;
    padding: 12px 20px;
    color: #555555;
    text-decoration: none;
    font-family: var(--font-exo);
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    border-radius: 4px;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
    background-color: #f9f9f9;
}

.profile-nav-link i {
    width: 20px;
    margin-right: 12px;
    font-size: 16px;
    text-align: center;
}

.profile-nav-link:hover {
    color: var(--primary-color);
    background-color: #f1f1f1;
}

.profile-nav-link.active {
    color: var(--primary-color);
    background-color: #ffffff;
    border-left-color: var(--primary-color);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.profile-content-card {
    background: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.03);
    padding: 40px;
    min-height: 500px;
}

.profile-tab-pane {
    display: none;
}

.profile-tab-pane.active {
    display: block;
    animation: fadeIn 0.4s ease;
}

.profile-tab-title {
    font-family: var(--font-oswald);
    text-transform: uppercase;
    font-weight: 700;
    font-size: 24px;
    color: #1a1a1a;
    border-bottom: 2px solid #e0e0e0;
    padding-bottom: 12px;
    margin-bottom: 30px;
}

/* Order cards and items inside profile */
.order-history-card {
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    background: #ffffff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.order-history-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.04);
}

.order-sub-item {
    padding: 8px 0;
    border-bottom: 1px dashed #efefef;
}

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

/* Wishlist page details */
.wishlist-item-card {
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.wishlist-item-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.04);
}

.btn-remove-wish {
    color: #888888;
    transition: color 0.2s ease;
    cursor: pointer;
}

.btn-remove-wish:hover {
    color: #ff3333;
}

.btn-wishlist-toggle.in-wishlist {
    background-color: var(--primary-color) !important;
    border-color: var(--primary-color) !important;
    color: #ffffff !important;
}

/* Wishlist Badge design */
.wishlist-badge {
    position: absolute;
    top: -6px;
    right: -9px;
    background-color: var(--primary-color);
    color: #fff;
    font-size: 9px;
    font-family: var(--font-inter);
    width: 15px;
    height: 15px;
    border-radius: 50%;
    display: none;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.about_story {
    padding-bottom: 0 !important;
}

/* ===============================================
    Responsive Layout 
=============================================== */

@media only screen and (max-width: 1880px) {
    .site_paddinglr {
        padding-inline: 125px;
    }
}

@media only screen and (max-width: 1780px) {
    .site_paddinglr {
        padding-inline: 115px;
    }
}

@media only screen and (max-width: 1680px) {
    .site_paddinglr {
        padding-inline: 105px;
    }

    .banner-title .line-regular,
    .banner-title .line-bold {
        font-size: 78px;
    }

    .prod-card-title {
        font-size: 26px;
        line-height: 36px;
    }

    .features-grid {
        max-width: 88%;
    }

    .blog-section {
        padding: 50px 0;
    }

    .why-title {
        font-size: 38px;
    }

    .about-cta-title {
        font-size: 38px;
    }

    .why-stat-num {
        font-size: 38px;
    }

    .mvv-section {
        padding: 60px 0;
    }

    .about-cta-section {
        padding: 70px 0;
    }

    .about-cta-subtitle {
        font-size: 16px;
    }

    .welcome_about {
        padding-left: 40px;
        padding-top: 30px;
    }

    .slide-inner {
        padding-left: 105px;
    }

    .banner-title .line-regular,
    .banner-title .line-bold {
        font-size: 68px;
    }

    .banner-subtitle {
        margin-bottom: 10px;
    }

    .btn-custom {
        font-size: 18px;
        padding: 14px 38px;
    }

    .story-text {
        font-size: 16px;
        line-height: 26px;
    }

    .testi-grid-section {
        padding: 0 0 0px 0;
    }

    .testi-review-section {
        padding: 50px 0 60px 0;
    }
}

@media only screen and (max-width: 1550px) {
    .site_paddinglr {
        padding-inline: 90px;
    }

    .banner-title .line-regular,
    .banner-title .line-bold {
        font-size: 72px;
    }

    .prod-card {
        padding: 50px 0px 100px 45px;
    }

}

@media only screen and (max-width: 1440px) {
    .site_paddinglr {
        padding-inline: 75px;
    }

    .banner-title .line-regular,
    .banner-title .line-bold {
        font-size: 68px;
    }

    .find-parts-title {
        font-size: 40px;
        line-height: 50px;
    }

    .prod-card-title {
        font-size: 22px;
        line-height: 32px;
    }

    .prod-card-img {
        bottom: 35px;
        max-width: 310px;

    }

    .btn-shop-now {
        font-size: 18px;
    }

    .prod-card {
        padding: 40px 0px 65px 40px;
    }

    .prod-card-price {
        margin-bottom: 60px;
    }

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

    .feature-desc {
        font-size: 16px;
    }

    .feature-divider {
        margin-right: 28px;
    }

    .feature-icon {
        font-size: 32px;
    }

    .feature-item {
        gap: 20px;
    }

    .experience-badge .badge-number {
        font-size: 34px;
        line-height: 44px;

    }

    .experience-badge {
        padding: 25px;
    }

    .welcome-subtitle {
        font-size: 24px;
        margin-bottom: 10px;
        line-height: 34px;
    }

    .welcome-title {
        font-size: 38px;
        line-height: 48px;
        margin-bottom: 15px;
    }

    .welcome-desc-lead {
        font-size: 16px;
        line-height: 26px;
    }

    .welcome-desc-body {
        font-size: 16px;
        line-height: 26px;
    }

    .welcome-right-col .btn-shop-now {
        font-size: 18px;
        line-height: 28px;
    }

    .welcome-desc-body {
        margin-bottom: 40px;
    }

    .welcome-dashboard-img {
        height: 520px;
    }

    .features-grid {
        max-width: 95%;
    }

    .find-parts-subtitle {
        font-size: 16px;
        line-height: 26px;
    }

    .testimonial-bike-img {
        left: 0%;
        height: 100%;
    }

    .testimonial-section {
        padding: 80px 0;
    }

    .footer-brand-title {
        font-size: 36px;
        line-height: 46px;
    }

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

    .footer-links-list li a {
        font-size: 16px;
    }

    .opening-hours-list li {
        font-size: 16px;
    }

    .footer-about-text {
        font-size: 16px;
        line-height: 26px;
    }

    .why-title {
        font-size: 35px;
    }

    .about-cta-title {
        font-size: 35px;
    }

    .why-stat-num {
        font-size: 35px;
    }

    .why-choose-section {
        padding: 50px 0 50px 0;
    }

    .mvv-section {
        padding: 50px 0;
    }

    .about-cta-section {
        padding: 50px 0;
    }

    .story-text {
        font-size: 16px;
        line-height: 26px;
    }

    .slide-inner {
        padding-left: 75px;
    }

    .banner-title .line-regular,
    .banner-title .line-bold {
        font-size: 62px;
    }

    .banner-title {
        padding-bottom: 60px;
    }

    .banner-subtitle {
        font-size: 22px;
        line-height: 32px;
        letter-spacing: 0px;
    }

    .testimonial-text {
        font-size: 16px;
        line-height: 26px;
    }

    .author-name {
        font-size: 18px;
        line-height: 28px;

    }

    .prod-card {
        padding: 40px;
    }

    .testi-featured-section {
        padding: 50px 0 70px 0;
    }

    .blog-listing-section {
        padding: 50px 0 60px 0;
    }

    .blog-list-card {
        margin-bottom: 30px;
        padding-bottom: 30px;
    }

    .btn-custom {
        font-size: 14px;
        padding: 14px 32px;
    }
}

@media only screen and (max-width: 1367px) {
    .site_paddinglr {
        padding-inline: 60px;
    }

    .main-header {
        position: static !important;
    }

    .banner-title .line-regular,
    .banner-title .line-bold {
        font-size: 52px;
    }

    .slide-inner {
        padding-left: 60px;
    }
}

@media only screen and (max-width: 1280px) {
    .site_paddinglr {
        padding-inline: 50px;
    }

    .banner-title .line-regular,
    .banner-title .line-bold {
        font-size: 48px;
    }

    .prod-card-title {
        font-size: 19px;
        line-height: 29px;
    }

    .prod-card-price {
        font-size: 16px;
        line-height: 26px;
    }

    .prod-card-img {
        max-width: 280px;
    }

    .welcome-right-col {
        padding-left: 45px;
    }

    .blog-section {
        padding: 50px 0;
    }

    .welcome_about {
        padding-left: 25px;
        padding-top: 20px;
    }

    .page-hero-banner {
        min-height: 240px;
    }

    .page-hero-content {
        padding: 30px 20px;
    }
}

@media only screen and (max-width: 1199px) {

    .welcome-right-col {
        padding-left: 30px;
    }

    .welcome-title {
        font-size: 38px;
    }

    .testimonial-watermark {
        font-size: 200px;
    }

    .testimonial-bike-wrap {
        width: 35%;
    }

    .blog-sidebar {
        padding-left: 10px;
    }

    .testi-section-title {
        font-size: 34px;
    }

    .testi-stat-item {
        padding: 10px 30px;
    }

    .testi-featured-card {
        padding: 45px 35px;
    }

    .testi-cta-card {
        padding: 40px 35px;
    }

    .testi-cta-title {
        font-size: 30px;
    }
}

@media only screen and (max-width: 1150px) {
    .site_paddinglr {
        padding-inline: 40px;
    }

    .prod-card {
        display: block;
    }

    .slide-inner {
        padding-left: 40px;
    }

    .btn-custom {
        font-size: 14px;
        padding: 14px 24px;
    }

    .nav-links {
        gap: 20px;
    }

}

@media only screen and (max-width: 1080px) {
    .site_paddinglr {
        padding-inline: 30px;
    }

    .features-grid {
        max-width: 100%;
    }

    .btn-custom {
        padding: 14px 12px;
    }

    .cart-item-title {
        font-size: 14px;
    }
}

@media only screen and (max-width: 1024px) {
    .site_paddinglr {
        padding-inline: 25px;
    }

    .find-parts-title {
        font-size: 34px;
        line-height: 44px;
    }

    .find-parts-subtitle {
        font-size: 14px;
        line-height: 24px;
    }

    .prod-card-img {
        max-width: 220px;
    }

    .btn-shop-now {
        font-size: 14px;
        line-height: 24px;
    }

    .feature-title {
        font-size: 16px;
    }

    .feature-desc {
        font-size: 14px;
    }

    .feature-divider {
        margin-right: 12px;
    }

    .feature-icon {
        font-size: 28px;
    }

    .features-strip {
        padding: 24px 0 30px 0;
    }

    .experience-badge .badge-number {
        font-size: 28px;
        line-height: 38px;
    }

    .experience-badge {
        padding: 20px;
    }

    .welcome-desc-lead {
        font-size: 14px;
        line-height: 24px;
        margin-bottom: 10px;
    }

    .welcome-desc-body {
        font-size: 14px;
        line-height: 24px;
    }

    .welcome-subtitle {
        font-size: 18px;
        margin-bottom: 8px;
        line-height: 28px;
    }

    .welcome-title {
        font-size: 32px;
        line-height: 42px;
    }

    .welcome-right-col .btn-shop-now {
        font-size: 16px;
        line-height: 26px;
    }

    .welcome-dashboard-img {
        height: 440px;
    }

    .welcome-desc-body {
        margin-bottom: 25px;
    }

    .footer-brand-title {
        font-size: 28px;
        line-height: 38px;
    }

    .widget-title {
        font-size: 18px;
        margin-bottom: 22px;
    }

    .testimonial-bike-wrap {
        width: 32%;
    }

    .testimonial-text {
        font-size: 14px;
        line-height: 24px;
    }

    .author-name {
        font-size: 18px;
        line-height: 28px;
    }

    .testimonial-section {
        padding: 40px 0;
    }

    .testimonial-slider .slick-dots li button {
        width: 8px !important;
        height: 8px !important;
    }

    .why-card-title {
        font-size: 20px;
    }

    .why-title {
        font-size: 30px;
    }

    .about-cta-title {
        font-size: 30px;
    }

    .why-stat-num {
        font-size: 30px;
    }

    .why-card-icon {
        width: 60px;
        height: 60px;
        margin: 0 auto 20px auto;
        font-size: 20px;
    }

    .set_uscl {
        margin-bottom: 30px !important;
    }

    .mvv-card-title {
        font-size: 24px;
    }

    .first_misson {
        margin-top: 12px !important;
    }

    .why-choose-section {
        padding: 40px 0 40px 0;
    }

    .mvv-section {
        padding: 40px 0;
    }

    .about-cta-section {
        padding: 40px 0;
    }

    .why-stat-label {
        font-size: 13px;
        letter-spacing: 0px;
    }

    .auth-page-wrapper {
        padding: 30px 0;
    }

    .story-text {
        font-size: 14px;
        line-height: 24px;
    }

    .slide-inner {
        padding-left: 30px;
    }

    .banner-title .line-regular,
    .banner-title .line-bold {
        font-size: 46px;
        line-height: 56px;
    }

    .btn-custom {
        font-size: 14px;
        line-height: 24px;
    }

    .banner-title {
        padding-bottom: 20px;
    }

    .banner-subtitle {
        font-size: 20px;
        line-height: 30px;
    }

    .testi-stat-number {
        font-size: 36px;
        line-height: 46px;
    }

    .cart_pe {
        display: block;
    }

    .lft_col {
        width: 100% !important;
    }

    .cart_summary {
        width: 100% !important;
    }

    .nav-links {
        gap: 10px;
    }

}

@media (min-width: 992px) {

    .welcome-left-col,
    .welcome-right-col {
        width: 50% !important;
        flex: 0 0 50% !important;
        max-width: 50% !important;
    }
}

@media only screen and (max-width: 991px) {
    .site_paddinglr {
        padding-inline: 20px;
    }

    /* Mobile Top Bar adjustments */
    .top-bar .row {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

    .top-bar-left,
    .top-bar-right {
        justify-content: center;
        flex-wrap: wrap;
        gap: 10px 20px;
    }

    /* Mobile Header adjustments */
    .nav-links {
        flex-direction: column;
        gap: 15px;
        align-items: flex-start;
        padding: 20px 0;
    }

    .nav-divider {
        display: none;
    }

    .nav-icons {
        display: flex !important;
        flex-direction: row;
        justify-content: flex-start;
        gap: 25px;
        padding: 15px 0 5px 0;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        margin-top: 10px;
        width: 100%;
    }

    .main-header .navbar-collapse {
        background-color: var(--top-bar-bg);
        padding: 15px 25px;
        border-radius: 8px;
        margin-top: 15px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    }

    /* Responsive Banner Slider */
    .slide-inner {
        padding-left: 20px;
    }

    .banner-title .line-regular,
    .banner-title .line-bold {
        font-size: 40px;
    }

    .banner-subtitle {
        font-size: 16px;
    }

    .btn-custom {
        padding: 10px 24px;
        font-size: 12px;
    }

    .testimonial-section {
        background: #1e1f21;
    }

    .welcome-section {
        padding: 70px 0;
    }

    .welcome-right-col {
        padding-left: 0;
        margin-top: 40px;
    }

    .welcome-image-wrapper {
        max-width: 100%;
        margin-top: 15px;
        margin-left: 15px;
    }

    .experience-badge {
        top: -15px;
        left: -10px;
        padding: 18px 22px;
        min-width: 140px;
    }

    .experience-badge .badge-number {
        font-size: 28px;
    }

    .experience-badge .badge-text {
        font-size: 18px;
    }

    .welcome-title {
        font-size: 32px;
    }

    .testimonial-section {
        padding: 80px 0;
    }

    .testimonial-watermark {
        font-size: 150px;
    }

    .testimonial-vertical-title {
        font-size: 56px;
    }

    .testimonial-quote-mark {
        font-size: 100px;
        left: 60px;
        top: 15px;
    }

    .testimonial-text {
        font-size: 16px;
        line-height: 1.75;
    }

    .blog-section {
        padding: 70px 0;
    }

    .blog-main-title {
        font-size: 34px;
        margin-bottom: 20px;
    }

    .blog-card-img {
        height: 220px;
    }

    .site-footer {
        padding: 45px 0 35px 0;
    }

    .newsletter-wrap {
        margin-bottom: 60px;
    }

    .widget-title {
        margin-bottom: 20px;
        font-size: 22px;
    }

    .footer-brand-title {
        font-size: 26px;
        line-height: 36px;
        padding-top: 12px;
    }

    .footer-about-text {
        font-size: 15px;
    }

    .footer-divider {
        margin: 30px 0 20px 0;
    }

    .footer-col-links .footer-widget {
        padding-left: 0 !important;
    }

    .blog-listing-section,
    .blog-single-section {
        padding: 70px 0 80px 0;
    }

    .blog-sidebar {
        padding-left: 0;
        margin-top: 30px;
    }

    .page-hero-title {
        font-size: 40px;
    }

    .single-featured-img {
        height: 340px;
    }

    .single-article-title {
        font-size: 28px;
    }

    .single-author-box {
        flex-direction: column;
        align-items: flex-start;
    }

    .comment-item--reply {
        margin-left: 30px;
    }

    /* Contact page responsive — 991px */
    .contact-info-section {
        padding: 55px 0 0 0;
    }

    .contact-main-section {
        padding: 55px 0 80px 0;
    }

    .contact-form-wrap {
        padding: 38px 30px;
    }

    .contact-form-title {
        font-size: 28px;
    }

    .testi-featured-section {
        padding: 50px 0 50px 0;
    }

    .testi-grid-section {
        padding: 0 0 70px 0;
    }


    .testi-cta-section {
        padding: 50px 0;
    }

    .testi-review-section {
        padding: 70px 0 80px 0;
    }

    .testi-section-title {
        font-size: 28px;
    }

    .testi-featured-img-wrap {
        height: 280px;
    }

    .testi-featured-card {
        padding: 35px 28px;
    }

    .testi-featured-text {
        font-size: 15px;
    }

    .testi-stat-item {
        padding: 10px 20px;
    }

    .testi-stat-number {
        font-size: 32px;
    }

    .testi-cta-card {
        padding: 35px 28px;
    }

    .testi-cta-title {
        font-size: 26px;
    }

    .testi-review-form-wrap {
        padding: 40px 32px;
    }

    /* Shop & Cart responsive — 991px */
    .prod-card--grey-styled {
        flex-direction: column;
        padding: 28px;
    }

    .prod-card--grey-styled .prod-card-img-wrap {
        width: 100%;
        text-align: center;
        margin-top: 30px;
        order: -1;
    }

    .prod-card--grey-styled .prod-card-img {
        position: relative !important;
        right: auto !important;
        bottom: auto !important;
        max-width: 100% !important;
        margin: 0 auto !important;
    }

    .prod-card--grey-styled .prod-card-content {
        padding-right: 0;
    }

    .main-image-wrap img {
        max-height: 320px;
    }

    .cart-item-card {
        flex-wrap: wrap;
        gap: 15px;
        padding: 20px;
        position: relative;
    }

    .cart-item-details {
        width: calc(100% - 100px);
        padding-left: 15px;
        padding-right: 0;
        margin-bottom: 10px;
    }

    .cart-item-price {
        width: auto;
        text-align: left;
        font-size: 16px;
        font-weight: bold;
    }

    .cart-item-qty {
        width: auto;
        margin-left: auto;
    }

    .cart-item-total {
        width: 100%;
        text-align: right;
        border-top: 1px solid #eeeeee;
        padding-top: 10px;
        margin-top: 5px;
    }

    .cart-item-remove {
        position: absolute;
        top: 15px;
        right: 15px;
        width: auto;
    }

    .about-hero-content {
        padding: 130px 40px 50px 40px;
    }

    .about-hero-title {
        font-size: 40px;
    }

    .stat-divider {
        display: none;
    }

    .about-cta-title {
        font-size: 35px;
    }

    .why-stats-bar {
        padding: 30px 30px;
        gap: 30px;
    }

    .why-stat-divider {
        display: none;
    }

    .profile-sidebar-card {
        padding: 20px 15px;
    }

    .profile-sidebar-nav {
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
        margin-top: 20px;
        justify-content: center;
    }

    .profile-nav-item {
        margin-bottom: 0;
    }

    .profile-nav-link {
        padding: 10px 15px;
        font-size: 12px;
        border-left: none;
        border-bottom: 3px solid transparent;
        background-color: #f1f1f1;
    }

    .profile-nav-link.active {
        border-left: none;
        border-bottom-color: var(--primary-color);
    }

    .profile-content-card {
        padding: 25px;
        margin-top: 20px;
    }

    .prod-card-img {
        max-width: 320px;
    }

    .welcome-section {
        padding: 20px 0;
    }

    .welcome-right-col {
        padding-left: 20px;
        margin-top: 0px;
    }

    .welcome-section {
        padding: 20px 0 50px 0;
    }

    .blog-section {
        padding: 40px 0;
    }

    .footer-col-about .d-flex {
        display: block !important;
    }

    .footer-col-about,
    .footer-col-links {
        margin-bottom: 0px !important;
    }

    .widget-title {
        margin-bottom: 18px;
        font-size: 18px;
    }

    .newsletter-btn {
        font-size: 14px;
        padding: 12px 32px;
    }

    .footer-main-row {
        margin-bottom: 10px;
    }

    .welcome_about {
        padding-left: 25px;
        padding-top: 0px;
    }

    .btn-custom {
        font-size: 14px !important;
        line-height: 24px;
    }

    .welcome-right-col .btn-shop-now {
        font-size: 14px;
        line-height: 24px;
    }

    .contact-form-wrap {
        padding: 20px 30px;
    }

}

@media only screen and (max-width: 768px) {
    .site_paddinglr {
        padding-inline: 15px;
    }

    .find-parts-section {

        padding: 20px 0 0 0;
    }

    .find-parts-heading {
        margin-bottom: 30px;
    }

    .banner-title .line-regular,
    .banner-title .line-bold {
        font-size: 36px;
        line-height: 46px;
    }
}

@media only screen and (max-width: 767px) {

    .banner-title .line-regular,
    .banner-title .line-bold {
        font-size: 32px;
    }

    .banner-subtitle {
        font-size: 14px;
    }

    .btn-custom {
        padding: 8px 20px;
        font-size: 11px;
    }

    .welcome-section {
        padding: 50px 0;
    }

    .welcome-image-wrapper {
        margin-left: 0;
    }

    .experience-badge {
        position: absolute;
        top: -10px;
        left: -10px;
        padding: 12px 18px;
        min-width: 120px;
    }

    .experience-badge .badge-number {
        font-size: 22px;
    }

    .experience-badge .badge-text {
        font-size: 15px;
    }

    .welcome-title {
        font-size: 28px;
    }

    .welcome-desc-body {
        margin-bottom: 30px;
    }

    .newsletter-wrap {
        background-color: transparent;
        border: none;
        padding: 0;
        box-shadow: none;
    }

    .newsletter-form {
        flex-direction: column;
        gap: 15px;
    }

    .newsletter-input {
        width: 100%;
        background-color: rgba(30, 30, 30, 0.85);
        border: 1px solid rgba(255, 255, 255, 0.12);
        border-radius: 50px;
        text-align: center;
        padding: 12px 20px;
        font-size: 14px;
    }

    .newsletter-btn {
        width: 100%;
        padding: 12px 24px;
        font-size: 13px;
    }

    .footer-brand-title {
        font-size: 28px;
    }

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

    .footer-main-row {
        margin-bottom: 20px;
    }

    .footer-info-row {
        gap: 15px;
    }

    .footer-bottom-row {
        text-align: center;
        gap: 15px;
    }

    .newsletter-wrap {
        background-color: transparent;
        border: none;
        padding: 0;
        box-shadow: none;
    }

    .newsletter-form {
        flex-direction: column;
        gap: 15px;
    }

    .newsletter-input {
        width: 100%;
        background-color: rgba(30, 30, 30, 0.85);
        border: 1px solid rgba(255, 255, 255, 0.12);
        border-radius: 50px;
        text-align: center;
        padding: 12px 20px;
        font-size: 14px;
    }

    .newsletter-btn {
        width: 100%;
        padding: 12px 24px;
        font-size: 13px;
    }

    .footer-brand-title {
        font-size: 28px;
    }

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

    .footer-main-row {
        margin-bottom: 20px;
    }

    .footer-info-row {
        gap: 15px;
    }

    .footer-bottom-row {
        text-align: center;
        gap: 15px;
    }

    .testimonial-section {
        padding: 60px 0;
    }

    .testimonial-watermark {
        display: none;
    }

    .testimonial-left-col {
        display: none !important;
    }

    .testimonial-text {
        font-size: 15px;
        line-height: 1.7;
    }

    .blog-main-title {
        font-size: 28px;
    }

    .blog-actions {
        flex-direction: row;
        gap: 15px;
        justify-content: flex-start !important;
        margin-top: 25px !important;
    }

    /* Testimonials page responsive — 767px */
    .testi-stats-grid {
        gap: 0;
    }

    .testi-stat-item {
        padding: 12px 18px;
    }

    .testi-stat-divider {
        display: none;
    }

    .testi-stats-strip {
        padding: 20px 0;
    }

    .testi-featured-card {
        padding: 28px 20px;
    }

    .testi-featured-quote-mark {
        font-size: 120px;
        top: -10px;
        right: 15px;
    }

    .testi-featured-img-wrap {
        height: 240px;
        margin-bottom: 28px;
    }

    .testi-featured-text {
        font-size: 14.5px;
    }

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

    .testi-cta-card {
        padding: 28px 22px;
    }

    .testi-cta-title {
        font-size: 22px;
        margin-bottom: 12px;
    }

    .testi-review-form-wrap {
        padding: 30px 20px;
    }


    /* Contact page responsive — 767px */
    .contact-info-section {
        padding: 40px 0 0 0;
    }

    .contact-main-section {
        padding: 40px 0 60px 0;
    }

    .contact-form-wrap {
        padding: 28px 20px;
    }

    .contact-form-title {
        font-size: 22px;
    }

    .contact-submit-btn {
        width: 100%;
        justify-content: center;
    }

    .contact-social-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .page-hero-title {
        font-size: 30px;
    }

    .blog-list-img {
        height: 260px;
    }

    .single-featured-img {
        height: 250px;
    }

    .single-article-title {
        font-size: 22px;
    }

    .single-bottom-row {
        flex-direction: column;
    }

    .single-post-nav {
        flex-direction: column;
    }

    .post-nav-link {
        min-width: unset;
    }

    .post-nav-next {
        text-align: left;
        align-items: flex-start;
    }

    .post-nav-next .post-nav-label {
        justify-content: flex-start;
    }

    .comment-item--reply {
        margin-left: 15px;
    }

    .comment-date {
        margin-left: 0;
    }

    .single-comment-form {
        padding: 25px 20px;
    }

    .blog-list-meta {
        gap: 12px;
    }

    .product-detail-title {
        font-size: 30px;
    }

    .product-detail-price {
        font-size: 26px;
    }

    .specs-data-table th {
        width: 100%;
        display: block;
        border-bottom: none;
    }

    .specs-data-table td {
        display: block;
    }

    .about-hero-content {
        padding: 120px 20px 40px 20px;
    }

    .about-hero-title {
        font-size: 30px;
    }

    .story-img-wrap {
        min-height: 280px;
        margin-top: 40px;
    }

    .about-cta-title {
        font-size: 25px;
    }

    .story-title {
        font-size: 34px;
    }

    .why-choose-section {
        padding: 60px 0 50px 0;
    }

    .why-title {
        font-size: 32px;
    }

    .why-stats-bar {
        border-radius: 8px;
        padding: 28px 20px;
    }

    .why-stat-num {
        font-size: 36px;
    }

    .welcome-section {
        padding: 0px 0 50px 10px;
    }

    .feature-item {
        flex-direction: column;
        align-items: center;
        gap: 10px;
        text-align: center;
    }

    .feature-divider {
        display: none !important;
    }

    .welcome-left-col {
        margin-bottom: 25px !important;
    }

    .welcome-section {
        padding: 0px 0 30px 5px;
    }

    .newsletter-btn {
        width: auto;
    }

    .footer-col-links {
        width: 50%;
    }

    .footer-col-hours {
        width: 50%;
        margin-bottom: 0 !important;
    }

    .newsletter-wrap {
        margin-bottom: 20px;
    }

    .page-hero-banner {
        min-height: 200px;
    }

    .blog-list-card {
        margin-bottom: 35px;
        padding-bottom: 30px;
    }

    .blog-listing-section,
    .blog-single-section {
        padding: 40px 0 20px 0;
    }

    .testi-featured-section {
        padding: 40px 0 40px 0;
    }

    .testi-grid-section {
        padding: 0;
    }

    .why-stats-bar {
        margin-top: 0px;
    }

    .testi-review-section {
        padding: 40px 0 50px 0;
    }

    .testi-pick-star {
        font-size: 22px;
    }

    .blog-list-title {
        font-size: 24px;
        line-height: 34px;
    }

}

@media only screen and (max-width: 615px) {
    .custom-detail-tabs {
        display: flex !important;
        flex-wrap: nowrap !important;
        overflow-x: auto !important;
        overflow-y: hidden !important;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        /* Hide scrollbar on Firefox */
        -ms-overflow-style: none;
        /* Hide scrollbar on IE/Edge */
        border-bottom: 2px solid #eeeeee;
    }

    .custom-detail-tabs::-webkit-scrollbar {
        display: none;
        /* Hide scrollbar on Chrome/Safari/Opera */
    }

    .custom-detail-tabs .nav-item {
        flex: 0 0 auto !important;
    }

    .custom-detail-tabs .nav-link {
        padding: 10px 16px !important;
        font-size: 13px !important;
        white-space: nowrap !important;
    }
}

@media only screen and (max-width: 600px) {
    .footer-info-row {
        gap: 0;
    }

    .blog-card {
        margin-bottom: 0px;
    }

    .find-parts-subtitle br {
        display: none;
    }

    .testimonial-section {
        padding: 30px 0;
    }

    .banner-title .line-regular,
    .banner-title .line-bold {
        font-size: 30px;
        line-height: 40px;
    }

    .banner-title {
        margin-bottom: 14px;
    }

    .banner-title .line-regular,
    .banner-title .line-bold {
        font-size: 24px;
        line-height: 30px;
    }

    .banner-subtitle {
        margin-bottom: 5px;
    }

    .banner-title {
        padding-bottom: 12px;
    }

    .why-choose-section {
        padding: 40px 0 50px 0;
    }

    .catalog-section {
        padding-bottom: 20px !important;
        padding-top: 30px !important;
    }

    .prod-card--grey-styled {
        padding: 28px 28px 28px 0px;
    }

    .testi-featured-img-wrap {
        margin-bottom: 0px;
    }

}

@media only screen and (max-width: 576px) {
    .single-dual-img {
        height: 160px;
    }

    .author-avatar-wrap {
        width: 70px;
        height: 70px;
    }

    .testi-stat-item {
        width: 50%;
        padding: 14px 10px;
    }

    .testi-stat-number {
        font-size: 28px;
    }

    .testi-card {
        padding: 24px;
    }

    .testi-play-btn {
        width: 50px;
        height: 50px;
        font-size: 18px;
    }

    /* Shop & Cart responsive — 576px */
    .prod-card--grey-styled {
        padding: 20px;
    }

    .product-action-block {
        flex-direction: row !important;
        flex-wrap: wrap !important;
        align-items: center !important;
        gap: 12px !important;
    }

    .product-action-block .qty-selector {
        justify-content: center !important;
        margin-bottom: 5px !important;
    }

    .product-action-block #btn-add-to-cart {
        flex-grow: 1 !important;
    }

    .product-action-block #btn-single-wishlist-toggle {
        width: 50px !important;
        min-width: 50px !important;
        flex-grow: 0 !important;
    }

    .cart-item-card {
        padding: 15px;
        position: relative;
    }

    .cart-item-img-wrap {
        width: 60px;
        height: 60px;
    }

    .cart-item-details {
        width: calc(100% - 75px);
        padding-left: 10px;
    }

    .cart-item-title {
        font-size: 15px;
    }

    .cart-item-price {
        width: 100%;
        margin-top: 5px;
    }

    .cart-item-qty {
        width: 100%;
        justify-content: flex-start;
        margin-left: 0;
        margin-top: 5px;
    }

    .success-title {
        font-size: 26px;
    }

    .related-card-custom {
        flex-direction: column;
        padding: 20px;
        text-align: center;
    }

    .related-card-info {
        align-items: center;
    }

    .related-card-btn {
        align-self: center;
    }

    .related-card-img-wrap {
        order: -1;
        width: 130px;
        height: 130px;
    }

    .wishlist-item-card {
        flex-direction: column;
        align-items: flex-start !important;
        gap: 15px;
    }

    .wishlist-item-actions {
        width: 100%;
        justify-content: space-between;
    }

    .profile-sidebar-nav {
        flex-direction: column;
        width: 100%;
    }

    .profile-nav-item {
        width: 100%;
    }
}

@media only screen and (max-width: 520px) {

    .prod-card-img {
        max-width: 220px;
    }

    .features-grid {
        display: block;
    }

    .feature-item {
        padding-bottom: 12px;
        gap: 5px;
    }

    .welcome-dashboard-img {
        height: 320px;
    }

    .banner-subtitle {
        margin-bottom: 2px;
    }

    .navbar-brand-name {
        font-size: 18px;
    }

}

@media only screen and (max-width: 500px) {
    .custom-detail-tabs {
        flex-direction: column !important;
        flex-wrap: wrap !important;
        overflow-x: visible !important;
        border-bottom: none !important;
        gap: 8px !important;
    }

    .custom-detail-tabs .nav-item {
        width: 100% !important;
        margin: 0 !important;
    }

    .custom-detail-tabs .nav-link {
        display: block !important;
        width: 100% !important;
        text-align: center !important;
        padding: 12px 16px !important;
        font-size: 13px !important;
        font-weight: 700 !important;
        letter-spacing: 0.5px;
        text-transform: uppercase;
        color: #555555 !important;
        background-color: #f8f9fa !important;
        border: 1px solid #e9ecef !important;
        border-radius: 8px !important;
        margin-bottom: 0 !important;
        transition: all 0.2s ease !important;
    }

    .custom-detail-tabs .nav-link:hover {
        color: var(--primary-color) !important;
        background-color: #f1f3f5 !important;
    }

    .custom-detail-tabs .nav-link.active {
        color: #ffffff !important;
        background-color: var(--primary-color) !important;
        border-color: var(--primary-color) !important;
        box-shadow: 0 4px 10px rgba(216, 104, 26, 0.15) !important;
    }

    .why-title {
        font-size: 26px;
    }

    .about-cta-title {
        font-size: 26px;
    }

    .why-stat-num {
        font-size: 26px;
    }

    .page-hero-banner {
        min-height: 180px;
    }

    .top-bar {
        display: none;
    }

    .btn-custom {
        display: none;
    }

}


@media only screen and (max-width: 480px) {
    .site_paddinglr {
        padding-inline: 10px;
    }

    /* Product Detail page adjustments */
    .product-detail-title {
        font-size: 22px !important;
        line-height: 1.25 !important;
        margin-bottom: 10px !important;
    }

    .product-detail-price {
        font-size: 22px !important;
    }

    .product-rating {
        flex-direction: column !important;
        align-items: flex-start !important;
        gap: 6px !important;
        margin-bottom: 12px !important;
    }

    .stars-gold {
        white-space: nowrap !important;
    }

    .stars-gold i {
        font-size: 13px !important;
    }

    .rating-text {
        font-size: 11.5px !important;
    }


    .banner-title .line-regular,
    .banner-title .line-bold {
        font-size: 26px;
    }

    .banner-subtitle {
        font-size: 12px;
    }

    .footer-brand-title {
        font-size: 24px;
    }

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

    .info-item {
        font-size: 13px;
    }

    .opening-hours-list li {
        font-size: 14px;
    }

    .footer-links-list li a {
        font-size: 15px;
    }

    .prod-card-img {
        max-width: 190px;
    }

    .experience-badge {
        left: -4px;
    }

    .prod-card-img {
        bottom: 60px;
        max-width: 175px;
    }

    .btn-shop-now {
        padding: 8px 32px;

    }

    .welcome-right-col .btn-shop-now {
        padding: 10px 32px;
    }

    .footer-col-hours {
        width: 100%;
    }

    .footer-col-links {
        width: 100%;
    }

    .banner-title {
        padding-bottom: 10px;
    }

    .testi-section-header {
        margin-bottom: 30px;
    }

    .testi-cta-section {
        padding: 25px 0;
    }
}



@media only screen and (max-width: 430px) {
    .auth-title {
        font-size: 26px !important;
    }

    .auth-card-custom {
        padding: 25px 20px !important;
    }
}

@media only screen and (max-width: 420px) {

    .experience-badge .badge-number {
        font-size: 18px;
        line-height: 28px;
    }

    .navbar-brand-name {
        font-size: 16px;
    }

}

@media only screen and (max-width: 390px) {

    .prod-card-img {
        bottom: 50px;
        max-width: 140px;
    }

    .navbar-brand-name {
        display: none;
    }

    .navbar-brand-tagline {
        display: none;
    }

}

@media only screen and (max-width: 360px) {
    .product-detail-title {
        font-size: 19px !important;
    }

    .product-detail-price {
        font-size: 19px !important;
    }

    .auth-title {
        font-size: 22px !important;
    }

    .banner-title {
        padding-bottom: 0px;
    }

    .banner-title .line-regular,
    .banner-title .line-bold {
        font-size: 22px;
        line-height: 30px;
    }
}

/*
===============================================
    Premium Modals Custom Styles
===============================================
*/
.modal-content-custom {
    background: #ffffff !important;
    border-radius: 20px !important;
    border: none !important;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12), 0 1px 3px rgba(0, 0, 0, 0.02) !important;
    overflow: hidden !important;
    font-family: var(--font-inter), sans-serif;
}

.modal-header-custom {
    background: linear-gradient(135deg, #fef0e6 0%, #fff7f2 100%) !important;
    border-bottom: 1px solid rgba(216, 104, 26, 0.15) !important;
    padding: 1.25rem 2rem !important;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.modal-title-custom {
    font-family: var(--font-oswald), sans-serif !important;
    font-weight: 700 !important;
    font-size: 1.25rem !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
    color: #bf5b10 !important;
    margin: 0 !important;
}

.modal-header-custom .btn-close {
    background-color: rgba(216, 104, 26, 0.06) !important;
    border-radius: 50% !important;
    opacity: 0.7 !important;
    padding: 0.45rem !important;
    transition: all 0.25s ease !important;
    border: none !important;
}

.modal-header-custom .btn-close:hover {
    background-color: rgba(216, 104, 26, 0.15) !important;
    opacity: 1 !important;
    transform: rotate(90deg) !important;
}

.form-label-custom {
    font-size: 0.85rem !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
    color: #475569 !important;
    margin-bottom: 0.5rem !important;
}

.form-control-custom {
    border: 2px solid #e2e8f0 !important;
    border-radius: 10px !important;
    padding: 0.75rem 1rem !important;
    font-size: 0.95rem !important;
    color: #1e293b !important;
    background-color: #fafbfc !important;
    transition: all 0.2s ease !important;
    width: 100%;
}

.form-control-custom:focus {
    border-color: #d8681a !important;
    background-color: #ffffff !important;
    box-shadow: 0 0 0 4px rgba(216, 104, 26, 0.12) !important;
    outline: none !important;
}

.form-control-custom::placeholder {
    color: #94a3b8 !important;
}

.modal-footer-custom {
    background-color: #fafafa !important;
    border-top: 1px solid #f1f5f9 !important;
    padding: 1.25rem 2rem !important;
    display: flex !important;
    gap: 0.75rem !important;
    justify-content: flex-end !important;
}

.btn-modal-cancel {
    background-color: #cbd5e1 !important;
    color: #1e293b !important;
    border: none !important;
    border-radius: 50px !important;
    padding: 0.65rem 1.75rem !important;
    font-weight: 600 !important;
    font-size: 0.9rem !important;
    transition: all 0.2s ease !important;
    cursor: pointer !important;
    text-decoration: none !important;
}

.btn-modal-cancel:hover {
    background-color: #94a3b8 !important;
    color: #0f172a !important;
}

.btn-modal-submit {
    background: linear-gradient(135deg, #d8681a 0%, #bf5b10 100%) !important;
    color: #ffffff !important;
    border: none !important;
    border-radius: 50px !important;
    padding: 0.65rem 1.75rem !important;
    font-weight: 700 !important;
    font-size: 0.9rem !important;
    letter-spacing: 0.5px !important;
    box-shadow: 0 4px 12px rgba(216, 104, 26, 0.2) !important;
    transition: all 0.2s ease !important;
    cursor: pointer !important;
    text-decoration: none !important;
}

.btn-modal-submit:hover {
    transform: translateY(-1px) !important;
    box-shadow: 0 6px 16px rgba(216, 104, 26, 0.3) !important;
}

.btn-modal-submit:active {
    transform: translateY(0) !important;
}

.btn-modal-danger {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%) !important;
    color: #ffffff !important;
    border: none !important;
    border-radius: 50px !important;
    padding: 0.65rem 1.75rem !important;
    font-weight: 700 !important;
    font-size: 0.9rem !important;
    letter-spacing: 0.5px !important;
    box-shadow: 0 4px 12px rgba(220, 38, 38, 0.2) !important;
    transition: all 0.2s ease !important;
    cursor: pointer !important;
    text-decoration: none !important;
}

.btn-modal-danger:hover {
    transform: translateY(-1px) !important;
    box-shadow: 0 6px 16px rgba(220, 38, 38, 0.3) !important;
}

.btn-modal-danger:active {
    transform: translateY(0) !important;
}

/* Custom premium radio buttons inside checkout option cards */
.address-option-card,
.payment-card-custom {
    display: flex !important;
    align-items: flex-start !important;
    gap: 0.75rem !important;
    padding-left: 1.25rem !important;
}

.payment-card-custom {
    align-items: center !important;
}

.address-option-card .form-check-input,
.payment-card-custom .form-check-input {
    float: none !important;
    margin: 0 !important;
    flex-shrink: 0 !important;
    width: 22px !important;
    height: 22px !important;
    border: 2px solid #cbd5e1 !important;
    border-radius: 50% !important;
    background-color: #ffffff !important;
    position: relative !important;
    cursor: pointer !important;
    appearance: none !important;
    -webkit-appearance: none !important;
    transition: all 0.2s ease !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    outline: none !important;
    box-shadow: none !important;
}

.address-option-card .form-check-input:checked,
.payment-card-custom .form-check-input:checked {
    border-color: #d8681a !important;
    background-color: #ffffff !important;
}

.address-option-card .form-check-input:checked::before,
.payment-card-custom .form-check-input:checked::before {
    content: "" !important;
    display: block !important;
    width: 10px !important;
    height: 10px !important;
    border-radius: 50% !important;
    background: linear-gradient(135deg, #d8681a 0%, #bf5b10 100%) !important;
}

.address-option-card .form-check-label,
.payment-card-custom .form-check-label {
    padding-left: 0 !important;
    margin-left: 0 !important;
    flex: 1 !important;
    cursor: pointer !important;
}

.address-option-card .form-check-input {
    margin-top: 0.25rem !important;
}

/* Premium profile dashboard address cards */
.profile-address-card {
    background: #ffffff;
    border: 2px solid #eef2f6;
    border-radius: 12px;
    padding: 1.5rem;
    position: relative;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.01);
    transition: all 0.25s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.profile-address-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
    border-color: rgba(216, 104, 26, 0.2);
}

.profile-address-card.default-active {
    border-color: #d8681a;
    background-color: rgba(216, 104, 26, 0.01);
    box-shadow: 0 8px 24px rgba(216, 104, 26, 0.04);
}

.profile-address-icon {
    width: 36px;
    height: 36px;
    background-color: #f8fafc;
    color: #94a3b8;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    transition: all 0.2s ease;
}

.profile-address-card:hover .profile-address-icon {
    background-color: #fef0e6;
    color: #d8681a;
}

.profile-address-card.default-active .profile-address-icon {
    background-color: #fef0e6;
    color: #d8681a;
}

.badge-default-address {
    background-color: #d8681a !important;
    color: #ffffff !important;
    font-family: var(--font-exo, 'Exo 2');
    font-weight: 600;
    font-size: 0.72rem;
    padding: 0.35rem 0.65rem;
    border-radius: 20px;
    letter-spacing: 0.5px;
}

.profile-address-text {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 0;
    color: #1e293b;
    word-break: break-word;
}

.toggle-address-link {
    color: #d8681a !important;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.85rem;
    transition: color 0.15s ease;
}

.toggle-address-link:hover {
    color: #bf5b10 !important;
    text-decoration: underline;
}

.btn-set-default {
    background-color: transparent !important;
    color: #d8681a !important;
    border: 1px solid #d8681a !important;
    font-weight: 600 !important;
    border-radius: 30px !important;
    padding: 0.35rem 0.75rem !important;
    font-size: 0.75rem !important;
    transition: all 0.2s ease !important;
}

.btn-set-default:hover {
    background-color: #d8681a !important;
    color: #ffffff !important;
}

.btn-edit-address {
    background-color: #f8fafc !important;
    color: #475569 !important;
    border: 1px solid #cbd5e1 !important;
    font-weight: 600 !important;
    border-radius: 30px !important;
    padding: 0.35rem 0.75rem !important;
    font-size: 0.75rem !important;
    transition: all 0.2s ease !important;
}

.btn-edit-address:hover {
    background-color: #e2e8f0 !important;
    color: #0f172a !important;
    border-color: #94a3b8 !important;
}

.btn-delete-address {
    background-color: transparent !important;
    color: #ef4444 !important;
    border: 1px solid #fecaca !important;
    font-weight: 600 !important;
    border-radius: 30px !important;
    padding: 0.35rem 0.75rem !important;
    font-size: 0.75rem !important;
    transition: all 0.2s ease !important;
}

.btn-delete-address:hover {
    background-color: #fee2e2 !important;
    border-color: #f87171 !important;
}

/* Premium profile orders table */
.premium-orders-table-wrapper {
    background: #ffffff;
    border-radius: 16px;
    border: 1px solid #eef2f6;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.01);
    overflow: hidden;
    margin-top: 1rem;
}

.premium-orders-table {
    margin-bottom: 0 !important;
}

.premium-orders-table thead th {
    background-color: #f8fafc !important;
    border-bottom: 2px solid #e2e8f0 !important;
    font-family: var(--font-oswald, 'Oswald');
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: #475569;
    padding: 1.15rem 1.25rem !important;
    border-top: none !important;
    vertical-align: middle !important;
}

.premium-orders-table tbody td {
    padding: 1.25rem !important;
    vertical-align: middle;
    font-size: 0.92rem;
    color: #334155;
    border-bottom: 1px solid #f1f5f9 !important;
    border-top: none !important;
}

.premium-orders-table tbody tr:last-child td {
    border-bottom: none !important;
}

.premium-orders-table tbody tr {
    transition: all 0.2s ease;
}

.premium-orders-table tbody tr:hover {
    background-color: #fafbfc;
}

.order-num-link {
    font-family: var(--font-exo, 'Exo 2');
    font-weight: 700;
    color: #1e293b;
    text-decoration: none;
    letter-spacing: 0.2px;
}

.order-date-text {
    color: #64748b;
    font-size: 0.88rem;
}

.order-prod-name {
    font-weight: 600;
    color: #1e293b;
    line-height: 1.4;
}

.order-qty-val {
    font-family: var(--font-exo, 'Exo 2');
    font-weight: 600;
}

.order-price-val {
    font-family: var(--font-oswald, 'Oswald');
    font-weight: 600;
    font-size: 1.05rem;
    color: #475569;
}

/* Premium Status Pill Badges */
.status-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.35rem 0.75rem;
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 30px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.status-pill.status-processing {
    background-color: #fef0e6 !important;
    color: #d8681a !important;
}

.status-pill.status-delivered {
    background-color: #f0fdf4 !important;
    color: #16a34a !important;
}

.status-pill.status-cancelled {
    background-color: #fef2f2 !important;
    color: #dc2626 !important;
}

.status-pill.status-pending {
    background-color: #fef9c3 !important;
    color: #ca8a04 !important;
}

/* Premium cancel button */
.btn-order-cancel-premium {
    background-color: transparent !important;
    color: #ef4444 !important;
    border: 1px solid #fecaca !important;
    font-weight: 600 !important;
    border-radius: 30px !important;
    padding: 0.35rem 0.75rem !important;
    font-size: 0.75rem !important;
    transition: all 0.2s ease !important;
    margin-left: 0.5rem;
    cursor: pointer;
}

.btn-order-cancel-premium:hover {
    background-color: #fee2e2 !important;
    border-color: #f87171 !important;
}


.top-bar-item a {
    color: #aaaaaa !important;
}
.testi-grid-section {
    padding: 0 0 0px 0;
}
.testi-section-header{
margin-bottom:0;
}
@media only screen and (max-width: 1440px) {
    .info-item {
        font-size: 14px !important;
    }

    .social-icon {
        width: 35px;
        height: 35px;
    }

    .footer-brand-title {
        font-size: 30px;
        line-height: 40px;
    }

    .welcome-desc-container p {
        font-size: 16px !important;
        line-height: 26px !important;
    }

    .find-parts-title,
    .blog-main-title {
        font-size: 38px !important;
        line-height: 48px !important;
    }
}

@media only screen and (max-width: 1280px) {
    .footer-brand-title {
        font-size: 24px;
        line-height: 34px;
    }

    .social-icon {
        width: 30px;
        height: 30px;
    }

    .social-icon i {
        font-size: 12px !important;
    }

    .social-icon.facebook-icon {
        font-size: 14px;
    }
}

@media only screen and (max-width: 1150px) {
    .prod-card-content {
        width: 65% !important;
    }

    .prod-card-img {
        max-width: 230px;
    }
	.firt_box .col-lg-3{
		width:50%;
	}
}

@media only screen and (max-width: 1080px) {
    .feature-divider {
        margin-right: 14px;
        margin-left: 14px;
    }

    .find-parts-title,
    .blog-main-title {
        font-size: 30px !important;
        line-height: 40px !important;
    }

    .welcome-title {
        font-size: 30px !important;
        line-height: 40px !important;
    }

    .footer-brand-title {
        font-size: 20px;
        line-height: 30px;
    }

    .newsletter-btn {
        padding: 13px 18px;
    }
}

@media only screen and (max-width: 1024px) {

    .welcome-desc-container p,
    .blog-description,
    .footer-about-text {
        font-size: 14px !important;
        line-height: 24px !important;
    }

    .footer-links-list li a {
        font-size: 14px;
    }
	.contact-form-header p{
		font-size: 14px;
	}

    .opening-hours-list li {
        font-size: 14px;
    }

    .blog-card-title {
        font-size: 20px;
        letter-spacing: 0px;
    }

    .site-footer {
        padding: 60px 0 30px 0;
    }

    .nav-links .nav-link {
        font-size: 14px;
    }

    .testimonial-text {
        font-size: 14px !important;
    }

    .top-bar-item a,
    .top-bar-left {
        font-size: 14px !important;
    }
}

@media only screen and (max-width: 767px) {
    .footer-info-row {
        gap: 0px;
    }

    .footer-bottom-row {
        padding-top: 0px;
    }

    .footer-about-text {
        max-width: 100% !important;
    }

    .features-grid {
        flex-direction: column;
        gap: 18px;
    }

    .feature-item {
        gap: 0px;
    }

    .testimonial-section {
        padding: 30px 0 20px;
    }

    .prod-card-img {
        max-width: 230px;
    }

    .welcome-desc-container {
        margin-bottom: 30px !important;
    }

    .btn-shop-now {
        padding: 10px 20px !important;
    }
	.contact-form-wrap{
		padding-bottom: 0;
	}
}
@media only screen and (max-width: 600px) {
.firt_box .col-lg-3{
		width:100%;
	}
}
@media only screen and (max-width: 520px) {
    .prod-card-img {
        max-width: 200px;
    }
}

@media only screen and (max-width: 480px) {
    .prod-card-img {
        max-width: 170px;
    }

    .prod-card {
        padding: 20px;
    }

    .find-parts-title,
    .blog-main-title {
        font-size: 26px !important;
        line-height: 36px !important;
    }

    .welcome-title {
        font-size: 26px !important;
        line-height: 36px !important;
    }
}

@media only screen and (max-width: 430px) {
    .prod-card-img {
        max-width: 150px;
    }
}