    .delicias-section-container {
        justify-content: center;
        overflow: hidden;
        margin-top: 50px;
    }

    .delicias-product-section {
        width: 90%;
        text-align: center;
    }

    .delicias-carousel-container {
        position: relative;
        padding: 0 50px;
    }

    .delicias-carousel-wrapper {
        display: flex;
        transition: transform 0.5s ease-in-out;
    }

    .delicias-product-item {
        flex: 0 0 33.333%;
        padding: 20px;
        display: flex;
        justify-content: center;
        align-items: center;
        position: relative;
    }
   .delicias-product-item::before {
        content: '';
        position: absolute;
        width: 300%;
        scale: 2;
        background: radial-gradient(ellipse at center, var(--bg-color, transparent) 0%, transparent 40%);
        z-index: 1;
        opacity: 0;
        transition: opacity 0.5s ease;
        height: 200%;
        pointer-events: none;
      }

      .delicias-product-item:hover::before {
          opacity: 0.6;
      }

      .delicias-bottle-image,
      .delicias-fruit-image {
          position: relative;
          z-index: 2;
      }

    .delicias-product-image-container {
        position: relative;
        width: 150px;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .delicias-bottle-image {
        position: relative;
        z-index: 2;
        transition: transform 0.3s ease;
        width: 100%;
    }

    .delicias-fruit-image {
        position: absolute;
        bottom: 40px;
        width: 100%;
        z-index: 1;
        opacity: 0;
        transition: opacity 0.4s ease-out, transform 0.4s ease-out;
    }

    .delicias-fruit-image-left {
        left: 50%;
        transform: translateX(-50%) scale(0.8);
    }

    .delicias-fruit-image-right {
        right: 50%;
        transform: translateX(50%) scale(0.8);
    }

    /* Hover effects */
    .delicias-product-item:hover .delicias-bottle-image {
        transform: scale(1.05) translateY(-10px);
    }

    .delicias-product-item:hover .delicias-fruit-image-left {
        opacity: 1;
        transform: translateX(-110%) rotate(-45deg) scale(1.2);
    }

    .delicias-product-item:hover .delicias-fruit-image-right {
        opacity: 1;
        transform: translateX(110%) rotate(45deg) scale(1.2);
    }

    /* Carousel arrows */
    .delicias-carousel-arrow {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        background-color: #2e7d32;
        color: white;
        border: none;
        border-radius: 50%;
        width: 40px;
        height: 40px;
        font-size: 20px;
        cursor: pointer;
        z-index: 10;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .delicias-carousel-arrow.prev {
        left: 10px;
    }

    .delicias-carousel-arrow.next {
        right: 10px;
    }

    .delicias-carousel-arrow:hover {
        background-color: #246327;
    }

    /* Mobile responsive */
    @media (max-width: 768px) {
        .delicias-product-item {
            flex: 0 0 100%;
        }
        
        .delicias-carousel-container {
            padding: 0 10px;
        }
        
        .delicias-section-title {
            font-size: 2rem;
        }
    }
