/* --- Кольори на основі #cc6728 --- */

/* Фон сторінки */
body {
    background-color: #FCF8F5;
    color: #333333;
    font-size: 18px;
}

/* Колір меню та футера */
header, footer {
    background-color: #cc6728;
    color: #FFFFFF;
}

/* Кольори для заголовків */
h2, h3, h4, h5, h6 {
    color: #333333;
    text-align: center;
}

h1 {
    color: #FFFFFF;
}

/* Кольори для посилань */
a {
    color: #347799;
}

a:hover {
    color: #E07A38;
}

a:visited {
    color: #805A90;
}

/* Кольори для кнопок */
button,
input[type="submit"],
input[type="button"] {
    background-color: #cc6728;
    color: #FFFFFF;
}

button:hover,
input[type="submit"]:hover,
input[type="button"]:hover {
    background-color: #A6521F;
}

/* Кольори для полів вводу */
input[type="text"],
input[type="email"],
input[type="password"],
input[type="number"],
textarea,
select {
    border-color: #CCCCCC;
    color: #333333;
    background-color: #FFFFFF;
}

/* Кольори для таблиць */
th, td {
    border-color: #E0E0E0;
}

th {
    background-color: #EEEEEE;
    color: #333333;
}

tr:nth-child(even) {
    background-color: #F8F8F8;
}

tr:hover {
    background-color: #F0F0F0;
}

/* Таблиця цін */
.table-price-list {
    margin: 32px auto;
    width: 80%;
    max-width: 700px;
    border-collapse: collapse;
    background: #fff;
    box-shadow: 0 2px 12px rgba(0,0,0,0.07);
}

.table-price-list th, .table-price-list td {
    padding: 14px 18px;
    text-align: center;
    border: 1px solid #E0E0E0;
}

.table-price-list thead {
    background: #cc6728;
}

.table-price-list tbody tr:nth-child(even) {
    background: #F8F8F8;
}

.table-price-list tbody tr:hover {
    background: #F0F0F0;
}

/* Центрування контенту */
.centered-content {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
    width: 100%;
    height: 100%;
}

/* Зображення */
.image {
    text-align: center;
    margin: 20px 0;
}

.image img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Кнопка Buy Now */
.buynow {
    text-align: center;
    padding: 20px 0;
}

.buynow a {
    display: inline-block;
    background: linear-gradient(135deg, #cc6728 0%, #E07A38 100%);
    color: #FFFFFF;
    text-decoration: none;
    padding: 16px 40px;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(204, 103, 40, 0.3);
    border: 2px solid transparent;
}

.buynow a:hover {
    background: linear-gradient(135deg, #A6521F 0%, #cc6728 100%);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(204, 103, 40, 0.4);
    color: #FFFFFF;
    text-decoration: none;
}

.buynow a:active {
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(204, 103, 40, 0.3);
}

/* Contact Form Styles */
.contact-form {
    max-width: 600px;
    margin: 40px auto;
    padding: 40px;
    background: #FFFFFF;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.contact-form h2 {
    text-align: center;
    color: #333333;
    font-size: 2.2rem;
    margin-bottom: 10px;
    font-weight: 600;
}

.contact-description {
    text-align: center;
    color: #666666;
    font-size: 1.1rem;
    margin-bottom: 40px;
    line-height: 1.6;
}

.contact-form__container {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-weight: 600;
    color: #333333;
    font-size: 1rem;
    margin-bottom: 4px;
}

.form-control {
    padding: 16px 20px;
    border: 2px solid #E0E0E0;
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #FFFFFF;
    color: #333333;
    font-family: inherit;
}

.form-control:focus {
    outline: none;
    border-color: #cc6728;
    box-shadow: 0 0 0 3px rgba(204, 103, 40, 0.1);
    transform: translateY(-2px);
}

.form-control::placeholder {
    color: #999999;
}

textarea.form-control {
    resize: vertical;
    min-height: 120px;
    font-family: inherit;
}

.submit-btn {
    background: linear-gradient(135deg, #cc6728 0%, #E07A38 100%);
    color: #FFFFFF;
    border: none;
    border-radius: 12px;
    padding: 16px 32px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 8px;
}

.submit-btn:hover {
    background: linear-gradient(135deg, #A6521F 0%, #cc6728 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(204, 103, 40, 0.3);
}

.submit-btn:active {
    transform: translateY(0);
}

/* Адаптивні стилі */
@media (max-width: 768px) {
    .buynow a {
        padding: 14px 32px;
        font-size: 1.1rem;
    }
    
    body {
        font-size: 16px;
        line-height: 1.5;
    }
    
    h1 {
        font-size: 1.8rem;
        line-height: 1.3;
        text-align: center;
    }
    
    h2 {
        font-size: 1.5rem;
        line-height: 1.3;
    }
    
    h3 {
        font-size: 1.3rem;
        line-height: 1.3;
    }
    
    p {
        font-size: 1rem;
        line-height: 1.6;
    }
    
    .image img {
        width: 100%;
        max-width: 100%;
        height: auto;
    }
    
    .mobile_view {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        align-items: center;
        width: 100%;
    }
    
    .contact-form {
        margin: 20px;
        padding: 30px 20px;
        border-radius: 12px;
    }
    
    .contact-form h2 {
        font-size: 1.8rem;
    }
    
    .contact-description {
        font-size: 1rem;
        margin-bottom: 30px;
    }
    
    .form-control {
        padding: 14px 16px;
        font-size: 0.95rem;
    }
    
    .submit-btn {
        padding: 14px 24px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .buynow a {
        padding: 12px 28px;
        font-size: 1rem;
        width: 80%;
        max-width: 300px;
    }
    
    body {
        font-size: 15px;
        line-height: 1.4;
    }
    
    h1 {
        font-size: 1.6rem;
        line-height: 1.2;
        text-align: center;
    }
    
    h2 {
        font-size: 1.4rem;
        line-height: 1.2;
    }
    
    h3 {
        font-size: 1.2rem;
        line-height: 1.2;
    }
    
    p {
        font-size: 0.95rem;
        line-height: 1.5;
    }
    
    .image img {
        width: 100%;
        max-width: 100%;
        height: auto;
    }
    
    .mobile_view {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        align-items: center;
        width: 100%;
        gap: 15px;
    }
    
    .banner__center {
        position: static;
        transform: none;
        top: auto;
        left: auto;
    }
    
    .contact-form {
        margin: 15px;
        padding: 25px 15px;
    }
    
    .contact-form h2 {
        font-size: 1.6rem;
    }
    
    .contact-description {
        font-size: 0.95rem;
    }
    
    .form-control {
        font-size: 16px;
    }
}

