body {
    margin: 0;
    padding: 0;
}


/* Carousel wrapper */

.delish-carousel-wrapper {
    position: relative;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
}


/* Carousel track */

.delish-carousel {
    display: flex;
    width: 100%;
    transition: transform 1.2s ease-in-out;
}


/* Each slide */

.delish-slide {
    flex: 0 0 100%;
    /* CRITICAL FIX */
    max-width: 100%;
    height: 600px;
    position: relative;
}


/* Tablet */

@media (max-width: 1024px) {
    .delish-slide {
        height: 320px;
    }
}


/* Mobile */

@media (max-width: 767px) {
    .delish-slide {
        height: 240px;
    }
}


/* Images */

.delish-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /*  fills height nicely */
    display: block;
}


/* Pagination dots */

.delish-carousel-dots {
    position: absolute;
    bottom: 120px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
}

.delish-carousel-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
}

.delish-carousel-dot.active {
    background: #fff;
}


/* Elementor full-width override */

.elementor-section,
.elementor-container,
.elementor-widget-wrap {
    max-width: 100% !important;
}


/* Ensure no internal gaps */

.delish-carousel,
.delish-slide {
    margin: 0;
    padding: 0;
}


/* ================================
   DYNAMIC SLIDE (ORDER CARD)
================================ */

.delish-dynamic-slide {
    display: flex;
    justify-content: center;
    align-items: center;
    background: #B2F67736;
    color: #006633;
    min-height: 260px;
    padding: 20px;
    box-sizing: border-box;
}

.dynamic-card {
    background: rgba(255, 255, 255, 0.12);
    border-radius: 14px;
    padding: 24px 28px;
    max-width: 480px;
    width: 100%;
    text-align: left;
    border: 1px solid #73BD6E;
}

.dynamic-card h3 {
    margin: 0 0 14px;
    font-size: 20px;
    font-weight: 600;
    letter-spacing: 0.3px;
}

.dynamic-card p {
    margin: 6px 0;
    font-size: 14px;
    line-height: 1.4;
    opacity: 0.95;
}

.dynamic-card p strong {
    font-weight: 600;
}

.dynamic-cta {
    display: inline-block;
    margin-top: 16px;
    padding: 10px 18px;
    background: #ffdb4f;
    color: #000;
    font-size: 14px;
    font-weight: 600;
    border-radius: 20px;
    text-decoration: none;
    transition: all 0.25s ease;
}

.dynamic-cta:hover {
    background: #ffdb4f;
    color: #fff;
    transform: translateY(-1px);
}


/* ================================
   RESPONSIVE
================================ */

@media (max-width: 768px) {
    .dynamic-card {
        padding: 20px;
    }
    .dynamic-card h3 {
        font-size: 18px;
    }
    .dynamic-card p {
        font-size: 13px;
    }
}

.dynamic-slots {
    margin-top: 10px;
    font-size: 13px;
}

.dynamic-slots ul {
    margin: 6px 0 0;
    padding-left: 18px;
}

.dynamic-slots li {
    margin-bottom: 4px;
    opacity: 0.95;
}

.delish-carousel-arrow {
    position: absolute;
    top: 40%;
    transform: translateY(-50%);
    color: #fff;
    border: none;
    font-size: 22px;
    padding: 10px 14px;
    cursor: pointer;
    z-index: 10;
    transition: 0.3s ease;
}

.delish-carousel-arrow.prev {
    left: 15px;
}

.delish-carousel-arrow.next {
    right: 15px;
}

.delish-carousel-arrow,
.delish-carousel-arrow:hover,
.delish-carousel-arrow:focus,
.delish-carousel-arrow:active {
    background: transparent !important;
    box-shadow: none !important;
    outline: none !important;
}

.dynamic-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
}

.dynamic-left {
    flex: 1;
}

.delish-dynamic-slide .dynamic-product-img {
    width: 200px !important;
    height: 300px !important;
    object-fit: cover;
    border-radius: 12px !important;
}

.delish-dynamic-slide .dynamic-product-img {
    width: 140px !important;
    height: 180px !important;
    object-fit: cover;
    border-radius: 12px !important;
}

@media(max-width:768px) {
    .dynamic-row {
        flex-direction: column;
    }
    .dynamic-right {
        text-align: left;
        margin-top: 10px;
    }
    .dynamic-product-img {
        width: 80px;
        height: 80px;
    }
}