.category-section {
    margin: 40px 0;
}

.category-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid #333;
}

.category-title {
    font-size: 1.5rem;
    color: #fff;
    margin: 0;
    transition: color 0.3s ease;
}

.category-title:hover {
    color: #007bff;
    text-decoration: underline;
}

.scroll-container {
    position: relative;
    overflow-x: hidden;
    padding: 0 50px; /* Add padding to make room for buttons */
}

.product-scroll {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 10px 0;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE and Edge */
}

.product-scroll::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Opera */
}

.scroll-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: #1a1a1a;
    border: 1px solid #333;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 2;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.scroll-button:hover {
    background-color: #333;
    border-color: #444;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.scroll-left {
    left: 0;
}

.scroll-right {
    right: 0;
}

.scroll-button i {
    font-size: 16px;
}

.product-card {
    min-width: 280px;
    background-color: #1a1a1a;
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

/* Rest of product card styles remain the same as in product_page_styles.css */
.product-card a {
    text-decoration: none;
    color: inherit;
    display: block;
}

.product-card-image {
    background-color: white;
    padding: 10px;
    height: 200px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.product-card-image img {
    max-width: 100%;
    max-height: 180px;
    object-fit: contain;
}

.product-card-info {
    padding: 15px;
}

.product-card-info h3 {
    font-size: 1rem;
    margin: 0 0 10px 0;
    color: white;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    transition: color 0.3s ease;
}

.product-card:hover .product-card-info h3 {
    height: auto;
    -webkit-line-clamp: unset;
    line-clamp: unset;
    overflow: visible;
    color: #007bff;
    text-decoration: underline;
}

.product-card-division {
    color: #999;
    font-size: 0.8rem;
    margin: 0 0 5px 0;
}

.product-card-price {
    color: #ff1493;
    font-weight: bold;
    margin: 5px 0 0 0;
}

.loading-section {
    text-align: center;
    color: #888;
}

.error-section {
    text-align: center;
    padding: 40px;
    color: #ff6b6b;
}

.billboard-container {
    width: 100%;
    height: 800px;
    overflow: hidden;
    position: relative;
    margin-bottom: 40px;
    background: #1a1a1a;
}

.billboard-scroll {
    display: flex;
    transition: transform 0.5s ease;
    height: 100%;
}

.billboard-slide {
    min-width: 100%;
    height: 100%;
}

.billboard-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media screen and (max-width: 768px) {
    .billboard-container {
        height: 400px;
    }
    .scroll-container {
        padding: 0;
    }

    .product-card {
        min-width: 220px;
    }
}