/**
 * Frontend Styles for Free Trial
 */

.tft-trial-container {
    margin-bottom: 20px;
}

.tft-trial-option {
    padding: 20px;
    background: #f9f9f9;
    border-radius: 8px;
    text-align: center;
}

.tft-trial-option h4 {
    margin: 0 0 10px 0;
    font-size: 20px;
    color: #333;
}

.tft-trial-description {
    margin: 0 0 15px 0;
    color: #666;
    font-size: 14px;
}

.tft-trial-btn {
    display: inline-block;
    padding: 12px 30px;
    background: #2196F3;
    color: #fff !important;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: background 0.3s ease;
    border: none;
    cursor: pointer;
}

.tft-trial-btn:hover {
    background: #1976D2;
    color: #fff !important;
}

.tft-btn-small {
    padding: 8px 20px;
    font-size: 14px;
}

.tft-btn-medium {
    padding: 12px 30px;
    font-size: 16px;
}

.tft-btn-large {
    padding: 16px 40px;
    font-size: 18px;
}

.tft-separator {
    margin-top: 15px;
    position: relative;
    text-align: center;
}

.tft-separator:before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: #ddd;
}

.tft-separator span {
    display: inline-block;
    background: #f9f9f9;
    padding: 0 15px;
    position: relative;
    color: #999;
    font-size: 13px;
}

.tft-active-trial-notice,
.tft-ended-trial-notice {
    display: flex;
    align-items: flex-start;
    padding: 15px;
    border-radius: 8px;
    gap: 12px;
}

.tft-active-trial-notice {
    background: #E3F2FD;
    border: 1px solid #2196F3;
}

.tft-ended-trial-notice {
    background: #FFF3E0;
    border: 1px solid #FF9800;
}

.tft-notice-icon {
    font-size: 24px;
    line-height: 1;
}

.tft-notice-content {
    flex: 1;
}

.tft-notice-content strong {
    display: block;
    margin-bottom: 5px;
    font-size: 16px;
}

.tft-notice-content p {
    margin: 0;
    color: #666;
    font-size: 14px;
}

.tft-elementor-widget .tft-trial-option {
    background: transparent;
    padding: 0;
}

.tft-elementor-widget .tft-separator span {
    background: #fff;
}

@media (max-width: 768px) {
    .tft-trial-option {
        padding: 15px;
    }
    
    .tft-trial-btn {
        display: block;
        width: 100%;
    }
}
