/* ============================================
   PREMIUM CAROUSEL STYLING
   ============================================ */

.premium-hero-unified {
    padding-bottom: 0;
    overflow: hidden;
    background: linear-gradient(180deg, #ECE8F6 0%, #E7E3F2 100%);
}

@media (min-width: 992px) {
    .premium-hero-unified {
        padding-top: 60px;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .premium-hero-unified {
        padding-top: 40px;
    }
}

@media (max-width: 767px) {
    .premium-hero-unified {
        padding-top: 80px;
    }
}

.hero-content-wrapper {
    width: 100%;
}

.hero-text-block {
    max-width: 800px;
    margin: 0 auto;
}

.premium-subtitle {
    display: block;
    font-size: 14px;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 20px;
    color: #190087;
}

.premium-heading {
    font-size: clamp(32px, 6vw, 56px);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 24px;
    color: #1a1a1a;
    letter-spacing: -1px;
}

.premium-description {
    font-size: 16px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 32px;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
}

.premium-cta {
    display: inline-block;
    padding: 14px 42px;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 24px rgba(25, 0, 135, 0.15);
}

.premium-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(25, 0, 135, 0.25);
}

.spacer-md {
    display: block;
    height: 40px;
}

/* ============================================
   CAROUSEL STYLING
   ============================================ */

.carousel-showcase-wrapper {
    width: 100%;
    background: linear-gradient(180deg, #ECE8F6 0%, #E7E3F2 100%);
    padding: 0;
    overflow: hidden;
}

.carousel-section {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 24px;
    padding: 40px 0;
}

@media (max-width: 768px) {
    .carousel-section {
        padding: 30px 0;
        gap: 18px;
    }
}

.carousel-row {
    width: 100%;
    overflow: hidden;
    position: relative;
    background: transparent;
}

.carousel-row::before,
.carousel-row::after {
    content: '';
    position: absolute;
    top: 0;
    height: 100%;
    z-index: 10;
    pointer-events: none;
}

.carousel-row::before {
    left: 0;
    width: 80px;
    background: linear-gradient(to right, #ECE8F6, rgba(236, 232, 246, 0));
}

.carousel-row::after {
    right: 0;
    width: 80px;
    background: linear-gradient(to left, #ECE8F6, rgba(236, 232, 246, 0));
}

@media (max-width: 768px) {
    .carousel-row::before,
    .carousel-row::after {
        width: 50px;
    }
}

.carousel-track {
    --carousel-gap: 10px;
    display: flex;
    align-items: stretch;
    gap: 0;
    width: max-content;
    will-change: transform;
    transform: translate3d(0, 0, 0);
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}

.premium-carousel-set {
    display: flex;
    align-items: stretch;
    flex-shrink: 0;
    gap: var(--carousel-gap);
    padding-right: var(--carousel-gap);
}

.premium-carousel-item {
    flex: 0 0 auto;
    float: none;
    margin-right: 0;
    position: relative;
    overflow: hidden;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(25, 0, 135, 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    will-change: transform;
}

@media (min-width: 1400px) {
    .premium-carousel-item {
        width: 190px;
        height: 166px;
    }
}

@media (min-width: 1200px) and (max-width: 1399px) {
    .premium-carousel-item {
        width: 174px;
        height: 152px;
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    .premium-carousel-item {
        width: 156px;
        height: 138px;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .premium-carousel-item {
        width: 138px;
        height: 122px;
    }
}

@media (min-width: 576px) and (max-width: 767px) {
    .premium-carousel-item {
        width: 120px;
        height: 106px;
    }
}

@media (max-width: 575px) {
    .premium-carousel-item {
        width: 104px;
        height: 92px;
        border-radius: 6px;
    }
}

.carousel-image-wrapper {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f8f7fc 0%, #fafbfc 100%);
    overflow: hidden;
}

.premium-carousel-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.carousel-footer-spacer {
    height: 30px;
}

@media (max-width: 768px) {
    .carousel-footer-spacer {
        height: 20px;
    }
}
