.bike-section .bike-card {

    background: #ffffff;

    border-radius: 16px;

    overflow: hidden;

    height: 100%;

    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);

    position: relative;

    border: 1px solid #e2e8f0;

    display: flex;

    flex-direction: column;

    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);

}



.bike-section .bike-card:hover {

    transform: translateY(-8px);

    box-shadow: 0 1px 9px var(--theme-color5);

    border-color: var(--theme-color5);

}



.bike-section .bike-img-wrap {

    position: relative;

    overflow: hidden;

    background: #f1f5f9;

    display: flex;

    align-items: center;

    justify-content: center;

}



.bike-section .bike-img-wrap img {

    width: 100%;

    height: 100%;

    object-fit: contain;

    transition: transform 0.6s ease;

}



.bike-section .bike-card:hover .bike-img-wrap img {

    /* transform: scale(1.08); */

}



.bike-section .bike-badge {

    position: absolute;

    top: 12px;

    left: 12px;

    background: var(--theme-color);

    color: white;

    padding: 3px 11px;

    border-radius: 6px;

    font-weight: 700;

    font-size: 10px;

    z-index: 2;

    box-shadow: 0 3px 3px var(--theme-color);

}



.bike-section .bike-body {

    padding: 18px;

    display: flex;

    flex-direction: column;

    flex-grow: 1;

}



.bike-section .bike-brand {

    font-size: 13px;

    color: var(--theme-color3);

    font-weight: 700;

    text-transform: uppercase;

    margin-bottom: 4px;

    letter-spacing: 1px;

}



.bike-section .bike-title {

}



.bike-section .bike-title a {

    text-decoration: none;

    color: #2a2a2a;

    transition: color 0.3s;

    font-size: 16px;

    font-weight: 700;

    margin-bottom: 2px;

    line-height: 22px;

    overflow: hidden;

    display: -webkit-box;

    -webkit-line-clamp: 2;

    -webkit-box-orient: vertical;

}



.bike-section .bike-title a:hover {

    color: var(--theme-color);

}



.bike-section .bike-specs {

    display: flex;

    align-items: center;

    gap: 12px;

    font-size: 13px;

    color: #2f2f2f;

    margin-bottom: 7px;

    padding: 8px 10px;

    background: #f8fafc;

    border-radius: 8px;

    font-weight: 600;

}



.bike-section .bike-specs span {

    display: flex;

    align-items: center;

    gap: 5px;

}



.bike-section .bike-specs i {

    color: #94a3b8;

    font-size: 14px;

}



.bike-section .price-box {

    display: flex;

    align-items: baseline;

    gap: 8px;

    margin-bottom: 7px;

    flex-wrap: wrap;

}



.bike-section .sale-price {

    font-size: 19px;

    font-weight: 700;

    color: var(--theme-color);

}



.bike-section .old-price {

    font-size: 14px;

    color: #5c5c5c;

    text-decoration: line-through;

    font-weight: 500;

}



.bike-section .timer-container {

    display: flex;

    align-items: center;

    justify-content: space-between;

    background: var(--theme-color5);

    padding: 8px 10px;

    border-radius: 8px;

    margin-bottom: 12px;

    gap: 8px;

    width: 100%;

    border: 1px solid var(--theme-color5);

}



.bike-section .timer-label {

    display: flex;

    align-items: center;

    gap: 6px;

    font-size: 12px;

    font-weight: 800;

    color: var(--theme-color);

    text-transform: uppercase;

}



.bike-section .timer-blocks {

    display: flex;

    align-items: center;

    gap: 4px;

}



.bike-section .timer-unit {

    background: var(--theme-color);

    color: #ffffff;

    width: 24px;

    height: 24px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 4px;

    font-weight: 800;

    font-size: 13px;

}



.bike-section .timer-sep {

    color: var(--theme-color);

    font-weight: 800;

}



.bike-section .progress-label {

    display: flex;

    justify-content: space-between;

    font-size: 13px;

    font-weight: 700;

    margin-bottom: 6px;

    color: #3b3b3b;

}



.bike-section .progress {

    height: 6px;

    background-color: #e2e8f0;

    border-radius: 50px;

    overflow: hidden;

}



.bike-section .progress-bar {

    background: linear-gradient(90deg, var(--theme-color) 0%, var(--theme-color2) 100%);

    border-radius: 50px;

    transition: width 1s ease-in-out;

}



.bike-section .bike-card:not(.is-flashsale) .timer-container,

.bike-section .bike-card:not(.is-flashsale) .flashsale-progress {

    display: none;

}



@media (max-width: 992px) {

    .bike-section .section-title { font-size: 29px; }

}



@media (max-width: 768px) {

    .bike-section .section-title { font-size: 24px; justify-content: center; } 

    .bike-section .bike-card { border-radius: 12px; }

    .bike-section .bike-body { padding: 15px; }

    .bike-section .bike-title { font-size: 15px; line-height: 22px; }

    .bike-section .bike-specs {gap: 8px;font-size: 11px;padding: 6px 8px;flex-direction: column;align-items: start;}

    .bike-section .sale-price {font-size: 13px;}

    .bike-section .old-price { font-size: 13px; }

    .bike-section .timer-container {

        flex-direction: column;

        align-items: center;

        justify-content: center;

        padding: 4px 5px;

        margin-bottom: 5px;

    }

    .bike-section .timer-label {margin-bottom: 0px;font-size: 8px;}

    .bike-section .bike-badge{top: 4px;left: 4px;font-size: 8px;}

    .bike-section .bike-brand{font-size: 9px;margin-bottom: 2px;}

    .bike-section .bike-title a{font-size: 13px;line-height: 18px;}

    .bike-section .timer-unit{

        width: 20px;

        height: 20px;

        font-size: 9px;

    }

    .bike-section .progress-label{font-size: 9px}

}