/* Header */
.cw-header-top {
    background-color: #ffffff;
    color: #000;
    padding: 12px 0;
}

.cw-header-info {
    display: flex;
    align-items: center;
    font-size: 14px;
}

.cw-header-info svg {
    width: 20px;
    height: 20px;
    fill: #000;
}

.sales-label {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #000;
    margin-bottom: 2px;
}


@media (min-width: 768px) {
    .cw-header-info {
        font-size: 18px;
    }

    .sales-label {
        font-size: 14px;
    }
}

/* Hero */
.cw-hero-section {
    position: relative;
    min-height: 600px;
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)),
        url('https://cdn.powersports.com/cdn-cgi/image/h=1440,w=1920/A9F0216BD98AEF8BBCFE11857B6AD3F4.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
}

.cw-content-box {
    padding: 0;
    position: relative;
}

.cw-blue-bar {
    width: 8px;
    background: var(--color-theme-primary);
    position: absolute;
    left: 0;
    top: 0;
    height: 50%;
}

.cw-white-bar {
    width: 8px;
    background: #fff;
    position: absolute;
    right: 0px;
    bottom: 0;
    height: 50%;
}

.cw-content-inner {
    padding: 3.5rem 3rem 3.5rem 4rem;
}

.cw-hero-title {
    font-size: 3.8rem;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    line-height: 1;
    margin-bottom: 1.5rem;
    font-style: italic;
    letter-spacing: 1px;
}

.cw-hero-text {
    color: #fff;
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 2.5rem;
}

.cw-btn-inventory {
    background: var(--color-theme-primary);
    color: #fff;
    padding: 1.1rem 3rem;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    border: none;
    text-transform: uppercase;
    transition: all 0.3s ease;
    display: inline-block;
}

.cw-btn-inventory:hover {
    background: #3154b8;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(65, 105, 225, 0.4);
    color: white;
}

@media (max-width: 768px) {
    .cw-hero-section {
        min-height: 500px;
    }

    .cw-content-inner {
        padding: 2.5rem 2rem 2.5rem 3rem;
    }

    .cw-hero-title {
        font-size: 2.8rem;
    }

    .cw-hero-text {
        font-size: 1rem;
    }

    .cw-btn-inventory {
        padding: 1rem 2.5rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 576px) {
    .cw-hero-title {
        font-size: 2.2rem;
    }

    .cw-content-inner {
        padding: 2rem 1.5rem 2rem 2.5rem;
    }
}

/* HP Buttons */
.cw-features-section {
    padding: 20px 0;
    background-color: #dedede;
}

.cw-feature-card {
    position: relative;
    height: 200px;
    border-radius: 0;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.cw-feature-card:hover {
    transform: translateY(-5px);
}

.cw-feature-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.5);
    transition: filter 0.3s ease;
}

.cw-feature-card:hover .cw-feature-image {
    filter: brightness(0.4);
}

.cw-feature-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    z-index: 1;
}

.cw-feature-icon {
    font-size: 48px;
    margin-bottom: 15px;
    color: white;
}

.cw-feature-title {
    font-size: 18px;
    font-weight: 500;
    margin: 0;
    text-align: center;
}

@media (max-width: 768px) {
    .cw-feature-card {
        height: 180px;
        margin-bottom: 15px;
    }

    .cw-feature-icon {
        font-size: 40px;
        margin-bottom: 12px;
    }

    .cw-feature-title {
        font-size: 16px;
    }
}

/* Search Module */
section.inventory-search-module>.container {
    max-width: 1320px !important;
}

/* Inner Page Title */
.cw-inner-page-section {
    position: relative;
    background-color: #1a1a1a;
    overflow: hidden;
    min-height: 250px;
}

.cw-inner-page-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3;
    z-index: 0;
}

.cw-inner-page-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 40px 0;
}

.cw-inner-page-title {
    color: #ffffff;
    font-size: 48px;
    font-weight: 600;
    letter-spacing: 3px;
    margin: 0;
    text-transform: uppercase;
}

.cw-inner-page-svg {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 120px;
    z-index: 1;
}

@media (max-width: 768px) {
    .cw-inner-page-title {
        font-size: 36px;
        letter-spacing: 2px;
    }

    .cw-inner-page-content {
        padding: 30px 0;
    }

    .cw-inner-page-svg {
        height: 80px;
    }

    .cw-inner-page-section {
        min-height: 200px;
    }
}

@media (max-width: 576px) {
    .cw-inner-page-title {
        font-size: 28px;
        letter-spacing: 1.5px;
    }

    .cw-inner-page-section {
        min-height: 180px;
    }

    .cw-inner-page-svg {
        height: 60px;
    }
}