/* ================= SED SUPER SLIDER ================= */

.sed-super-slider {
    position: relative;
    width: 100%;
    overflow: hidden;
    font-family: Arial, sans-serif;
}

.sed-super-slider-slides {
    display: flex;
}

.sed-super-slider-slide {
    min-width: 100%;
    position: relative;
}

.sed-super-slider-slide img {
    width: 100%;
    height: auto;
    display: block;
}

/* ================= TITLE ================= */

.sed-super-slider-title {
    position: absolute;
    color: #fff;
    font-size: 2rem;
    opacity: 0;
    pointer-events: none;
}

/* ================= ANIMATIONS ================= */

.sed-super-slider-title.bottom-top.active {
    animation: sedSuperBottomTop 0.6s ease forwards;
}

.sed-super-slider-title.fade.active {
    animation: sedSuperFadeIn 0.6s ease forwards;
}

.sed-super-slider-title.left-right.active {
    animation: sedSuperLeftRight 0.6s ease forwards;
}

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

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

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

/* ================= POSITION SYSTEM ================= */

.sed-super-slider-pos-bottom-left {
    bottom: 30px;
    left: 30px;
}

.sed-super-slider-pos-bottom-right {
    bottom: 30px;
    right: 30px;
    left: auto;
    text-align: right;
}

.sed-super-slider-pos-top-left {
    top: 30px;
    left: 30px;
    bottom: auto;
}

.sed-super-slider-pos-top-right {
    top: 30px;
    right: 30px;
    bottom: auto;
    left: auto;
    text-align: right;
}

.sed-super-slider-pos-top-center {
    top: 30px;
    left: 50%;
    transform: translateX(-50%);
    bottom: auto;
    text-align: center;
}

.sed-super-slider-pos-bottom-center {
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
}

.sed-super-slider-pos-center {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

/* ================= BUTTONS ================= */

.sed-super-slider-btn-prev,
.sed-super-slider-btn-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.5);
    color: #fff;
    border: none;
    padding: 12px 16px;
    cursor: pointer;
    font-size: 18px;
    z-index: 10;
}

.sed-super-slider-btn-prev { left: 15px; }
.sed-super-slider-btn-next { right: 15px; }

/* ================= DOTS ================= */

.sed-super-slider-dots {
    position: absolute;
    bottom: 15px;
    width: 100%;
    text-align: center;
    z-index: 10;
}

.sed-super-slider-dots span {
    display: inline-block;
    width: 12px;
    height: 12px;
    margin: 5px;
    background: #fff;
    border-radius: 50%;
    opacity: 0.5;
    cursor: pointer;
}

.sed-super-slider-dots span.active {
    opacity: 1;
    background: red;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 768px) {
    .sed-super-slider-title {
        font-size: 1.3rem;
    }

    .sed-super-slider-btn-prev,
    .sed-super-slider-btn-next {
        padding: 8px 10px;
        font-size: 14px;
    }
}