/* Main Slider */
.main-slide-wrapper {
    padding: 2rem 0;
    margin-top: 2rem;
    border-top: 1px solid #eee;
}
.main-slider-container {
    position: relative;
    max-width: 100%;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
.main-slider {
    display: flex;
    transition: transform 0.5s ease-in-out;
    height: auto;
}
.main-slide-item {
    min-width: 100%;
    box-sizing: border-box;
    display: none;
}
.main-slide-item.active {
    display: block;
}
.main-slide-item img {
    width: 100%;
    height: auto;
    display: block;
}
/* Main Slider Navigation Arrows */
.main-slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s;
}
.main-slider-arrow:hover {
    background: rgba(0, 0, 0, 0.8);
}
.main-prev-arrow {
    left: 10px;
}
.main-next-arrow {
    right: 10px;
}
/* Main Slider Dots */
.main-slider-dots {
    display: flex;
    justify-content: center;
    margin-top: 1rem;
}
.main-dot {
    width: 12px;
    height: 12px;
    background: #ccc;
    border-radius: 50%;
    margin: 0 5px;
    cursor: pointer;
    transition: background 0.3s;
}
.main-dot.active {
    background: #333;
}

/* Sidebar Slider */
.sidebar-slide-wrapper {
    margin-bottom: 1.5em;
}
.sidebar-slider-container {
    position: relative;
    max-width: 100%;
    overflow: hidden;
    border-radius: 6px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
.sidebar-slider {
    display: flex;
    transition: transform 0.5s ease-in-out;
}
.sidebar-slide-item {
    min-width: 100%;
    box-sizing: border-box;
    display: none;
}
.sidebar-slide-item.active {
    display: block;
}
.sidebar-slide-item img {
    width: 100%;
    height: auto;
    display: block;
}
/* Sidebar Navigation Arrows */
.sidebar-slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s;
}
.sidebar-slider-arrow:hover {
    background: rgba(0, 0, 0, 0.8);
}
.sidebar-prev-arrow {
    left: 5px;
}
.sidebar-next-arrow {
    right: 5px;
}
/* Sidebar Dots */
.sidebar-slider-dots {
    display: flex;
    justify-content: center;
    margin-top: 0.75rem;
}
.sidebar-dot {
    width: 8px;
    height: 8px;
    background: #ccc;
    border-radius: 50%;
    margin: 0 3px;
    cursor: pointer;
    transition: background 0.3s;
}
.sidebar-dot.active {
    background: #333;
}