.compare-cards {
    display: flex;
    gap: 20px;
    margin: 20px 0;
    align-items: center;
    justify-content: center;
}
.compare-cards .image-wrapper {
    width: 144px;
    height: 144px;
}
.compare-card {
    background: #fff;
    border-radius: 22px;
    padding: 20px;
    position: relative;
    text-align: center;
    border: 1px solid #D9D9D9;
    max-width: 311px;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 311px;
}
table.compare-table tr td:not(:first-child) {
    /* width: 33%; */
}
table.compare-table{
    margin-top: 30px;
}

table.compare-table , table.compare-table th , table.compare-table td {
    border: 0 !important;
}

table.compare-table td {
    border-top: 1px solid #D9D9D9 !important;
    padding: 14px;
    font-family: "Inter", Sans-serif;
    font-weight: 500;
    font-style: Medium;
    font-size: 16px;
    line-height: 32px;
    color: #686F7E;
}
a.view-on-amazon {
    background: #44CB34;
    color: #fff;
    padding: 11px 13px;
    border-radius: 11px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: max-content;
    gap: 16px;
    font-family: "Inter", Sans-serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 15px;
}
table.compare-table tr td:nth-child(1) {
    color: #000000;
}
table.compare-table tbody>tr:nth-child(odd)>td, table.compare-table tbody>tr:nth-child(odd)>th {
    background-color: hsl(0deg 0% 50% / 0%);
}

.compare-card img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

p.empty-text {
    font-family: "Inter", Sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 24px;
    color: #686F7E;
    margin: 0;
    margin-bottom: 50px;
}

button.compare-remove, button.compare-remove:hover {
    position: absolute;
    top: 10px;
    right: 18px;
    border: 0;
    padding: 0;
    font-size: 22px;
    height: max-content;
    width: max-content;
    color: #686F7E;
    background: transparent;
    cursor: pointer;
}

.compare-card h4 {
    font-family: "Inter", Sans-serif;
    font-weight: 700;
    font-size: 18px;
    line-height: 24px;
    text-align: center;
    color: #000000;
}

.compare-card .price {
    color: #35C700;
    font-family: "Inter", Sans-serif;
    font-weight: 700;
    font-size: 20px;
    line-height: 24px;
    text-align: center;
}

.compare-card .btn {
    background: #2ecc71;
    color: #fff;
    padding: 8px 12px;
    display: inline-block;
    border-radius: 6px;
    margin-top: 8px;
}


.compare-header h2{
    font-family: "Inter", Sans-serif;
    font-weight: 700;
    font-size: 46px;
    line-height: 100%;
    color: #000000;
    margin: 0;
    margin-bottom: 9px;
    margin-top: 30px;
}

.compare-header p{
    font-family: "Inter", Sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 24px;
    color: #686F7E;
    margin: 0;
    margin-bottom: 50px;
}

select#ebike-product-search , select#ebike-product-search:focus {
    border: 1px solid #D9D9D9;
    width: 287px;
    border-radius: 8px;
    padding: 13px 10px;
    color: #000000;
    font-family: "Inter", Sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 10.66px;
    outline: none;
    margin-bottom: 50px;
}

.compare-empty {
    width: 100%;
    border: 2px dashed #D9D9D9;
    background: #F9F9FA;
    border-radius: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 187px;
    color: #686F7E;
    flex-direction: column;
    font-family: "Inter", Sans-serif;
    font-weight: 600;
    font-size: 16px;
    line-height: 32px;
    text-align: center;
}
.compare-empty span {
    font-size: 35px;
}
.compare-empty p{
    margin: 0;
}


/* media query */
@media (max-width: 768px) {
    select#ebike-product-search {
        width: 100%;
    }
    div#compare-cards {
        flex-direction: column;
    }
    div#compare-table {
        overflow-x: auto;
    }
    .compare-header h2 {
        font-size: 30px;
    }
    .compare-header p {
        font-size: 14px;
    }
    table.compare-table td {
        padding: 8px;
        font-size: 12px;
    }
    a.view-on-amazon{
        font-size: 10px;
        padding: 8px 10px;
    }
}



/* Quiz page */


#ebike-quiz-app {
    max-width: 860px;
    margin: 40px auto;
    color: #111827;
}

.quiz-progress {
    margin-bottom: 30px;
}

#quiz-progress-text{
    float: inline-end;
}

#quiz-step-text , #quiz-progress-text {
    font-family: "Inter", Sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    text-align: center;
    color: #686F7E;
}

.progress-bar {
    height: 8px;
    background: #14181E;
    border-radius: 18px;
    overflow: hidden;
    margin-top: 6px;
}

.progress-fill {
    height: 100%;
    width: 0;
    background: #35C700;
    transition: width 0.3s ease;
}

.quiz-step {
    display: none;
}

.quiz-step.active {
    display: block;
}

.quiz-step h2 {
    margin-bottom: 6px;
    font-family: "Aestetico", Sans-serif;
    font-weight: 700;
    font-size: 48px;
    line-height: 100%;
    color: #000000;
    text-align: center;
}

.quiz-step p {
    color: #686F7E;
    margin-bottom: 36px;
    font-family: "Inter", Sans-serif;
    font-weight: 500;
    font-size: 20px;
    line-height: 24px;
    text-align: center;
    margin-top: 18px;
}

.quiz-options label {
    display: flex;
    align-items: center;
    gap: 16px;
    border-radius: 15px;
    padding: 23px 30px;
    margin-bottom: 40px;
    cursor: pointer;
    transition: all 0.2s ease;
    background: #fff;
    border: 2px solid #D9D9D9;
    flex-direction: row-reverse;
    justify-content: space-between;
}

.quiz-options label:hover {
    border-color: #35C700;
    background: #eafaf1;
}

.quiz-options input {
    /* display: none; */
    height: 20px;
    width: 20px;
    accent-color: black;
}

.quiz-options input:checked + span,
.quiz-options input:checked ~ * {
    font-weight: 600;
}

.quiz-options label:has(input:checked) {
    border-color: #35C700;
    background: #eafaf1;
}
.quiz-options label span {
    font-family: "Inter", Sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: #686F7E;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
}
.quiz-options label span img{
    width: 70px;
}
.quiz-options label span small{
    width: 100%;
}
.quiz-options label span strong{
    color: #000000;
    font-family: "Inter", Sans-serif;
    font-weight: 700;
    font-size: 18px;
    line-height: 32px;
    width: 100%;
}
.quiz-nav {
    display: flex;
    justify-content: space-between;
    margin-top: 30px;
}

.quiz-nav button , .quiz-nav button:hover, .quiz-nav button:focus {
    background: none;
    border: none;
    color: #686F7E;
    font-family: "Inter", Sans-serif;
    font-weight: 400;
    font-size: 15px;
    line-height: 24px;
}

.quiz-nav #quiz-next {
    background: #35C700;
    color: #fff;
    padding: 10px 22px;
    border-radius: 999px;
    font-weight: 600;
}

#quiz-results {
    margin-top: 40px;
}
#quiz-results .result-header {
    text-align: center;
    margin-bottom: 28px;
}
#quiz-results .result-header .result-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: max-content;
    margin: auto;
    padding: 11px 14px;
    border-radius: 15px;
    margin-bottom: 19px;
    background: #EAF9E7;
}
#quiz-results .result-header .result-icon img{
    width: 12px;
    height: 8px;
}
#quiz-results .result-header .result-icon p{
    margin: 0;
    font-family: "Inter", Sans-serif;
    font-weight: 400;
    font-size: 15px;
    line-height: 15px;
    text-align: center;
    color: #35C700;
}
#quiz-results .result-header h2{
    font-family: "Aestetico", Sans-serif;
    font-weight: 700;
    font-size: 42px;
    line-height: 100%;
    color: #000000;
    margin: 0;
    margin-bottom: 10px;
}

#quiz-results .result-header p{
    font-family: "Inter", Sans-serif;
    font-weight: 500;
    font-size: 18px;
    line-height: 30px;
    text-align: center;
    color: #686F7E;
    margin: 0;
}

.quiz-result-card {
    border-radius: 16px;
    padding: 30px 40px;
    display: flex;
    gap: 40px;
    margin-bottom: 50px;
    background: transparent;
    border: 2px solid #D9D9D9;
}
.quiz-result-card.top-match {
    border: 2px solid #35C700;
    background: #F5FCF4;
}
.quiz-result-card img {
    width: 171px;
    height: 152px;
    object-fit: cover;
}

.quiz-result-card strong {
    color: #35C700;
    font-family: "Inter", Sans-serif;
    font-weight: 600;
    font-size: 24px;
    line-height: 32px;
    text-align: center;
    
}

.quiz-result-card h3 {
    font-family: "FONTSPRING DEMO - Aestetico SemiBold", sans-serif;
    font-weight: 600;
    font-size: 24px;
    line-height: 24px;
    color: #000000;
    margin: 0;
    margin-bottom: 15px;
    margin-top: 22px;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    display: -webkit-box;
    white-space: normal;
    overflow: hidden;
    text-overflow: ellipsis;
}

.quiz-result-card .price {
    color: #000000;
    font-family: "Inter", Sans-serif;
    font-weight: 700;
    font-size: 24px;
    line-height: 24px;
}
.quiz-result-badge img{
    width: 85px;
    height: 25px;
}
.quiz-result-info {
    width: 50%;
}
.quiz-result-actions {
    display: flex;
    gap: 14px;
    margin-top: 30px;
    align-items: center;
}
.quiz-result-card a {
    display: inline-block;
    background: #44CB34;
    color: #fff;
    padding: 6px 15px;
    border-radius: 10px;
    text-decoration: none;
    font-family: "Inter", Sans-serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 28px;
}

.quiz-result-actions .add-to-compare{
    display: inline-block;
    background: #43cb3400;
    border: 1px solid #D9D9D9;
    color: #1A1A1A;
    padding: 6px 15px;
    border-radius: 10px;
    text-decoration: none;
    font-family: "Inter", Sans-serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 28px;
}

.quiz-disclaimer{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 14px;
    margin-top: 20px;
    width: 100%;
}
.quiz-disclaimer button , .quiz-disclaimer button:hover, .quiz-disclaimer button:focus {
    background: none;
    color: #44CB34;
    font-family: "Inter", Sans-serif;
    font-weight: 600;
    font-size: 16px;
    line-height: 28px;
    border: 2px solid #44CB34;
    padding: 6px 16px;
    border-radius: 10px;
}
.quiz-disclaimer a {
    background: none;
    color: #1A1A1A;
    font-family: "Inter", Sans-serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 28px;
    border: 2px solid #D9D9D9;
    padding: 6px 16px;
    border-radius: 10px;
}

.quiz-result-card.secondary {
    border-color: #e5e7eb;
    background: #fff;
}

.quiz-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-top: 30px;
}

.quiz-actions a {
    border: 1px solid #35C700;
    padding: 10px 20px;
    border-radius: 999px;
    text-decoration: none;
    color: #35C700;
    font-weight: 600;
}



@media (max-width: 640px) {
    .quiz-step h2 {
        font-size: 22px;
    }

    .quiz-result-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 20px;
    }
    .quiz-result-info {
        width: 100%;
    }
    .quiz-result-card h3{
        font-size: 20px;
    }
    .quiz-result-card .price{
        font-size: 16px;
    }
    .quiz-result-card strong{
        font-size: 18px;
    }
    .quiz-result-card a{
        font-size: 12px;
    }
    .quiz-disclaimer a{
        font-size: 12px;
    }
    .quiz-disclaimer button{
        font-size: 12px;
    }
}

/* Archive Styles */

#ebike-archive-app {
    display: flex;
    gap: 36px;
    margin: 0px auto 40px auto;
    position: relative;
}

.archive-sidebar {
    width: 210px;
    background: #fff;
    height: max-content;
    position: sticky;
    top: 30px;
}
.archive-sidebar .filter-group {
    border: 1px solid #D9D9D9;
    border-radius: 14px;
    margin-bottom: 26px;
    padding: 14px 11px;
}

span#product-count {
    color: #686F7E;
    font-family: "Inter", Sans-serif;
    font-weight: 500;
    font-size: 18px;
    line-height: 30px;
}

select#archive-sort {
    border: 1px solid #D9D9D9;
    border-radius: 8px;
    width: 20%;
    color: #000000;
    font-family: "Inter", Sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 10.66px;
}

.price-label {
    margin-top: 12px;
    color: #686F7E;
    font-family: "Inter", Sans-serif;
    font-weight: 400;
    font-size: 12px;
    line-height: 9px;
    text-align: center;
}
.filter-group h4 {
    margin: 0;
    margin-bottom: 16px;
    font-family: "Inter", Sans-serif;
    font-weight: 700;
    font-size: 20px;
    line-height: 24px;
    text-align: center;
    color: #000000;
}
.filter-group ul#filter-categories {
    padding: 0px;
    list-style: none;
}
.filter-group ul#filter-categories input[type="checkbox"] {
    display: none;
}
#filter-categories li {
    margin-bottom: 12px;
    background: #35c70000;
    border-radius: 11px;
    padding: 10px 20px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    color: #000000;
    font-family: "Inter", Sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 32px;
}
#filter-categories li label{
    cursor: pointer;
}
#filter-categories li.active{
    background: #35C700;
    color: #FFFFFF;
}
#filter-categories span {
    color: #6b7280;
    font-size: 13px;
    font-family: "Inter", Sans-serif;
}
#filter-categories li.active span {
    color: #fffffff0;
}

#price-range {
    -webkit-appearance: none;
    width: 100%;
    height: 4px;
    background: #35C700;
    border-radius: 999px;
    outline: none;
    cursor: pointer;
}
#price-range::-webkit-slider-runnable-track {
    height: 4px;
    background: linear-gradient(
        to right,
        #35C700 0%,
        #35C700 var(--range-percent),
        #35C700 var(--range-percent),
        #35C700 100%
    );
    border-radius: 999px;
}
#price-range::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 18px;
    height: 18px;
    background: #35C700;
    border-radius: 50%;
    border: 3px solid #ffffff;
    margin-top: -6px;
    box-shadow: 0 2px 4px rgba(34,197,94,.4);
}
#price-range::-moz-range-track {
    height: 4px;
    background: #35C700;
    border-radius: 999px;
}
#price-range::-moz-range-progress {
    height: 4px;
    background: #35C700;
    border-radius: 999px;
}
#price-range::-moz-range-thumb {
    width: 18px;
    height: 18px;
    background: #35C700;
    border-radius: 50%;
    border: 3px solid #fff;
    box-shadow: 0 2px 4px rgba(34,197,94,.4);
}
#price-range:hover::-webkit-slider-thumb {
    transform: scale(1.1);
}


.archive-main {
    flex: 1;
}

.archive-toolbar {
    display: flex;
    justify-content: space-between;
    margin-bottom: 28px;
    align-items: center;
}

.product-grid {
    display: grid;
    gap: 30px;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: 1fr;
}

.ebike-card {
    background: #fff;
    border-radius: 20px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    border: 1px solid #D9D9D9;
}

.ebike-image {
    align-self: center;
    height: 228px;
}

.ebike-image img {
    max-width: 100%;
    height: 100%;
}

.ebike-meta {
    display: flex;
    gap: 8px;
    align-items: center;
}

.ebike-meta .brand {
    color: #686F7E;
    font-family: "Inter", Sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 19px;
    text-align: center;
}

.ebike-meta .tag {
    padding: 4px 4px;
    border-radius: 6px;
    border: 0.49px solid #D9D9D9;
    color: #000000;
    font-family: "Inter", Sans-serif;
    font-weight: 600;
    font-size: 12px;
    line-height: 15.57px;
    text-align: center;
}

.ebike-title {
    color: #000000;
    font-family: "Inter", Sans-serif;
    font-weight: 700;
    font-size: 16px;
    line-height: 24px;
    margin: 0;
}

.ebike-rating {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
}

.ebike-rating .star {
    color: #22c55e;
    font-size: 16px;
}

.ebike-rating .count {
    color: #6b7280;
}

.ebike-specs {
    display: flex;
    gap: 8px;
    align-items: center;
}

.ebike-specs span {
    background: #F4F5F6;
    padding: 6px 10px;
    border-radius: 9px;
    color: #000000;
    font-family: "Inter", Sans-serif;
    font-weight: 400;
    font-size: 12px;
    line-height: 20px;
    text-align: center;
}

.ebike-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
}

.ebike-footer .price {
    font-family: "Inter", Sans-serif;
    font-weight: 700;
    font-size: 20px !important;
    line-height: 24px;
    color: #000000 !important;
}

.ebike-footer .btn-green {
    background: #35C700;
    color: #fff;
    padding: 10px;
    font-family: "Inter", Sans-serif;
    font-weight: 600;
    font-size: 14px;
    line-height: 14.86px;
    text-align: center;
    width: 50%;
    border-radius: 8px;
}

@media (max-width: 640px) {
    #ebike-archive-app {
        flex-direction: column;
        gap: 20px;
    }
    .archive-sidebar {
        width: 100%;
        position: static;
        top: auto;
    }
    .archive-toolbar {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }
    select#archive-sort {
        width: 100%;
    }
    .product-grid {
        grid-template-columns: repeat(1, 1fr);
    }
}


/* Single Product */

.ebike-hero {
    background: #fff;
}

.ebike-hero .badge {
    background: #000;
    color: #fff;
    padding: 6px 12px;
    border-radius: 15px;
    font-family: "Inter", Sans-serif;
    font-weight: 400;
    font-size: 12px;
    line-height: 32.39px;
    text-align: center;
}

.ebike-hero h1 {
    margin: 12px 0;
    font-family: "Inter", Sans-serif;
    font-weight: 700;
    font-size: 36px;
    line-height: 48px;
    color: #000000;
}

.ebike-hero .brand {
    color: #686F7E;
    margin-bottom: 10px;
    font-family: "Inter", Sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 19px;
}

.ebike-hero .rating {
    display: flex;
    align-items: center;
    gap: 8px;
}

.ebike-hero .stars span {
    color: #d1d5db;
    font-size: 18px;
}

.ebike-hero .stars span.on {
    color: #22c55e;
}

.ebike-hero .price {
    margin: 16px 0;
    color: #000000;
    font-family: "Inter", Sans-serif;
    font-weight: 700;
    font-size: 36px;
    line-height: 24px;
}
.ebike-hero .price del {
    color: #686F7E;
    font-family: "Inter", Sans-serif;
    font-weight: 500;
    font-size: 18px;
    line-height: 32px;
    text-align: center;
    text-decoration: line-through;
}
.ebike-hero .price ins {
    text-decoration: none;
}
.ebike-hero .price span.sale-percentage {
    border: 0.6px solid #F26A6A;
    background: #FFD0D0;
    border-radius: 15px;
    color: #F26A6A;
    font-family: Inter;
    font-weight: 600;
    font-size: 11px;
    line-height: 16px;
    text-align: center;
    padding: 3px 6px;
}
.ebike-hero .spec-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 36px 60px;
    margin: 24px 0;
    padding: 34px 0px;
    border-top: 0.8px solid #D9D9D9;
    border-bottom: 0.8px solid #D9D9D9;
}

.ebike-hero .spec {
    display: flex;
    gap: 14px;
    align-items: center;
    border-radius: 12px;
}

.ebike-hero .spec img {
    width: 42px;
    height: 38px;
}
.ebike-hero .spec div {
    display: flex;
    align-items: baseline;
    flex-direction: column;
}
.ebike-hero .spec div small{
    font-family: "Inter", Sans-serif;
    font-weight: 400;
    font-size: 13px;
    line-height: 19px;
    color: #686F7E;
}
.ebike-hero .spec div strong{
    font-family: "Inter", Sans-serif;
    font-weight: 700;
    font-size: 14px;
    line-height: 19px;
    color: #000000;
}
.product-description {
    color: #686F7E;
    font-family: "Inter", Sans-serif;
    font-weight: 500;
    font-size: 14px;
    line-height: 21px;
    padding: 0px;
}

.product-description ul {
    padding-left: 20px;
}

.ebike-hero .hero-actions {
    display: flex;
    gap: 16px;
    margin-top: 24px;
}

.ebike-hero .btn-green {
    background: #44CB34;
    color: #fff;
    padding: 14px 24px;
    border-radius: 11px;
    text-decoration: none;
    display: flex;
    gap: 8px;
    align-items: baseline;
    font-family: "Inter", Sans-serif;
    font-weight: 500;
    font-size: 18px;
}

.ebike-hero .btn-outline {
    border: 1px solid #35C700;
    color: #35C700;
    padding: 14px 24px;
    border-radius: 12px;
    background: transparent;
    cursor: pointer;
    font-family: "Inter", Sans-serif;
    font-weight: 600;
    font-size: 18px;
    line-height: 28px;
}



.ebike-tabs {
    margin-top: 40px;
    font-family: system-ui, sans-serif;
}

.tab-nav {
    display: flex;
    gap: 32px;
    border-bottom: 1px solid #e5e7eb;
    margin-bottom: 40px;
}

.tab-nav button {
    background: none;
    border: none;
    padding: 12px 0;
    color: #686F7E;
    cursor: pointer;
    position: relative;
    font-family: "Inter", Sans-serif;
    font-weight: 600;
    font-size: 18px;
    line-height: 100%;
    letter-spacing: 4%;
}

.tab-nav button.active {
    color: #000000;
}

.tab-nav button.active::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -1px;
    width: 100%;
    height: 3px;
    background: #35C700;
    border-radius: 2px;
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

.spec-table {
    width: 100%;
    border-collapse: collapse;
}

.spec-table tr {
    border-bottom: 1px solid #e5e7eb;
}

.spec-table td {
    width: 50%;
    padding: 16px 10px 16px 0px;
    border: 0px;
    border-top: 1px solid #D9D9D9 !important;
    display: inline-flex;
}
.spec-table tbody>tr:nth-child(odd)>td, .spec-table tbody>tr:nth-child(odd)>th {
    background-color: hsl(0deg 0% 50% / 0%);
}
.spec-label {
    color: #686F7E;
    font-family: "Inter", Sans-serif;
    font-weight: 500;
    font-size: 14px;
    line-height: 32px;
    width: 50%;
}

.spec-value {
    font-family: "Inter", Sans-serif;
    font-weight: 600;
    font-size: 16px;
    line-height: 32px;
    color: #050505;
    width: 50%;
}
.elementor-element.elementor-element-329471f.e-con-full.e-flex.e-con.e-child {
    height: max-content;
}

.ebike-breadcrumb {
    color: #161617;
    margin-bottom: 16px;
    font-family: "Inter", Sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
}

.ebike-breadcrumb a {
    color: #686F7E;
    text-decoration: none;
    font-family:"Inter", Sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
}

.ebike-breadcrumb a:hover {
    color: #35C700;
}

.ebike-breadcrumb .sep {
    margin: 0 6px;
    color: #9ca3af;
}

.ebike-breadcrumb .current {
    color: #161617;
    font-family:"Inter", Sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
}
.tab-content ul{
    padding-left: 20px;
    color: #686F7E;
    font-family: "Inter", Sans-serif;
    font-weight: 500;
    font-size: 14px;
    line-height: 21px;
}


@media (max-width: 640px) {
    .ebike-hero .hero-actions {
        flex-direction: column;
    }

    .ebike-hero .spec-grid {
        grid-template-columns: repeat(1, 1fr);
    }

    .ebike-hero .price {
        font-size: 25px;
    }

    .ebike-hero h1 {
        font-size: 28px;
        line-height: 34px;
    }
    .elementor-element.elementor-element-a2db47b.e-flex.e-con-boxed.e-con.e-parent.e-lazyloaded {
        padding: 0px 20px;
    }
    .tab-nav button{
        font-size: 13px;
    }
    .spec-table{
        width: max-content;
    }
    .tab-content.active{
        overflow-x: auto;
    }
    .spec-value{
        font-size: 14px;
    }
    .spec-label{
        font-size: 12px;
    }
    .spec-table td{
        width: 330px;
    }
    .spec-label {
        width: 40%;
    }
}