.carousel {
    margin-bottom: 5rem;
    margin-top: 2rem;
}
.carousel-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    padding: 1.2rem 2rem 1.2rem 2.5rem;
    margin: 0 -2rem 3rem -2rem;
    background: linear-gradient(to right, 
        rgba(187, 11, 11, 0.9) 0%, 
        rgba(187, 11, 11, 0.85) 30%,
        rgba(187, 11, 11, 0.85) 70%, 
        rgba(187, 11, 11, 0.75) 100%);
    backdrop-filter: blur(8px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    overflow: visible;
}

.carousel-header::before {
    content: '';
    position: absolute;
    left: -25px;
    top: 0;
    width: 50px;
    height: 100%;
    background: linear-gradient(to right, 
        rgba(187, 11, 11, 0) 0%,
        rgba(187, 11, 11, 0.3) 30%,
        rgba(187, 11, 11, 0.7) 70%,
        rgba(187, 11, 11, 0.9) 100%);
    transform: skewX(-15deg);
    z-index: -1;
}

.carousel-header::after {
    content: '';
    position: absolute;
    right: -25px;
    top: 0;
    width: 50px;
    height: 100%;
    background: linear-gradient(to right, 
        rgba(187, 11, 11, 0.75) 0%,
        rgba(187, 11, 11, 0.5) 40%,
        rgba(187, 11, 11, 0.2) 70%,
        rgba(187, 11, 11, 0) 100%);
    transform: skewX(-15deg);
    z-index: -1;
}
.carousel-title {
    font-size: 1.8rem;
    font-weight: 600;
    color: #ffffff;
    padding-bottom: 0;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    letter-spacing: 0.5px;
}
.carousel-controls {
    display: flex;
    gap: 1rem;
    position: relative;
    z-index: 2;
}
.carousel-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.95);
    border: 2px solid rgba(139, 21, 56, 0.3);
    color: var(--accent);
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}
.carousel-btn:hover {
    background: #ffffff;
    border-color: var(--accent);
    color: var(--highlight);
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(139, 21, 56, 0.3);
}
.products-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    overflow: hidden;
    margin-top: 1rem;
}
.product-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 0, 0, 0.05);
    margin-top: 15px;
}
.product-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 35px rgba(0, 0, 0, 0.15), 
                0 5px 15px rgba(220, 20, 60, 0.1);
    border-color: rgba(220, 20, 60, 0.3);
}
.product-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    background: linear-gradient(45deg, var(--secondary), #e9ecef);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 3rem;
    color: rgba(255, 255, 255, 0.1);
}
.product-info {
    padding: 1.5rem;
}
.product-name {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #222222;
}
.product-price {
    font-size: 1.5rem;
    color: var(--highlight);
    margin-bottom: 1rem;
    font-weight: 700;
}
.product-description {
    color: #333333;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
    line-height: 1.5;
}
.product-actions {
    display: flex;
    justify-content: space-between;
}
.add-to-cart {
    padding: 0.6rem 1.5rem;
    background: var(--accent);
    color: white;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    transition: var(--transition);
    font-weight: 500;
}
.add-to-cart:hover {
    background: var(--highlight);
    box-shadow: var(--glow);
}
.view-details {
    background: transparent;
    color: var(--light);
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 0.6rem 1.5rem;
    border-radius: 30px;
    cursor: pointer;
    transition: var(--transition);
}
.view-details:hover {
    border-color: var(--highlight);
    color: var(--highlight);
}
