.owl-carousel-plus {
    position: relative;
}

.owl-carousel-plus-item {
    position: relative;
    background-color: #f5f5f5;
    overflow: hidden;
}

.owl-carousel-plus-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: 1;
}

.owl-carousel-plus-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px;
    text-align: center;
    color: #fff;
    background-color: rgba(0, 0, 0, 0.5);
}

.owl-carousel-plus-title {
    margin: 0 0 15px;
    color: inherit;
}

.owl-carousel-plus-button {
    display: inline-block;
    padding: 10px 20px;
    background-color: #0073aa;
    color: #fff;
    text-decoration: none;
    border-radius: 3px;
    transition: all 0.3s ease;
}

.owl-carousel-plus-button:hover {
    opacity: 0.9;
}

.owl-carousel-plus-add-item {
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    background-color: rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.owl-carousel-plus-add-item:hover {
    background-color: rgba(0, 0, 0, 0.2);
}

.owl-carousel-plus-add-content {
    text-align: center;
}

.owl-carousel-plus-add-icon {
    display: inline-block;
    font-size: 50px;
    font-weight: bold;
    color: #333;
    line-height: 1;
}

/* Owl Carousel Navigation */
.owl-carousel .owl-nav button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.5) !important;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    color: #333 !important;
    font-size: 20px !important;
    line-height: 40px !important;
    text-align: center;
}

.owl-carousel .owl-nav button.owl-prev {
    left: 15px;
}

.owl-carousel .owl-nav button.owl-next {
    right: 15px;
}

.owl-carousel .owl-nav button:hover {
    background: rgba(255, 255, 255, 0.8) !important;
}

/* Owl Carousel Dots */
.owl-carousel .owl-dots {
    text-align: center;
    margin-top: 15px;
}

.owl-carousel .owl-dots button.owl-dot {
    width: 12px;
    height: 12px;
    margin: 0 5px;
    border-radius: 50%;
    background: #ccc !important;
}

.owl-carousel .owl-dots button.owl-dot.active {
    background: #0073aa !important;
}