body {
    font-family: 'TildaSans', Arial, sans-serif;
    margin: 0;
    padding: 0;
    color: #333;
}

.header {
    background-color: rgba(0, 0, 0, 0.5);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 0;
    z-index: 100;
}

/* ... (остальные стили) ... */

.catalog {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

body.loaded .catalog {
    opacity: 1;
    transform: translateY(0);
}

.product-button {
    width: 300px;
    height: 300px;
    background-color: transparent;
    border: none;
    padding: 0;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
	cursor: pointer; /* Добавляем курсор-указатель */
}
/* ... (остальные стили) ... */


.submit-button {
    background-color: #f5914f;
    color: white;
    padding: 15px 30px;
    border: none;
    border-radius: 3px;
    font-size: 1em;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.submit-button:hover {
    background-color: #e08245;
}

.contacts-content {
    text-align: center; /* Центрируем содержимое блока */
}

.contacts-title {
    margin-bottom: 20px; /* Добавляем отступ между заголовком и ссылкой */
}

/* ... (остальные стили) ... */

.product-button img {
    width: 200px; /* Размер изображения внутри кнопки */
    height: 200px;
    object-fit: contain;
}

.button-text {
    position: absolute;
    bottom: 20px;
    width: 100%;
    text-align: center;
    color: black;
    font-weight: bold;
    font-size: 1.2em;
}

/* ... (остальные стили) ... */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.logo img {
    height: 50px;
}

.nav-links {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
}

.nav-links li {
    margin-left: 20px;
}

.nav-links a {
    text-decoration: none;
    color: white;
    font-weight: 600;
}

.hero {
    height: 100vh;
    background-image: url('images/hero-bg.jpg'); /* Замените на ваше изображение */
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-size: 3em;
    margin-bottom: 20px;
}

.hero p {
    font-size: 1.2em;
    max-width: 800px;
    margin: 0 auto 30px;
}

.arrow-down {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 30px;
    border-bottom: 2px solid white;
    border-right: 2px solid white;
    transform: rotate(45deg);
}

.catalog {
    background-color: #f9f9f9;
    padding: 100px 0;
    text-align: center;
}

.catalog-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.catalog h2 {
    font-size: 2.5em;
    margin-bottom: 30px;
}

.product-button {
    background-color: black;
    color: white;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.product-button:hover {
    background-color: #333;
}

.form-section {
    background-image: url('images/form-bg.jpg'); /* Замените на ваше изображение */
    background-size: cover;
    background-position: center;
    padding: 100px 0;
    color: white;
    text-align: center;
    position: relative;
}

.form-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
}

.form-container {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.form-section h2 {
    font-size: 2.5em;
    margin-bottom: 20px;
}

.form-section p {
    font-size: 1.2em;
    margin-bottom: 30px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.contact-form input, .contact-form textarea {
    width: 100%;
    max-width: 400px;
    padding: 15px;
    margin-bottom: 20px;
    border: 1px solid white;
    background-color: transparent;
    color: white;
	
	/* ... (остальные стили) ... */

.product-button {
    width: 200px;
    height: 200px;
    background-color: transparent;
    border: none;
    padding: 0;
    margin: 0 auto;
    display: block;
}

.product-button img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.telegram-link img {
    width: 50px; /* Размер иконки Telegram */
    height: 50px;
}

/* Добавляем в style.css */
.product-description {
    padding: 60px 20px;
    background-color: #fff;
    line-height: 1.6;
}

.description-content {
    max-width: 800px;
    margin: 0 auto;
}

.product-description h2 {
    font-size: 2.2em;
    color: #333;
    margin-bottom: 30px;
    text-align: center;
}

.product-specs {
    padding: 60px 20px;
    background-color: #f9f9f9;
}

.specs-content {
    max-width: 1200px;
    margin: 0 auto;
}

.specs-content h2 {
    font-size: 2.2em;
    text-align: center;
    margin-bottom: 40px;
}

.specs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.specs-group {
    background: white;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.specs-group h3 {
    color: #f5914f;
    margin-bottom: 15px;
    font-size: 1.1em;
}

.specs-group p {
    margin: 8px 0;
    font-size: 0.95em;
}