/* Start custom CSS for html, class: .elementor-element-eaddb9c */:root {
    --primary-blue: #0056b3;
    --text-dark: #333;
    --bg-light: #f8f9fa;
    --card-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

body {
    font-family: 'Inter', sans-serif; /* Похоже на шрифт Takurra */
    background-color: #fff;
    color: var(--text-dark);
    line-height: 1.6;
}

.product-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

/* Шапка */
.breadcrumb {
    font-size: 14px;
    color: #888;
    margin-bottom: 10px;
}

h1 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 30px;
    color: #000;
}

/* Основной блок */
.main-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
}

.image-card {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    box-shadow: var(--card-shadow);
}

.image-card img {
    max-width: 100%;
    height: auto;
}

.status-badge {
    display: inline-block;
    background: var(--bg-light);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: bold;
    color: var(--primary-blue);
    margin-bottom: 20px;
}

.quick-specs {
    list-style: none;
    padding: 0;
    margin: 25px 0;
}

.quick-specs li {
    padding: 8px 0;
    border-bottom: 1px solid #f0f0f0;
}

.contact-btn {
    background: var(--primary-blue);
    color: white;
    border: none;
    padding: 15px 40px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
}

.contact-btn:hover {
    background: #004494;
}

/* Сетка особенностей */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 60px;
}

.feature-item {
    background: var(--bg-light);
    padding: 30px;
    border-radius: 12px;
    transition: transform 0.3s;
}

.feature-item:hover {
    transform: translateY(-5px);
}

.feature-item .icon {
    font-size: 30px;
    margin-bottom: 15px;
}

/* Таблица */
.specs-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

.specs-table td {
    padding: 15px;
    border-bottom: 1px solid #eee;
}

.specs-table td:first-child {
    font-weight: 600;
    width: 30%;
    color: #666;
}/* End custom CSS */