/* --- 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,
.button.product_type_variation,
#primary .summary.entry-summary .single_add_to_cart_button,
.single_add_to_cart_button,
.add_to_cart_button{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 26px !important;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 14px  !important;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    border-radius: 6px  !important;
    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);
}

.button.product_type_variation,
.btn-dark,
.single_add_to_cart_button,
.add_to_cart_button{
    background-color: #000000  !important;
    color: #ffffff  !important;
}
.button.product_type_variation,
.btn-dark:hover,
.single_add_to_cart_button:hover,
.add_to_cart_button: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 0 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-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% !important;
    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;
}

.page-id-16641 .bike-hero {
    min-height: max-content !important;
}
.page-id-16641 .bike-hero img {
    position: unset;
}

@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;
    }

    .page-id-16641 .bike-hero {
        min-height: 550px;
        padding: 0;
    }
}

.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 ol,
.policy-content ul{
    padding-left:18px;
}
.policy-content ul{
    list-style: disc;
}

.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%;
}

.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-coverage-title {
    	font-size: 30px;
        text-align: center;
	}
    .wb-warranty-section {
        padding: 25px 0px;
    }

    .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%;
    }
}

/* ==========================================
   contact-section
========================================== */

.contact-section{
    position: relative;
    overflow: hidden;
	padding:80px 0 0;
    background: var(--card-bg);
}
.contact-section.contact{
    overflow: visible;
}
.contact-section .contact-form{
    width:100%;
    max-width:100%;
    margin:0 auto;
}
.contact-section .section-title{
    margin-bottom:15px;
}
.contact-section .section-desc,
.contact-section .contact-form p{
    color:var(--text-muted);
    font-size:15px;
    line-height:1.8;
    margin-bottom:40px;
}
.contact-section .ct-form{
    width:100%;
}
.contact-section input, .contact-section textarea, .contact-section select{
	appearance: auto !important;
}
.contact-section .contact-details h4{
	font-size: 28px !important;
	margin: 25px 0;
}
.contact-section .contact-details h4:hover a,
.contact-section .contact-details a:hover{
	text-decoration: underline !important;
}

/* ==========================================
   FORM GRID
========================================== */
.contact-section .ct-form .row{
    display:flex;
    flex-wrap:wrap;
    margin:0 -10px;
}
.contact-section .ct-form .row > div{
    padding:0 10px;
    margin-bottom:20px;
    width:100%;
    max-width:100%;
    box-sizing:border-box;
}
.contact-section .column-desktop-6,
.contact-section .column-tablet-6{
    flex:0 0 50%;
    max-width:50%;
}
.contact-section .column-desktop-12,
.contact-section .column-tablet-12,
.contact-section .column-12.form-textarea,
.contact-section .form-textarea{
    flex:0 0 100%;
    max-width:100%;
    width:100%;
}
.contact-section .form-textarea .wpcf7-form-control-wrap{
    display:block;
    width:100%;
}
.contact-section .form-textarea textarea{
    width:100%;
    display:block;
}
.contact-section .ct-form p{
    margin:0;
}
.contact-section .wpcf7-form-control-wrap{
    display:block;
    width:100%;
}

/* ==========================================
   INPUTS
========================================== */
.mystery-popup-form .wpcf7-form-control-wrap{
    margin-bottom:20px;
}
.single-post-feed .comment-form .comment-form-comment,
.single-post-feed .comment-form .comment-form-author,
.single-post-feed .comment-form .comment-form-email,
.single-post-feed .comment-form .comment-form-url{
    display:flex;
    gap: 10px;
    flex-direction:column;
    margin: 0 0 20px;
}
.single-post-feed .comment-form .comment-form-comment label,
.single-post-feed .comment-form .comment-form-author label,
.single-post-feed .comment-form .comment-form-email label,
.single-post-feed .comment-form .comment-form-url label{
    font-size: 16px;
    line-height: 20px;
}
.single-post-feed .comment-form .form-submit{
    margin-top: 20px;
}
.single-post-feed .comment-form .comment-form-comment input,
.single-post-feed .comment-form .comment-form-author input,
.single-post-feed .comment-form .comment-form-email input,
.single-post-feed .comment-form .comment-form-url input,
.mystery-popup-form input,
.contact-section input,
.contact-section textarea,
.contact-section select,
.woocommerce-checkout #customer_details input,
.woocommerce-checkout #customer_details textarea,
.woocommerce-checkout .selection .select2-selection{
    width:100%;
    border:1px solid transparent;
    background:#F6F6F6;
    color:var(--text-main);
    font-size:15px;
    font-family:var(--font-body);
    box-sizing:border-box;
    transition:var(--transition-normal);
    border-radius: 0 !important;
    border: 1px solid #dddddd;
}
.single-post-feed .comment-form .comment-form-comment input,
.single-post-feed .comment-form .comment-form-author input,
.single-post-feed .comment-form .comment-form-email input,
.single-post-feed .comment-form .comment-form-url input,
.mystery-popup-form input,
.contact-section input,
.contact-section select{
    height:58px;
    padding:0 20px;
}
.contact-section textarea,
.woocommerce-checkout #customer_details textarea{
    height:180px;
    padding:18px 20px;
    resize:none;
}
.mystery-popup-form input:focus,
.contact-section input:focus,
.contact-section textarea:focus,
.contact-section select:focus,
.woocommerce-checkout #customer_details input:focus,
.woocommerce-checkout #customer_details textarea:focus{
    border-color:var(--primary-yellow);
    outline:none;
    background:#F6F6F6;
}
.mystery-popup-form input::placeholder,
.contact-section input::placeholder,
.contact-section textarea::placeholder{
    color:var(--text-muted);
}

.mystery-popup-form .wpcf7-spinner{
    display:none;
}
/* ==========================================
   SELECT
========================================== */
.contact-section .select-wrapper{
    position:relative;
}
.contact-section .select-wrapper::after{
    content:"\f078";
    font-family:"Font Awesome 6 Free";
    font-weight:900;
    position:absolute;
    right:18px;
    top:50%;
    transform:translateY(-50%);
    pointer-events:none;
    color:#777;
}
.contact-section .select-wrapper select{
    appearance:none;
    padding-right:50px;
}
.contact-section select{
    appearance:none;
    cursor:pointer;
}

/* ==========================================
   BUTTONS
========================================== */
.contact-section .wpcf7-button{
    display:flex;
    justify-content:flex-start;
    margin-top:10px;
}
.contact-section .wpcf7-button button{
    padding:15px 35px;
    border:none;
    cursor:pointer;
}
.contact-section .wpcf7-not-valid-tip{
    font-size:13px;
    margin-top:6px;
    color:var(--accent-red);
}
.contact-section .wpcf7-response-output{
    margin-top:20px !important;
    border-radius:8px;
}
.contact-section .wpcf7-spinner{
    display:none;
}

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

@media(max-width:991px){

    .contact-section .column-desktop-6,
    .contact-section .column-tablet-6{
        flex:0 0 100%;
        max-width:100%;
    }

    .contact-info:after{
		content: "";
	  position: absolute;
	  right: 0;
	  top: auto;
	  bottom: -20px;
	  width: 100%;
	  height: 1px;
	  background: #e5e5e5;
	}
}

@media(max-width:767px){
    
    .contact-section .column-desktop-6,
    .contact-section .column-tablet-6,
    .contact-section .column-desktop-12,
    .contact-section .column-tablet-12{
        flex:0 0 100%;
        max-width:100%;
    }

    .contact-section .ct-form .row{
        margin:0;
    }

    .contact-section .ct-form .row>div{
        padding:0;
    }

    .contact-section .section-desc,
    .contact-section .contact-form p{
        font-size:14px;
    }

    .contact-section .wpcf7-button button{
        width:100%;
    }

}
@media(max-width:575px){
    .woocommerce-billing-fields__field-wrapper {
		display: flex;
		flex-direction: column;
	}
	.woocommerce-checkout #customer_details .form-row{
		width: 100%;
	}
}

/* contact */
.contact-section .contact-wrapper{
    display:grid;
    grid-template-columns:320px 1fr;
    gap:50px;
    align-items:flex-start;
    position: relative;
    z-index: 1;
}
.affiliate-form .section-title,
.affiliate-form p,
.bulk-purchase-form .section-title,
.bulk-purchase-form .section-desc{
    text-align:center;
}
.coupon-form{
    padding:70px 0;
}
.coupon-form .section-title{
    font-size:25px;
    text-align:left;
}
.coupon-form .coupon-code-main{
    display:flex;
    gap:20px;
    align-items:center;
    flex-wrap:wrap;
}
.coupon-form .coupon-code-main .col-md-4{
    flex:1;
    min-width:280px;
}

.contact-info{
    position: relative;
    height: 100%;
}
.contact-info:after{
    content:"";
    position:absolute;
    right:0;
    top:0;
    width:1px;
    height:100%;
    background:#e5e5e5;
}
.contact-bike{
    position: absolute;
    left: 0;
    bottom: -150px;
    width: 38%;
    /* scale: 1.6; */
    z-index: 0;
}
.contact-bike img{
    width:100%;
    display:block;
}

.contact-section input[type="submit"]{
    width:100%;
    height:50px;
    background:var(--primary-yellow);
    color:#000;
    font-family:var(--font-heading);
    font-size:16px;
    letter-spacing:2px;
    text-transform:uppercase;
    border:none;
    cursor:pointer;
    transition:var(--transition-normal);
}
.contact-section input[type="submit"]:hover{
    background:var(--yellow-hover);
    transform:translateY(-2px);
}

.contact-section.coupon-form .wpcf7-form h4{
    margin-bottom: 10px;
}

@media(max-width:991px){
    .coupon-form .coupon-code-main .col-md-4{
        flex:0 0 calc(50% - 8px);
    }
    .coupon-form .coupon-code-main .col-md-4:last-child{
        flex:0 0 100%;
    }
    .contact-section .contact-wrapper{
        grid-template-columns:1fr;
        gap:50px;
    }
    .contact-bike{
        display:none;
    }
    .coupon-form .coupon-code-main .col-md-4{
        flex: 0 0 calc(100% - 8px);
    }
    .coupon-form p {
        margin-bottom: 0 !important;
    }
}

@media(max-width:767px){
    .coupon-form .section-title{
        text-align:center;
    }
    .coupon-form .coupon-code-main{
        flex-direction:column;
    }
    .coupon-form .coupon-code-main .col-md-4{
        width:100%;
        flex:0 0 100%;
    }
}


/* == Why Connect With WiFi Bikes == */

.wb-why-connect-section {
    width: 100%;
    max-width: 1440px;
    margin: 50px auto;
    padding: 0 20px;
    box-sizing: border-box;
}

.wb-why-connect-title {
    font-family:var(--font-heading);
    font-size: 26px;
    font-weight: 700;
    color: #000000;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 35px;
}

.wb-why-connect-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.wb-why-connect-card {
    background: #ffffff;
    border: 1px solid #e2e2e2;
    padding: 40px 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    box-sizing: border-box;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
    min-height: 220px;
}

.wb-why-connect-card:hover {
    border-color: #000000;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    transform: translateY(-2px);
}

.wb-why-connect-icon {
    margin-bottom: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000000;
}

.wb-why-connect-icon img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.wb-why-connect-icon svg {
    width: 80px;
    height: 80px;
    fill: currentColor;
}

.wb-why-connect-card-title {
    font-family: var(--font-heading);
    font-size: 15px;
    font-weight: 700;
    line-height: 1.4;
    color: #000000;
    text-transform: uppercase;
    margin: 0;
    letter-spacing: 0.3px;
    max-width: 240px;
}

@media (max-width: 992px) {
    .wb-why-connect-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .wb-why-connect-card {
        padding: 30px 16px;
        min-height: 200px;
    }
}

@media (max-width: 576px) {
    .wb-why-connect-grid {
        grid-template-columns: 1fr;
    }

    .wb-why-connect-title {
        font-size: 22px;
        margin-bottom: 25px;
    }
}

/* == Image Box Section == */
.wb-corporate-section {
    margin-top: 40px;
    margin-bottom: 40px;
    font-family: 'Roboto', sans-serif;
    background-color: #fff;
}

.wb-corporate-main-title {
    font-family:var(--font-heading);
    font-size: 26px;
    font-weight: 700;
    text-transform: uppercase;
    text-align: center;
    color: var(--wb-black);
    letter-spacing: 0.5px;
    margin: 0 0 35px 0;
    line-height: 1.25;
}

.wb-corporate-grid-wrapper {
    border: 1px solid #e2e2e2;
    border-radius: 4px;
    overflow: hidden;
}

.wb-corporate-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    background-color: #fff;
}

.wb-corporate-card {
    padding: 25px 20px 30px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    border-right: 1px solid #e2e2e2;
    box-sizing: border-box;
    background-color: #fff;
    transition: background-color 0.3s ease;
}

.wb-corporate-card:last-child {
    border-right: none;
}

.wb-corporate-card-image {
    width: 100%;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    margin-bottom: 22px;
    background-color: #f5f5f5;
    border-radius: 2px;
}

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

.wb-corporate-card:hover .wb-corporate-card-image img {
    transform: scale(1.04);
}

.wb-corporate-card-title {
    font-family:var(--font-heading);
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--wb-black);
    line-height: 1.15;
    letter-spacing: 0.5px;
    margin: 0 0 14px 0;
    min-height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wb-corporate-card-desc {
	color: #666;
	margin-bottom: 16px;
      text-align: center;
    font-family: "Roboto", Sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
}

.wb-corporate-btn-wrapper {
    margin-top: auto;
    width: 100%;
    display: flex;
    justify-content: center;
}

@media (max-width: 991px) {
    .wb-corporate-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .wb-corporate-card {
        border-bottom: 1px solid #e2e2e2;
    }

    .wb-corporate-card:nth-child(2n) {
        border-right: none;
    }

    .wb-corporate-card:nth-last-child(-n+2) {
        border-bottom: none;
    }
	.wb-corporate-card-title {
		font-size: 18px;
	}
}

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

    .wb-corporate-card {
        border-right: none;
        border-bottom: 1px solid #e2e2e2;
    }

    .wb-corporate-card:last-child {
        border-bottom: none;
    }

    .wb-corporate-main-title {
        font-size: 20px;
    }
}

/* =============== category page =============== */
.products .type-product .woocommerce-result-count,
.products,
.woocommerce-ordering select {
  margin: 0 20px !important;
}

.products .product {
  position: relative;
  border: 1px solid var(--border-color);
  overflow: hidden;
  transition: var(--transition-normal);
  box-shadow: var(--shadow-sm);
  padding: 20px !important;
}
.products .product a img {
  transition: .45s;
}
.products .product:hover a img {
  transform: scale(1.08);
}
.products .product:hover {
  cursor: pointer;
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-yellow);
}
.products .woocommerce-loop-product__title {
  font-size: 22px !important;
}
.products .product .price {
  font-size: 16px !important;
  color: #000 !important;
  font-weight: 600 !important;
}
.products .product .button {
  background-color: var(--primary-yellow);
  color: #000000 !important;
  box-shadow: 0 4px 12px rgba(244, 208, 63, 0.25);
  transition: .3s;
}
.products .product .button:hover {
  background-color: var(--yellow-hover);
  transform: translateY(-3px);
  box-shadow: var(--shadow-yellow);
}
.woocommerce-ordering select {
  padding: 6px;
  border: 1px solid var(--border-color);
}
.products .product .swatch-align-left .variations {
  display: none;
}

@media (max-width:575px) {

  .products .type-product .woocommerce-result-count,
  .products,
  .woocommerce-ordering select {
    margin: 0 10px !important;
  }
  .products .product {
    padding: 10px !important;
  }
  .products .woocommerce-loop-product__title {
    font-size: 18px !important;
    line-height: 1.4;
  }
  .products .product .price {
    font-size: 13px;
  }
  .products .product .button {
    padding: 10px;
  }
}

/* Store locator */
.entry-content .state-city-row{
	display: flex;
  align-items: center;
  gap: 50px;
  margin-bottom: 20px;
}

.entry-content .state-city-row select{
	color: #404040 !important;
  border: 1px solid var(--border-color) !important;
  max-width: 100%!important;
  appearance: none!important;
  width: 100%!important;
  padding: 15px 20px;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e");
  background-position: calc(100% - 10px) center!important;
  background-repeat: no-repeat!important;
  background-size: 16px 12px!important;
  border-radius: 7px;
}
.entry-content #storeSearch{
	padding: 15px 20px;
	width: 100%;
	color: #000 !important;
	border: 1px solid  !important;
	border-radius: 7px;
}

@media (max-width:767px){
	.entry-content .state-city-row{
		flex-direction: column;
		gap: 20px;
	}
}
/* Store locator */
/* // Checkout */
.woocommerce-checkout .coupon-code-main{
	display: flex;
	gap: 20px;
}
.woocommerce-checkout .coupon-code-main>div{
	width: 100%;
}
.woocommerce-checkout .coupon-code-main input{
	height: 58px;
  width: 100%;
  border: 1px solid transparent;
  background: #F6F6F6;
  color: var(--text-main);
  font-size: 15px;
  font-family: var(--font-body);
  box-sizing: border-box;
  padding: 0 20px;
  transition: var(--transition-normal);
}
.woocommerce-checkout .coupon-code-main input:focus-visible{
	outline: none;
}
.woocommerce-checkout .coupon-code-main input:focus{
	border: 1px solid var(--primary-yellow);
}
.woocommerce-checkout .coupon-code-main .wpcf7-submit{
	background-color: var(--primary-yellow);
	cursor: pointer;
	font-weight: 600;
	font-size: 16px;
}
.woocommerce-checkout .wpcf7 h4{
	font-size: 24px;
}
@media (max-width: 767px){
	.woocommerce-checkout .coupon-code-main{
		flex-wrap: wrap;
	}
}
.ts-badge{
	font-size: 10px;
}
.wishlist-btn-overlay .woosw-btn{
	width: 32px;
  height: 32px;
  right: 8px;
}
/* // Checkout */