.otterwp-sc-wrapper {
    position: relative;
    width: 100%;
}

.otterwp-sc-wrapper.otterwp-sc-fullwidth {
    width: 100vw;
    margin-left: calc(-50vw + 50%);
}

.otterwp-sc-slider {
    width: 100%;
    opacity: 0;
    transition: opacity 0.3s ease;
    position: relative;
    overflow: hidden;
    height: var(--otterwp-slider-h, 600px);
    min-height: 200px;
}

.otterwp-sc-slider.slick-initialized {
    opacity: 1;
}

.otterwp-sc-slider .slick-list,
.otterwp-sc-slider .slick-track {
    height: 100% !important;
}

.otterwp-sc-slider .slick-slide {
    height: 100% !important;
}

.otterwp-sc-slider .slick-slide > div {
    height: 100% !important;
}

/* Slide */
.otterwp-sc-slide {
    position: relative;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
    display: flex !important;
}

/* Overlay */
.otterwp-sc-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

/* Content */
.otterwp-sc-content {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 40px 60px;
    display: flex;
    flex-direction: column;
}

.otterwp-sc-content-left {
    align-items: flex-start;
    text-align: left;
}

.otterwp-sc-content-center {
    align-items: center;
    text-align: center;
}

.otterwp-sc-content-right {
    align-items: flex-end;
    text-align: right;
}

.otterwp-sc-vcontent-top {
    justify-content: flex-start;
}

.otterwp-sc-vcontent-center {
    justify-content: center;
}

.otterwp-sc-vcontent-bottom {
    justify-content: flex-end;
}

/* Heading */
.otterwp-sc-heading {
    margin: 0 0 10px;
    font-weight: 700;
    line-height: 1.2;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

/* Subheading */
.otterwp-sc-subheading {
    margin: 0 0 10px;
    font-weight: 400;
    line-height: 1.3;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

/* Description */
.otterwp-sc-desc {
    margin: 0 0 20px;
    line-height: 1.6;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

/* Buttons */
.otterwp-sc-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.otterwp-sc-content-left .otterwp-sc-buttons {
    justify-content: flex-start;
}

.otterwp-sc-content-center .otterwp-sc-buttons {
    justify-content: center;
}

.otterwp-sc-content-right .otterwp-sc-buttons {
    justify-content: flex-end;
}

.otterwp-sc-btn {
    display: inline-block;
    padding: 12px 28px;
    font-size: 15px;
    font-weight: 500;
    text-decoration: none;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    cursor: pointer;
    line-height: 1.4;
}

.otterwp-sc-btn:hover {
    opacity: 0.9;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.otterwp-sc-btn-primary {
    /* Styles from inline */
}

.otterwp-sc-btn-secondary {
    border: 2px solid currentColor;
}

/* Navigation Arrows */
.otterwp-sc-slider .slick-prev,
.otterwp-sc-slider .slick-next {
    position: absolute;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.3);
    color: #fff;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    padding: 0;
}

.otterwp-sc-slider .slick-prev:hover,
.otterwp-sc-slider .slick-next:hover {
    background: rgba(0, 0, 0, 0.6);
    transform: scale(1.1);
}

.otterwp-sc-slider .slick-prev {
    left: 20px;
}

.otterwp-sc-slider .slick-next {
    right: 20px;
}

.otterwp-sc-slider .slick-prev:before,
.otterwp-sc-slider .slick-next:before {
    content: none;
}

.otterwp-sc-slider .slick-prev svg,
.otterwp-sc-slider .slick-next svg {
    width: 24px;
    height: 24px;
}

/* Navigation Dots */
.otterwp-sc-slider .slick-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 100;
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex !important;
    gap: 12px;
}

.otterwp-sc-slider .slick-dots li {
    margin: 0;
}

.otterwp-sc-slider .slick-dots li button {
    width: 12px;
    height: 12px;
    padding: 0;
    border: none;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    color: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0;
}

.otterwp-sc-slider .slick-dots li button:hover {
    background: rgba(255, 255, 255, 0.8);
}

.otterwp-sc-slider .slick-dots li button:before {
    content: none;
}

.otterwp-sc-slider .slick-dots li.slick-active button {
    background: #fff;
    width: 36px;
    border-radius: 10px;
}

/* Animations */
.otterwp-sc-animated {
    opacity: 0;
}

.slick-active .otterwp-sc-animated {
    animation-duration: 0.8s;
    animation-fill-mode: both;
}

.slick-active .otterwp-sc-animated[data-animation="fade-in"] {
    animation-name: otterwpFadeIn;
}

.slick-active .otterwp-sc-animated[data-animation="slide-up"] {
    animation-name: otterwpSlideUp;
}

.slick-active .otterwp-sc-animated[data-animation="slide-left"] {
    animation-name: otterwpSlideLeft;
}

.slick-active .otterwp-sc-animated[data-animation="slide-right"] {
    animation-name: otterwpSlideRight;
}

.slick-active .otterwp-sc-animated[data-animation="zoom-in"] {
    animation-name: otterwpZoomIn;
}

@keyframes otterwpFadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes otterwpSlideUp {
    from { opacity: 0; transform: translateY(40px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes otterwpSlideLeft {
    from { opacity: 0; transform: translateX(-40px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes otterwpSlideRight {
    from { opacity: 0; transform: translateX(40px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes otterwpZoomIn {
    from { opacity: 0; transform: scale(0.8); }
    to { opacity: 1; transform: scale(1); }
}

/* Multi-column Layouts */
.otterwp-sc-content.otterwp-sc-layout-image-text,
.otterwp-sc-content.otterwp-sc-layout-text-image {
    flex-direction: row !important;
}

/* Separator */
.otterwp-sc-separator {
    flex-shrink: 0;
}

@media (max-width: 768px) {
    .otterwp-sc-separator {
        margin: 4px auto !important;
    }
}

.otterwp-sc-col {
    flex: 1;
    min-width: 0;
}

.otterwp-sc-col-text {
    display: flex;
    flex-direction: column;
}

.otterwp-sc-col-image {
    display: flex;
    flex-direction: column;
}

.otterwp-sc-content-img {
    max-width: 100%;
    height: auto;
    border-radius: 4px;
    display: block;
}

/* Responsive */
@media (max-width: 1024px) {
    .otterwp-sc-content {
        padding: 30px 40px;
    }
}

@media (max-width: 768px) {
    .otterwp-sc-slider {
        height: auto !important;
        min-height: 280px;
    }

    .otterwp-sc-slider .slick-list,
    .otterwp-sc-slider .slick-track {
        height: auto !important;
        min-height: inherit;
    }

    .otterwp-sc-slider .slick-slide,
    .otterwp-sc-slider .slick-slide > div {
        height: auto !important;
    }

    .otterwp-sc-slide {
        height: auto !important;
        min-height: 280px;
    }

    .otterwp-sc-content.otterwp-sc-layout-image-text,
    .otterwp-sc-content.otterwp-sc-layout-text-image {
        flex-direction: column !important;
    }

    .otterwp-sc-col {
        width: 100%;
    }

    .otterwp-sc-col-image {
        width: 100% !important;
    }

    .otterwp-sc-content-img {
        max-height: 250px;
        object-fit: contain;
    }

    .otterwp-sc-col-text {
        text-align: center;
        align-items: center;
    }

    .otterwp-sc-content {
        padding: 16px 20px;
    }

    .otterwp-sc-slider .slick-prev {
        left: 10px;
        width: 40px;
        height: 40px;
    }

    .otterwp-sc-slider .slick-next {
        right: 10px;
        width: 40px;
        height: 40px;
    }

    .otterwp-sc-slider .slick-prev svg,
    .otterwp-sc-slider .slick-next svg {
        width: 20px;
        height: 20px;
    }

    .otterwp-sc-slider .slick-dots {
        bottom: 15px;
        gap: 8px;
    }

    .otterwp-sc-slider .slick-dots li button {
        width: 10px;
        height: 10px;
    }

    .otterwp-sc-slider .slick-dots li.slick-active button {
        width: 28px;
    }

    .otterwp-sc-btn {
        padding: 10px 20px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .otterwp-sc-content {
        padding: 12px 16px;
    }

    .otterwp-sc-buttons {
        flex-direction: column;
        width: 100%;
    }

    .otterwp-sc-btn {
        width: 100%;
        text-align: center;
    }

    .otterwp-sc-wrapper.otterwp-sc-fullwidth {
        width: 100%;
        margin-left: 0;
    }

    .otterwp-sc-slider .slick-prev,
    .otterwp-sc-slider .slick-next {
        width: 34px;
        height: 34px;
    }

    .otterwp-sc-slider .slick-prev svg,
    .otterwp-sc-slider .slick-next svg {
        width: 16px;
        height: 16px;
    }

    .otterwp-sc-slider .slick-dots {
        bottom: 10px;
        gap: 6px;
    }
}
