/* Owl Carousel */
.owl-carousel {
    display: flex;
    width: 100%;
}

.owl-carousel .owl-stage {
    display: flex;
    width: 100%;
}

.owl-carousel .owl-item {
    flex: 1;
    min-height: 1px;
    padding: 0 10px;
}

.owl-carousel .owl-item > div {
    width: 100%;
}

.owl-dots {
    text-align: center;
    margin-top: 20px;
}

.owl-dot {
    display: inline-block;
    width: 12px;
    height: 12px;
    margin: 0 5px;
    background: #ccc;
    border-radius: 50%;
    cursor: pointer;
    transition: background 0.3s;
}

.owl-dot.active {
    background: #d4a574;
}

.owl-nav {
    text-align: center;
    margin-top: 20px;
}

.owl-prev, .owl-next {
    padding: 5px 15px;
    margin: 0 5px;
    background: #f5f5f5;
    border: 1px solid #ddd;
    cursor: pointer;
    transition: 0.3s;
}

.owl-prev:hover, .owl-next:hover {
    background: #d4a574;
    color: #fff;
    border-color: #d4a574;
}
