/**
 * Стили для большой кнопки
 */

.wum-button-wrapper {
    margin: 20px 0;
    text-align: center;
}

.wum-button-text-before,
.wum-button-text-after {
    margin: 15px 0;
    line-height: 1.8;
    font-size: 16px;
    color: #333;
    text-align: center;
}

.wum-button-text-before {
    margin-bottom: 25px;
    padding: 0 15px;
}

.wum-button-text-after {
    margin-top: 25px;
    padding: 0 15px;
}

.wum-button-text-before p,
.wum-button-text-after p {
    margin: 0 0 12px 0;
    line-height: 1.8;
}

.wum-button-text-before p:last-child,
.wum-button-text-after p:last-child {
    margin-bottom: 0;
}

.wum-button-text-before h1,
.wum-button-text-before h2,
.wum-button-text-before h3,
.wum-button-text-before h4,
.wum-button-text-before h5,
.wum-button-text-before h6,
.wum-button-text-after h1,
.wum-button-text-after h2,
.wum-button-text-after h3,
.wum-button-text-after h4,
.wum-button-text-after h5,
.wum-button-text-after h6 {
    margin: 0 0 15px 0;
    color: #1d2327;
    font-weight: 600;
    line-height: 1.4;
}

.wum-button-text-before a,
.wum-button-text-after a {
    color: #667eea;
    text-decoration: none;
    transition: color 0.3s ease;
}

.wum-button-text-before a:hover,
.wum-button-text-after a:hover {
    color: #764ba2;
    text-decoration: underline;
}

/* Адаптивность */
@media (max-width: 768px) {
    .wum-button-text-before,
    .wum-button-text-after {
        font-size: 15px;
        padding: 0 10px;
    }
    
    .wum-button-text-before {
        margin-bottom: 20px;
    }
    
    .wum-button-text-after {
        margin-top: 20px;
    }
}

.wum-big-button {
    display: inline-block;
    padding: 18px 40px;
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    text-align: center;
    color: #fff !important;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%) !important;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
    position: relative;
    overflow: hidden;
}

.wum-big-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.wum-big-button:hover::before {
    left: 100%;
}

.wum-big-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.5);
    background: linear-gradient(135deg, #764ba2 0%, #667eea 100%);
    color: #fff !important;
}

.wum-big-button:active {
    transform: translateY(0);
    box-shadow: 0 2px 10px rgba(102, 126, 234, 0.4);
    color: #fff !important;
}

.wum-big-button:visited {
    color: #fff !important;
}

.wum-big-button:link {
    color: #fff !important;
}

/* Адаптивность */
@media (max-width: 768px) {
    .wum-big-button {
        padding: 15px 30px;
        font-size: 16px;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
}

