/* Hide old Elementor hero banner */
.elementor-element-e0ee2b2 {
    display: none !important;
}

/* Printley Banner Carousel */
.printley-carousel {
    position: relative;
    width: 100%;
    overflow: hidden;
    background: #1a1a2e;
}

.printley-carousel__track {
    display: flex;
    transition: transform 0.5s ease-in-out;
    will-change: transform;
}

.printley-carousel__slide {
    min-width: 100%;
    height: 450px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.printley-carousel__content {
    position: relative;
    z-index: 2;
    max-width: 1920px;
    width: 100%;
    padding: 0 80px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.printley-carousel__headline {
    font-family: 'Inter', sans-serif;
    font-size: 3rem;
    font-weight: 800;
    color: #fff;
    line-height: 1.15;
    margin: 0 0 16px 0;
    letter-spacing: -1px;
    text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.printley-carousel__subtext {
    font-family: 'Inter', sans-serif;
    font-size: 1.15rem;
    color: rgba(255,255,255,0.85);
    line-height: 1.5;
    margin: 0 0 28px 0;
    max-width: 550px;
}

.printley-carousel__cta {
    display: inline-block;
    padding: 14px 36px;
    border: 2px solid #fff;
    color: #fff;
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.printley-carousel__cta:hover {
    background: #fff;
    color: #1a1a2e;
}

/* Logo watermark */
.printley-carousel__logo {
    position: absolute;
    right: 80px;
    top: 50%;
    transform: translateY(-50%);
    width: 350px;
    opacity: 0.08;
    z-index: 1;
    pointer-events: none;
}

.printley-carousel__logo img {
    width: 100%;
    height: auto;
    filter: brightness(0) invert(1);
}

/* Arrows */
.printley-carousel__arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 3;
    width: 48px;
    height: 48px;
    border: none;
    background: rgba(255,255,255,0.15);
    color: #fff;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s;
    backdrop-filter: blur(4px);
}

.printley-carousel__arrow:hover {
    background: rgba(255,255,255,0.3);
}

.printley-carousel__arrow--prev {
    left: 20px;
}

.printley-carousel__arrow--next {
    right: 20px;
}

.printley-carousel__arrow svg {
    width: 20px;
    height: 20px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}

/* Dots */
.printley-carousel__dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    gap: 8px;
}

.printley-carousel__dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,0.4);
    border: none;
    cursor: pointer;
    padding: 0;
    transition: all 0.3s;
}

.printley-carousel__dot--active {
    background: #fff;
    transform: scale(1.2);
}

/* Single slide — hide arrows and dots */
.printley-carousel--single .printley-carousel__arrow,
.printley-carousel--single .printley-carousel__dots {
    display: none;
}

/* Mobile */
@media (max-width: 992px) {
    .printley-carousel__slide {
        height: 280px;
    }

    .printley-carousel__content {
        padding: 0 20px;
    }

    .printley-carousel__headline {
        font-size: 1.75rem;
        margin-bottom: 10px;
    }

    .printley-carousel__subtext {
        font-size: 0.9rem;
        margin-bottom: 20px;
        max-width: 100%;
    }

    .printley-carousel__cta {
        padding: 10px 24px;
        font-size: 13px;
    }

    .printley-carousel__logo {
        right: 20px;
        width: 150px;
    }

    .printley-carousel__arrow {
        width: 36px;
        height: 36px;
    }

    .printley-carousel__arrow--prev {
        left: 10px;
    }

    .printley-carousel__arrow--next {
        right: 10px;
    }

    .printley-carousel__arrow svg {
        width: 16px;
        height: 16px;
    }
}

@media (max-width: 480px) {
    .printley-carousel__slide {
        height: 250px;
    }

    .printley-carousel__headline {
        font-size: 1.4rem;
    }

    .printley-carousel__subtext {
        font-size: 0.8rem;
    }
}
