/**
 * Rubikto Pro Frontend Styles
 */

/* General Styles */
.rubikto-pro-widget {
    margin-bottom: 20px;
}

/* Font Manager Styles */
.hep-primary-font {
    font-family: var(--hep-primary-font, inherit);
}

.hep-secondary-font {
    font-family: var(--hep-secondary-font, inherit);
}

.hep-body-font {
    font-family: var(--hep-body-font, inherit);
}

/* Template Styles */
.hep-template-section {
    padding: 50px 0;
}

.hep-template-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Widget Styles */
.hep-widget-title {
    margin-bottom: 20px;
    font-size: 24px;
    font-weight: 600;
}

.hep-widget-content {
    line-height: 1.6;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .hep-template-section {
        padding: 30px 0;
    }
    
    .hep-widget-title {
        font-size: 20px;
    }
}

/* Swiper Integration Styles */
.swiper-container {
    width: 100%;
    height: 100%;
}

.swiper-slide {
    text-align: center;
    font-size: 18px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.swiper-button-next,
.swiper-button-prev {
    color: #0073aa;
}

.swiper-pagination-bullet {
    background: #0073aa;
}

.swiper-pagination-bullet-active {
    background: #0073aa;
}

/* Rubikto Pro Swiper Widgets */
.rubikto-pro-swiper {
    position: relative;
}

.rubikto-pro-swiper .swiper-slide {
    background: transparent;
}

.rubikto-pro-swiper .swiper-button-next,
.rubikto-pro-swiper .swiper-button-prev {
    background: rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    margin-top: -20px;
}

.rubikto-pro-swiper .swiper-button-next:after,
.rubikto-pro-swiper .swiper-button-prev:after {
    font-size: 16px;
    color: #333;
} 