/* --- RESET & VARIABLES --- */

@font-face {
    font-family: "Bikys Heading";
    src: url("assets/fonts/BikysHeading.woff2") format("woff2"),
         url("assets/fonts/BikysHeading.woff") format("woff");
    font-weight: normal;
    font-style: normal;
}


:root {
    --primary-yellow: #FFDB00;
    --yellow-hover: #e5ce00;
    --neon-lime: #b0d800;
    --accent-red: #e31e24;
    --accent-blue: #0070e0;
    --accent-green: #27ae60;
    
    --header-bg: #0d0d0d;
    --dark-bg: #121212;
    --dark-card: #1a1a1a;
    --light-bg: #f8f9fa;
    --card-bg: #ffffff;

    --text-main: #1e1e1e;
    --text-muted: #6c757d;
    --text-light: #f4f4f4;

    --border-color: #e2e8f0;
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
    --shadow-md: 0 8px 24px rgba(0,0,0,0.12);
    --shadow-lg: 0 16px 40px rgba(0,0,0,0.18);
    --shadow-yellow: 0 8px 25px rgba(244, 208, 63, 0.35);

    /* --font-heading: 'Outfit', 'Montserrat', sans-serif; */
    /* --font-body: 'Inter', sans-serif; */
    --font-heading: "Bikys Heading", Sans-serif;
    --font-body:  "Heebo", sans-serif;
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    --transition-bounce: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}


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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    color: var(--text-main);
    background-color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-fast);
}

ul {
    list-style: none;
}

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

/* ============ Container ============== */

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

/* --- BUTTON SYSTEM --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 26px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    border-radius: 6px;
    border: none;
    cursor: pointer;
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
    width: fit-content;
}

.btn-yellow {
    background-color: var(--primary-yellow);
    color: #000000;
    box-shadow: 0 4px 12px rgba(244, 208, 63, 0.25);
}

.btn-yellow:hover {
    background-color: var(--yellow-hover);
    transform: translateY(-3px);
    box-shadow: var(--shadow-yellow);
}

.btn-dark {
    background-color: #000000;
    color: #ffffff;
}

.btn-dark:hover {
    background-color: #222222;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

.btn-outline-dark {
    background-color: transparent;
    color: #000000;
    border: 2px solid #000000;
}

.btn-outline-dark:hover {
    background-color: #000000;
    color: #ffffff;
    transform: translateY(-3px);
}

.btn-light-btn {
    background-color: #ffffff;
    color: var(--accent-red);
}

.btn-light-btn:hover {
    background-color: #f8f8f8;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255,255,255,0.4);
}

.btn-dark-btn {
    background-color: #000000;
    color: var(--primary-yellow);
}

.btn-dark-btn:hover {
    background-color: #1a1a1a;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.4);
}

.btn-sm {
    padding: 8px 16px;
    font-size: 0.8rem;
}

.btn-block {
    width: 100%;
}

/* Sectnio Title */

.section-title {
    font-family: var(--font-heading);
    font-size: 48px;
    font-weight: 900;
    line-height: 100%;
    margin-bottom: 20px;
    color: #111111;
}

.section-desc{
    font-size: 16px;
    color: #444;
    line-height: 24px;
}

@media(max-width:1024px){
    .section-title {
        font-size: 38px;
    }
}

@media(max-width:767px){
    .section-title {
        font-size: 28px;
    }
}

/* ==========================================================================
   WIFI BIKES - BLOG & CATEGORY ARCHIVE STYLES
   ========================================================================== */

.category-header-banner {
    background-color: #f4f5f7;
    padding: 25px 0;
    border-bottom: 1px solid var(--border-color, #eaeaea);
}

.breadcrumb-nav {
    font-size: 12px;
    color: var(--text-muted, #666);
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.breadcrumb-nav a {
    color: var(--text-muted, #666);
}

.breadcrumb-nav a:hover {
    color: var(--primary-yellow, #FFDB00);
}

.breadcrumb-separator {
    margin: 0 6px;
    color: #ccc;
}

.category-archive-title {
    font-size: 26px;
    font-weight: 900;
    text-transform: uppercase;
    color: #111111;
    letter-spacing: -0.5px;
}

.category-archive-description {
    margin-top: 6px;
    font-size: 14px;
    color: var(--text-muted, #666);
    max-width: 800px;
}

.main-content-area {
    padding: 35px 0 70px 0;
}

.layout-grid {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 45px;
}

.blog-posts-feed {
    display: flex;
    flex-direction: column;
    gap: 45px;
}

.post-card {
    border-bottom: 1px solid #eaeaea;
    padding-bottom: 45px;
}

.post-card:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.category-tag {
    display: inline-flex;
    background-color: var(--primary-yellow, #FFDB00);
    color: #000000;
    font-size: 12px;
    line-height: 16px;
    font-weight: 800;
    text-transform: uppercase;
    padding: 3px 9px;
    border-radius: 2px;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
}

.post-title {
    font-size: 24px;
    font-weight: 800;
    text-transform: uppercase;
    line-height: 1.3;
    margin-bottom: 8px;
    letter-spacing: -0.2px;
}

.post-title a {
    color: #111111;
}

.post-title a:hover {
    color: var(--primary-yellow, #FFDB00);
}

.post-meta {
    font-size: 12px;
    color: #666666;
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.post-meta span.author {
    font-weight: 600;
}

.post-thumbnail {
    margin-bottom: 20px;
    border-radius: 6px;
    overflow: hidden;
}

.post-thumbnail img {
    width: 100%;
    max-height: 440px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.post-card:hover .post-thumbnail img {
    transform: scale(1.02);
}

.post-excerpt {
    color: #555555;
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 20px;
}

.btn-read-more {
    display: inline-block;
    border: 1px solid var(--primary-yellow, #FFDB00);
    background-color: transparent;
    color: #111111;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    padding: 10px 22px;
    letter-spacing: 0.8px;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.btn-read-more:hover {
    background-color: var(--primary-yellow, #FFDB00);
    color: #000000;
    box-shadow: 0 4px 12px rgba(255, 219, 0, 0.35);
}

.sidebar-area {
    display: flex;
    flex-direction: column;
    gap: 35px;
}

.widget {
    background: #ffffff;
}

.widget-title {
    font-size: 14px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #111111;
    padding-bottom: 8px;
    border-bottom: 2px solid #111111;
    margin-bottom: 20px;
    position: relative;
}

.widget-title::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--primary-yellow, #FFDB00);
}

/* Search Widget */
.search-form {
    display: flex;
}

.search-form input[type="search"] {
    width: 100%;
    padding: 10px 14px;
    border: 1px solid #dddddd;
    border-right: none;
    font-family: inherit;
    font-size: 13px;
    outline: none;
}

.search-form button {
    background-color: var(--primary-yellow);
    border: 1px solid var(--primary-yellow);
    padding: 0 16px;
    cursor: pointer;
    font-weight: 700;
}

.search-form button:hover {
    background-color: var(--yellow-hover);
}

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

.latest-post-item {
    display: flex;
    gap: 12px;
    /* align-items: center; */
}

.latest-post-thumb {
    width: 60px;
    height: 60px;
    border-radius: 4px;
    overflow: hidden;
    flex-shrink: 0;
}

.latest-post-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.latest-post-info h4 {
    font-size: 13px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 4px;
    text-transform: uppercase;
}

.latest-post-info h4 a {
    color: #111111;
}

.latest-post-info h4 a:hover {
    color: var(--primary-yellow, #FFDB00);
}

.latest-post-info .date {
    font-size: 11px;
    color: #888888;
}

.categories-list li {
    padding: 8px 0;
    border-bottom: 1px solid #f0f0f0;
    font-size: 13px;
    display: flex;
    justify-content: space-between;
    color: #444444;
}

.categories-list li a:hover {
    color: var(--primary-yellow, #FFDB00);
    padding-left: 4px;
}

.widget-cart-box {
    padding: 15px;
    background-color: #fafafa;
    border: 1px solid #eeeeee;
    font-size: 13px;
    color: #666;
}

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

/* ==========================================================================
   WIFI BIKES - SINGLE POST DETAIL PAGE STYLES
   ========================================================================== */

.single-post-article {
    padding-bottom: 30px;
}

.single-post-header {
    margin-bottom: 25px;
}

.single-post-header h1.post-main-title {
    font-size: 28px;
    font-weight: 900;
    text-transform: uppercase;
    line-height: 1.25;
    color: #111111;
    margin-bottom: 15px;
}

.single-post-featured-image {
    margin-bottom: 30px;
    border-radius: 6px;
    overflow: hidden;
}

.single-post-featured-image img {
    width: 100%;
    max-height: 520px;
    object-fit: cover;
}

.single-post-content {
    font-size: 15px;
    line-height: 1.85;
    color: #333333;
}

.single-post-content p {
    margin-bottom: 22px;
}

.single-post-content h2,
.single-post-content h3 {
    font-size: 20px;
    font-weight: 900;
    text-transform: uppercase;
    color: #111111;
    margin: 35px 0 16px 0;
    letter-spacing: -0.2px;
}

.single-post-content ul.bullet-list,
.single-post-content ul {
    margin: 20px 0 25px 0;
    padding-left: 0;
    list-style: none;
}

.single-post-content ul.bullet-list li,
.single-post-content ul li {
    position: relative;
    padding-left: 24px;
    margin-bottom: 12px;
    font-size: 14px;
    color: #444444;
}

.single-post-content ul.bullet-list li::before,
.single-post-content ul li::before {
    content: '✦';
    position: absolute;
    left: 0;
    top: 0;
    color: var(--primary-yellow, #FFDB00);
    font-size: 14px;
}

/* --- POST NAVIGATION LINKS BAR --- */
.post-navigation-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 0;
    border-top: 1px solid #eaeaea;
    border-bottom: 1px solid #eaeaea;
    margin: 45px 0;
    gap: 20px;
}

.post-nav-item {
    flex: 1;
}

.post-nav-item.nav-next {
    text-align: right;
}

.post-nav-item .nav-label {
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    color: #888888;
    display: block;
    margin-bottom: 4px;
}

.post-nav-item a {
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    color: #111111;
    line-height: 1.3;
}

.post-nav-item a:hover {
    color: var(--primary-yellow, #FFDB00);
}

/* --- COMMENT SECTION STYLING --- */
.comments-area {
    margin-top: 40px;
}

.comments-area h3.reply-title,
.comments-area .comment-reply-title {
    font-size: 18px;
    font-weight: 900;
    text-transform: uppercase;
    color: #111111;
    margin-bottom: 10px;
}

.comments-area p.logged-in-as {
    font-size: 13px;
    color: #666666;
    margin-bottom: 20px;
}

.comment-form textarea {
    width: 100%;
    min-height: 140px;
    padding: 15px;
    border: 1px solid #dddddd;
    border-radius: 4px;
    font-family: inherit;
    font-size: 14px;
    background-color: #fafafa;
    outline: none;
    margin-bottom: 20px;
}

.comment-form textarea:focus {
    border-color: var(--primary-yellow, #FFDB00);
    background-color: #ffffff;
}

.btn-post-comment,
.comment-form input[type="submit"] {
    background-color: var(--primary-yellow, #FFDB00);
    color: #000000;
    border: 1px solid var(--primary-yellow, #FFDB00);
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    padding: 12px 28px;
    letter-spacing: 0.8px;
    cursor: pointer;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.btn-post-comment:hover,
.comment-form input[type="submit"]:hover {
    background-color: #e5ce00;
    box-shadow: 0 4px 12px rgba(255, 219, 0, 0.35);
}

/* --- PROMO AD SIDEBAR CARD --- */
.promo-sidebar-card {
    position: relative;
    border-radius: 6px;
    overflow: hidden;
    background: #111111;
    color: #ffffff;
    text-align: center;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.promo-sidebar-card img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    opacity: 0.85;
}

.promo-overlay-text {
    position: absolute;
    top: 20px;
    left: 20px;
    right: 20px;
    text-align: left;
}

.promo-overlay-text .discount-badge {
    background-color: #d90429;
    color: #ffffff;
    font-size: 18px;
    font-weight: 900;
    display: inline-block;
    padding: 4px 12px;
    text-transform: uppercase;
    margin-bottom: 6px;
}

.promo-overlay-text h3 {
    font-size: 22px;
    font-weight: 900;
    text-transform: uppercase;
    color: #ffffff;
    line-height: 1.1;
    text-shadow: 0 2px 8px rgba(0,0,0,0.8);
}



/*  ==Inner Page Hero==  */
.bike-hero {
    position: relative;
    overflow: hidden;
    min-height: 520px;
    display: flex;
    align-items: center;
}

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

.mobile-image{
    display:none;
}

.desktop-image{
    display:block;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, .35);
}

.hero-wrapper {
    position: relative;
    z-index: 2;
}

.hero-image {
    position: relative;
}

.hero-image img {
    width: 100%;
    max-width: 650px;
    display: block;
}

.hero-content {
    text-align: center;
    color: #fff;
}

.hero-content h2 {
    font-size: 56px;
    font-weight: 800;
    line-height: 1.1;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.hero-content p {
    font-size: 22px;
    margin-bottom: 35px;
}

.hero-btn {
    display: inline-block;
    padding: 16px 40px;
    background: #fff;
    color: #000;
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    border-bottom: 5px solid #f6c400;
    transition: .3s;
}

.hero-btn:hover {
    background: #f6c400;
}

@media (max-width:991px) {

    .hero-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .hero-image img {
        max-width: 500px;
        margin: auto;
    }

    .hero-content h2 {
        font-size: 42px;
    }

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

    .bike-hero {
        min-height: 650px;
    }
}

@media (max-width:767px) {

    .bike-hero {
        min-height: 550px;
        padding: 60px 0;
    }

    .hero-image img {
        max-width: 100%;
    }

    .hero-content h2 {
        font-size: 30px;
    }

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

    .hero-btn {
        padding: 14px 28px;
        font-size: 13px;
    }

    .desktop-image{
        display:none;
    }

    .mobile-image{
        display:block;
    }
}

.affiliate-section{
    padding:80px 0;
    background:#fff;
}

.affiliate-wrapper{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:60px;
}

.affiliate-image{
    overflow:hidden;
}

.affiliate-image img{
    width:100%;
    display:block;
    object-fit:cover;
    transition:.4s ease;
}

.affiliate-image:hover img{
    transform:scale(1.05);
}

.affiliate-content h2{
    font-size:54px;
    font-weight:800;
    text-transform:uppercase;
    color:#111;
    margin-bottom:25px;
    line-height:1.1;
}

.affiliate-content p{
    font-size:16px;
    line-height:1.8;
    color:#555;
    margin-bottom:15px;
}

.affiliate-btn{
    display:inline-block;
    margin-top:10px;
    padding:16px 40px;
    background:#fff;
    color:#111;
    text-decoration:none;
    text-transform:uppercase;
    font-size:13px;
    font-weight:700;
    letter-spacing:2px;
    border:1px solid #d5d5d5;
    border-bottom:5px solid #f5c400;
    transition:.3s ease;
}

.affiliate-btn:hover{
    background:#f5c400;
}

/*=========================
        Tablet
=========================*/

@media(max-width:991px){
    .affiliate-wrapper{
        grid-template-columns:1fr;
        gap:40px;
    }

    .affiliate-content{
        text-align:center;
    }

    .affiliate-content h2{
        font-size:42px;
    }
}

/*=========================
        Mobile
=========================*/

@media(max-width:767px){
    .affiliate-section{
        padding:60px 0;
    }

    .affiliate-wrapper{
        gap:30px;
    }

    .affiliate-content h2{
        font-size:32px;
        margin-bottom:18px;
    }

    .affiliate-content p{
        font-size:15px;
        line-height:1.7;
        margin-bottom:16px;
    }

    .affiliate-btn{
        width:100%;
        max-width:230px;
        text-align:center;
        padding:15px 25px;
    }
}

.policy-section{
    padding:90px 0;
}

.policy-icon{
    margin-bottom:20px;
}

.policy-icon img{
    width: 60px;
    height: 60px;
    display: block;
    object-fit: contain;
}
.policy-label{
    display:inline-block;
    font-size:14px;
    font-weight:700;
    text-transform:uppercase;
    color:#111;
    margin-bottom:20px;
    background: #f6c400;
    padding: 6px 12px;
}

.policy-content h2{
    font-size:52px;
    font-weight:800;
    text-transform:uppercase;
    color:#111;
    margin-bottom:35px;
    line-height:1.2;
}
.policy-content h5{
    font-size:24px;
    text-transform:uppercase;
    font-weight:700;
    color:#111;
    margin-bottom:20px;
}
.policy-content p{
    font-size:16px;
    line-height:1.9;
    color:#333;
    margin-bottom:16px;
}

.policy-content strong{
    color:#111;
    font-weight:700;
}

/*=========================
        Tablet
=========================*/

@media (max-width:991px){
    .policy-section{
        padding:70px 0;
    }

    .policy-content h2{
        font-size:40px;
    }
    .policy-content h5{
        font-size:20px;
    }
}

/*=========================
        Mobile
=========================*/

@media (max-width:767px){
    .policy-section{
        padding:50px 0;
    }

    .policy-icon img{
        width:45px;
    }

    .policy-content h2{
        font-size:28px;
        margin-bottom:20px;
    }

    .policy-content p{
        font-size:14px;
        line-height:1.8;
        margin-bottom:14px;
    }
}


/*  ==BIKES WARRANTY==  */
.wb-warranty-section {
    padding-top: 40px;
    padding-bottom: 40px;
    font-family: 'Roboto', sans-serif;
    background-color: #fff;
    color: #222;
}

.wb-warranty-container {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    align-items: flex-start;
}

.wb-warranty-left {
    flex: 1 1 520px;
    display: flex;
    flex-direction: column;
}

.wb-warranty-header-icon {
    width: 50px;
    height: 50px;
    margin-bottom: 8px;
    color: #000;
}

.wb-warranty-header-icon svg,
.wb-warranty-header-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.wb-warranty-title {
    font-family: 'Oswald', sans-serif;
    font-size: 38px;
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: #000;
    margin: 0 0 20px 0;
}

.wb-warranty-description {
    font-size: 13.5px;
    line-height: 1.55;
    color: #666666;
    margin-bottom: 22px;
}

.wb-warranty-list {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.wb-warranty-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 13px;
    line-height: 1.5;
    color: #555555;
}

.wb-warranty-checkmark {
    width: 16px;
    height: 16px;
    min-width: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #FFDB00;
    margin-top: 1px;
}

.wb-warranty-checkmark svg {
    width: 100%;
    height: 100%;
    fill: currentColor;
}

.wb-social-bar {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: auto;
    padding-top: 15px;
}

.wb-social-link {
    width: 36px;
    height: 36px;
    background-color:#f4f4f4;
    border-radius: 2px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #555555;
    text-decoration: none;
    transition: all 0.25s ease;
}

.wb-social-link svg {
    width: 16px;
    height: 16px;
}

.wb-social-link:hover {
    background-color: #FFDB00;
    color: #000;
    transform: translateY(-2px);
}


.wb-coverage-right {
    flex: 1 1 500px;
    background-color:#f4f4f4;
    padding: 40px 35px;
    border-radius: 4px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
}

.wb-coverage-title {
    font-family: 'Oswald', sans-serif;
    font-size: 42px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #000;
    margin: 0 0 25px 0;
}

.wb-coverage-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.wb-coverage-card {
    background-color: #fff;
    border-radius: 4px;
    padding: 24px 12px 20px 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(0, 0, 0, 0.06);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.wb-coverage-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.wb-coverage-icon {
    width: 64px;
    height: 64px;
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
}

.wb-coverage-icon svg,
.wb-coverage-icon img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.wb-coverage-card-title {
    font-family: 'Oswald', sans-serif;
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
    color: #e54a42;
    margin: 0 0 4px 0;
    line-height: 1.2;
    letter-spacing: 0.5px;
}

.wb-coverage-card-subtitle {
    font-size: 12px;
    color: #666666;
    margin: 0;
    font-weight: 400;
}

.wb-coverage-grid-bottom-row {
    grid-column: span 3;
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-top: 0;
}

.wb-coverage-grid-bottom-row .wb-coverage-card {
    flex: 0 1 calc(33.333% - 11px);
}


@media (max-width: 991px) {
    .wb-warranty-container {
        flex-direction: column;
    }

    .wb-warranty-left,
    .wb-coverage-right {
        flex: 1 1 100%;
        width: 100%;
    }
}

@media (max-width: 767px) {
    .wb-warranty-section {
        padding: 25px 15px;
    }

    .wb-coverage-right {
        padding: 25px 20px;
    }

    .wb-coverage-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .wb-coverage-grid-bottom-row {
        grid-column: span 2;
        flex-direction: row;
    }

    .wb-coverage-grid-bottom-row .wb-coverage-card {
        flex: 1 1 50%;
    }
}

@media (max-width: 475px) {
    .wb-coverage-grid {
        grid-template-columns: 1fr;
    }

    .wb-coverage-grid-bottom-row {
        grid-column: span 1;
        flex-direction: column;
    }

    .wb-coverage-grid-bottom-row .wb-coverage-card {
        width: 100%;
    }
}