/* 🔹 Общие настройки сайта */
body {
    font-family: 'Roboto', Arial, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #333333; /* Цвет основного текста */
    background-color: #ffffff; /* Цвет фона сайта */
    margin: 0;
    padding: 0;
}

/* 🔹 Заголовки */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Roboto', Arial, sans-serif;
    font-weight: 700;
    color: #000000; /* Цвет заголовков */
    margin-bottom: 15px;
}

/* 🔹 Ссылки */
a {
    color: #FF0000; /* Фирменный красный */
    text-decoration: none;
    transition: all 0.3s ease;
}
a:hover {
    color: #cc0000; /* Более тёмный оттенок при наведении */
    text-decoration: underline;
}

/* 🔹 Кнопки */
.t-btn {
    background-color: #FF0000; /* Фирменный красный */
    color: #ffffff;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    border: none;
    transition: all 0.3s ease;
}
.t-btn:hover {
    background-color: #cc0000;
    transform: scale(1.05);
}

/* 🔹 Карточки (общий стиль для блоков) */
.card {
    background: #ffffff;
    border: 1px solid #e5e5e5;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    padding: 20px;
    transition: all 0.3s ease;
}
.card:hover {
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    transform: translateY(-5px);
}

/* 🔹 Каталог продукции */
.product-card {
    background: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}
.product-card img {
    max-width: 100%;
    border-radius: 8px;
    margin-bottom: 15px;
}
.product-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
}
.product-card p {
    font-size: 14px;
    color: #555555;
    margin-bottom: 15px;
}
.product-card .price {
    font-size: 18px;
    font-weight: 700;
    color: #FF0000;
    margin-bottom: 15px;
}
.product-card button, .product-card .t-btn {
    background-color: #FF0000;
    color: #ffffff;
    padding: 10px 20px;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}
.product-card button:hover, .product-card .t-btn:hover {
    background-color: #cc0000;
    transform: scale(1.05);
}

/* 🔹 Анимация появления элементов */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease forwards;
}
@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* 🔹 Изображения */
img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

/* 🔹 Футер */
.footer {
    background-color: #000000;
    color: #ffffff;
    padding: 40px 20px;
    text-align: center;
    font-size: 14px;
}

/* 🔹 Хедер (шапка сайта) */
.header {
    background-color: #ffffff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    padding: 10px 20px;
}

/* 🔹 Формы */
input[type="text"], input[type="email"], textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 8px;
    margin-bottom: 15px;
    font-size: 14px;
}
input[type="submit"], button[type="submit"] {
    background-color: #FF0000;
    color: #ffffff;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}
input[type="submit"]:hover, button[type="submit"]:hover {
    background-color: #cc0000;
}
