.bya-section {
    position: relative;
    width: 100%;
    padding: 10px 0 20px;
    color: #fff;
}

.bya-section-header {
    margin-bottom: 16px;
}

.bya-section-title {
    font-size: 28px;
    font-weight: 800;
    line-height: 1.2;
    color: #111;
    margin: 0;
}

.bya-carousel-wrapper {
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
}

.bya-carousel-track-outer {
    overflow: hidden;
    width: 100%;
}

.bya-carousel-track {
    display: flex;
    gap: 25px;
    transition: transform 0.45s ease;
    will-change: transform;
}

.bya-card {
    flex: 0 0 calc(25% - 15px);
    box-sizing: border-box;
    position: relative;
}

.bya-card-inner {
    background: linear-gradient(180deg, #161616 0%, #0d0d0d 100%);
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 12px 35px rgba(0,0,0,.18);
    transform: scale(1);
    transition: transform .35s ease, box-shadow .35s ease;
    height: 100%;
}

.bya-card:hover .bya-card-inner {
    transform: scale(1.05);
    box-shadow: 0 20px 40px rgba(0,0,0,.28);
}

.bya-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
    height: 100%;
}

.bya-thumb-wrap {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1;
    background: #1b1b1b;
    overflow: hidden;
}

.bya-thumb {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.bya-no-image {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #bbb;
    font-size: 14px;
    background: #222;
}

.bya-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    z-index: 2;
    background: #ff2d55;
    color: #fff;
    padding: 7px 12px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .2px;
}

.bya-card-content {
    padding: 18px;
}

.bya-title {
    font-size: 18px;
    font-weight: 800;
    line-height: 1.3;
    color: #fff;
    margin: 0 0 8px;
}

.bya-rating {
    font-size: 14px;
    color: #ffcc66;
    margin-bottom: 8px;
}

.bya-price {
    font-size: 22px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 10px;
}

.bya-desc {
    font-size: 14px;
    line-height: 1.5;
    color: rgba(255,255,255,.78);
    margin-bottom: 16px;
    min-height: 42px;
}

.bya-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 11px 18px;
    background: #fff;
    color: #111;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 700;
    transition: all .3s ease;
}

.bya-card:hover .bya-button {
    background: #ff2d55;
    color: #fff;
}

.bya-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border: 0;
    border-radius: 50%;
    background: rgba(17,17,17,.78);
    color: #fff;
    cursor: pointer;
    z-index: 5;
    font-size: 24px;
    line-height: 1;
    transition: all .3s ease;
}

.bya-nav:hover {
    background: #ff2d55;
}

.bya-prev {
    left: 10px;
}

.bya-next {
    right: 10px;
}

.bya-empty {
    padding: 20px;
    border-radius: 16px;
    background: #f6f6f6;
}

@media (max-width: 1024px) {
    .bya-card {
        flex: 0 0 calc(50% - 10px);
    }

    .bya-section-title {
        font-size: 24px;
    }
}

@media (max-width: 767px) {
    .bya-card {
        flex: 0 0 100%;
    }

    .bya-nav {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }

    .bya-section-title {
        font-size: 22px;
    }
}


.bya-product-card{

    background:#f5f5f5;
    border:2px solid #8cc8c6;
    border-radius:18px;
    padding:18px;
    text-align:center;
    width:230px;
    transition:all .3s ease;

}

.bya-product-card:hover{

    transform:translateY(-5px);
    box-shadow:0 15px 25px rgba(0,0,0,0.08);

}

.bya-product-image{

    background:#ececec;
    border-radius:14px;
    padding:12px;
    margin-bottom:15px;

}

.bya-product-image img{

    width:100%;
    border-radius:12px;
    object-fit:cover;

}

.bya-product-title{

    font-size:15px;
    font-weight:600;
    color:#333;
    margin-bottom:6px;
    letter-spacing:.4px;

}

.bya-product-price{

    font-size:17px;
    font-weight:700;
    color:#333;
    margin-bottom:15px;

}

.bya-product-button{

    display:inline-block;
    padding:10px 20px;
    border-radius:40px;
    background:#8cc8c6;
    color:white;
    font-size:13px;
    font-weight:600;
    text-decoration:none;
    transition:all .3s ease;

}

.bya-product-button:hover{

    background:#6fb6b3;

}