    .hero-carousel {
        position: relative;
        height: 18em;
        overflow: hidden;
        border-radius: 8px;
    }

    .carousel-container {
        display: flex;
        transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        height: 100%;
    }

    .carousel-slide {
        min-width: 100%;
        position: relative;
        overflow: hidden;
    }

    .carousel-slide a,
    .carousel-slide > div {
        display: block;
        width: 100%;
        height: 100%;
        text-decoration: none;
        position: relative;
    }

    .slide-background {
        height: 100%;
        width: 100%;
        background-size: contain;
        background-position: center;
        background-repeat: no-repeat;
        transition: transform 0.3s ease;
    }

    .slide-overlay {
        position: absolute;
        inset: 0;
    }

    .slide-content {
        position: absolute;
        bottom: 2em;
        left: 2em;
        right: 2em;
        background: rgba(0, 0, 0, 0.8);
        backdrop-filter: blur(10px);
        color: white;
        padding: 1em 1.5em;
        border-radius: 8px;
        transform: translateY(100%);
        transition: transform 0.3s ease;
        opacity: 0;
    }

    .carousel-indicators {
        position: absolute;
        bottom: 0.25em;
        left: 50%;
        transform: translateX(-50%);
        display: flex;
        gap: 0.75em;
        z-index: 8;
        padding: 0.5em 0.75em;
        background: rgba(0, 0, 0, 0.5);
        border-radius: 0.25em;        
    }

    .carousel-dot {
        min-width: 1em;
        min-height: 1em;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.6);
        cursor: pointer;
        transition: all 0.3s ease;
        border: none;
        font-size: inherit;
    }

    .carousel-dot.active {
        background: #ffffff;
        border-color: rgba(255, 255, 255, 0.5);
    }

    .carousel-dot:hover {
        background: rgba(255, 255, 255, 0.9);
    }

    .no-banners {
        display: flex;
        align-items: center;
        justify-content: center;
        height: 100%;
        background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
        color: #666;
        border-radius: 8px;
        font-size: 1.1em;
    }
    @media (max-width: 768px) {
        .hero-carousel {
            height: 32em;
        }

        .slide-content {
            bottom: 1em;
            left: 1em;
            right: 1em;
            padding: 0.75em 1em;
            font-size: 1em;
        }

        .carousel-indicators {
            gap: 0.5em;
            padding: 0.4em 0.8em;
        }
    }

    .skeleton {
    background: linear-gradient(90deg, #eee 25%, #f5f5f5 50%, #eee 75%);
    background-size: 200% 100%;
    animation: skeleton-loading 1.2s infinite linear;
    border-radius: 4px;
}
@keyframes skeleton-loading {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}
    .file-drop {        
        min-height: 12em;
    }

    .file-drop.highlighted {
        color: var(--color-primary);
        border-color: var(--color-primary);
    }

    .file-drop.on-hightlighted {
        display: none;
    }

    input[type='number'] {
        -moz-appearance:textfield;
    }

    input::-webkit-outer-spin-button,
    input::-webkit-inner-spin-button {
        -webkit-appearance: none;
    }

    .carrousel {
        display: flex;
        overflow-x: scroll;
        scroll-snap-type: x mandatory;
    }

    .carrousel__inner {
        display: flex;
        gap: 1em;
        position: absolute;
        height: 100%;
    }

    .carrousel-item>img {
            scroll-snap-align: start;
            flex: 0 0 auto;
            width: 100%; /* Adjust the width as needed */
            margin-right: 16px; /* Adjust the margin as needed */

    }


    .box {
        background-color: white;
        padding: 1em;
        display: flex;
        flex-direction: column;
        border-radius: 4px;
        border: 1px solid lightgray;
    }

    .w-text{
        color: #f9f9f9  ;
    }

    img[alt="Corel"] {
        filter: brightness(0) invert(1);
        background: transparent !important;
    }

    .design-templates-box {
        transition: all 0.3s ease;
    }

    .design-templates-box:hover .fa-arrow-right {
        transform: translateY(50%) translateX(0.5em) !important;
        transition: transform 0.3s ease;
    }

    .design-templates-box .fa-arrow-right {
        transition: transform 0.3s ease;
    }
