/*
Theme Name: Wescle Child
Theme URI: https://wescle.com/changelog/
Author: wescle.com
Author URI: https://wescle.com
Description: Powerful, Responsive, SEO Optimized WordPress Template Suitable for Any Type of Website from <a href="https://wescle.com">Wescle.com</a> | Contact email: <a href="mailto:info@wescle.com">info@wescle.com</a>
Template: wescle
Version: 1.0.1
Requires at least: 5.4
Requires PHP: 7.3
Text Domain:  wescle_child
Domain Path: /languages
*/

/* BELOW YOU CAN WRITE YOUR CODE */
/* Скрываем хедер и футер только на странице с ID 759 */
body.single-product_wescle.postid-759 header,
body.single-product_wescle.postid-759 footer {
    display: none !important;
}

/* Контейнер формы */
.sr-form-container {
    max-width: 400px;
    margin: 0 auto;
}

/* Блок формы */
.sr-box {
    background-color: #ffffff;
    border: 1px solid #f2f2f2;
    border-radius: 5px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Заголовок формы */
.sr-box h3 {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 15px;
    color: #000000;
}

/* Поле ввода email */
.sr-box input[type="email"] {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #bcbcbc;
    border-radius: 5px;
    font-size: 14px;
    box-sizing: border-box;
}

/* Кнопка отправки */
.sr-box input[type="submit"] {
    background-color: #4352f2;
    color: #ffffff;
    font-size: 16px;
    font-weight: bold;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

/* Ховер эффект для кнопки */
.sr-box input[type="submit"]:hover {
    background-color: #3a46c5;
}