
.section-title {
    font-size: 32px;
    font-weight: bold;
    margin: 40px 0;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 50%;
    height: 3px;
    background-color: var(--kfc-red);
}

.scroll-container {
    position: relative;
    padding: 0 50px;
}

.scroll-wrapper {
    overflow-x: auto;
    scrollbar-width: none;  /* Firefox */
    -ms-overflow-style: none;  /* IE and Edge */
    scroll-behavior: smooth;
}

.scroll-wrapper::-webkit-scrollbar {
    display: none; /* Chrome, Safari and Opera */
}

.product-cards {
    display: flex;
    gap: 20px;
    padding: 20px 0;
}

.product-card {
    background-color: var(--card-bg);
    border-radius: 8px;
    min-width: 300px;
    position: relative;
    overflow: hidden;
}

.product-dots {
    position: absolute;
    top: 10px;
    right: 10px;
    display: flex;
    gap: 4px;
}

.dot {
    width: 8px;
    height: 8px;
    background-color: var(--kfc-red);
    border-radius: 50%;
}

.price-tag {
    position: absolute;
    top: 20px;
    right: -5px;
    background-color: var(--kfc-red);
    color: white;
    padding: 5px 15px;
    border-radius: 4px;
    transform: skew(-10deg);
}

.product-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.product-title {
    padding: 15px;
    font-size: 20px;
    font-weight: 500;
}

.scroll-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background-color: var(--kfc-red);
    border: none;
    border-radius: 50%;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 2;
}

.scroll-left {
    left: 0;
}

.scroll-right {
    right: 0;
}