.khorn-slideshow-container {
    width: 100%;
    height: 600px;
    position: relative;
    overflow: hidden;
    background: #000;
}

.khorn-slideshow {
    width: 100%;
    height: 100%;
}

.khorn-slide-image {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.khorn-slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.khorn-slide-content-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    display: flex;
    pointer-events: none;
}

.khorn-slide-content {
    pointer-events: auto;
}

.khorn-slide-subtitle {
    display: block;
    font-size: 1.2rem;
    font-weight: 500;
    color: #fff;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.khorn-slide-title {
    font-size: 4rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 30px;
    line-height: 1.1;
}

.khorn-slide-button {
    margin-top: 20px;
}

.khorn-btn {
    display: inline-block;
    transition: all 0.3s ease;
}

.khorn-btn:hover {
    transform: translateY(-3px);
}

/* Navigation - Closer and Right Positioned */
.swiper-navigation-wrap {
    position: absolute;
    bottom: 60px;
    right: 60px;
    z-index: 10;
    display: flex;
    gap: 10px;
}

.khorn-slideshow .swiper-button-next,
.khorn-slideshow .swiper-button-prev {
    position: static;
    margin-top: 0;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.khorn-slideshow .swiper-button-next:after,
.khorn-slideshow .swiper-button-prev:after {
    display: none;
}

.khorn-slideshow .swiper-button-next i,
.khorn-slideshow .swiper-button-prev i {
    font-size: 20px;
}

.khorn-slideshow .swiper-button-next svg,
.khorn-slideshow .swiper-button-prev svg {
    width: 20px;
    height: auto;
    fill: currentColor;
}

/* Pagination - Bullets */
.khorn-slideshow .swiper-pagination {
    bottom: 30px !important;
    left: 60px !important;
    text-align: left !important;
    width: auto !important;
    z-index: 10;
}

.khorn-slideshow .swiper-pagination-bullet {
    background: #fff;
    opacity: 0.5;
    width: 12px;
    height: 12px;
    margin: 0 5px !important;
}

.khorn-slideshow .swiper-pagination-bullet-active {
    background: var(--primary-color, #02ae9b);
    opacity: 1;
}

@media (max-width: 768px) {
    .khorn-slide-content-wrapper {
        padding: 30px;
    }

    .khorn-slide-title {
        font-size: 2.5rem;
    }

    .swiper-navigation-wrap {
        bottom: 30px;
        right: 30px;
    }

    .khorn-slideshow .swiper-pagination {
        left: 30px !important;
        bottom: 15px !important;
    }
}

/* Page Header Widget */
.khorn-page-header-container {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.khorn-header-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: 1;
}

.khorn-header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
}

.khorn-header-content-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    z-index: 3;
    display: flex;
}

.khorn-header-content {
    width: 100%;
}

.khorn-header-subtitle {
    display: block;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.khorn-header-title {
    margin: 0;
    line-height: 1.2;
}

/* Custom Heading - Vertical Mode */
.khorn-heading-vertical-yes .khorn-heading-title {
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    display: inline-block;
    white-space: nowrap;
}

.khorn-heading-vertical-yes .khorn-custom-heading-wrapper {
    display: flex;
}

.khorn-heading-vertical-yes {
    width: auto !important;
    display: inline-block;
}

/* Heading Absolute Positioning Defaults */
.khorn-heading-abs-yes,
.khorn-heading-vertical-yes {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 10;
}

.khorn-heading-abs-yes .khorn-custom-heading-wrapper,
.khorn-heading-vertical-yes .khorn-custom-heading-wrapper {
    position: static;
}

@media (max-width: 767px) {

    .khorn-heading-vertical-yes,
    .khorn-heading-abs-yes {
        position: relative !important;
        top: auto !important;
        left: auto !important;
        width: 100% !important;
        display: block !important;
    }

    .khorn-heading-vertical-yes .khorn-heading-title {
        writing-mode: horizontal-tb !important;
        transform: none !important;
        white-space: normal !important;
    }
}