/* ===== УНИКАЛЬНЫЙ СТИЛЬ ДЛЯ ТОФУ ===== */
:root {
    --tofu-primary: #2a5f3a;
    --tofu-light: #e8f0e5;
    --tofu-accent: #8b9b6e;
}

/* Переопределяем цвета для тофу */
.section-title {
    color: var(--tofu-primary);
}

.btn, .inline-btn, .btn-max {
    background-color: var(--tofu-primary);
}

.btn:hover, .inline-btn:hover, .btn-max:hover {
    background-color: #1e452a;
}

.max-link {
    color: var(--tofu-primary);
}

.max-link:hover {
    border-bottom-color: var(--tofu-primary);
}

/* Селектор веса */
.weight-selector {
    background-color: #f0eee9;
    border-radius: 60px;
    padding: 4px;
    display: inline-flex;
    margin-bottom: 20px;
}

.weight-label {
    padding: 10px 25px;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.2s;
    font-weight: 500;
    user-select: none;
    color: #1e3c2c;
}

.weight-label.active {
    background-color: var(--tofu-primary);
    color: white;
}

.weight-label input {
    display: none;
}

/* Список характеристик */
.feature-list {
    background-color: var(--tofu-light);
    border-radius: 24px;
    padding: 20px;
    margin: 20px 0;
}

.feature-list ul {
    list-style: none;
    margin-top: 10px;
}

.feature-list li {
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.feature-list li:before {
    content: "✓";
    color: var(--tofu-primary);
    font-weight: bold;
    margin-right: 8px;
}

/* Аккордеон рецептов */
.recipe-header.active {
    border-left: 4px solid var(--tofu-primary);
}

/* Карточка товара */
.product-image-container {
    background: linear-gradient(145deg, #ffffff, #f5f3ee);
    border-radius: 32px;
    padding: 20px;
}

.product-highlight {
    background: linear-gradient(145deg, #ffffff, #f5f3ee);
    border-radius: 48px;
    padding: 40px;
}

/* Кнопка в MAX */
.max-link {
    color: var(--tofu-primary);
    border-bottom-color: #bdd1bd;
}

/* Плавающая кнопка */
.floating-cart {
    position: fixed;
    bottom: 90px;
    right: 20px;
    background: var(--tofu-primary);
    color: white;
    width: 56px;
    height: 56px;
    border-radius: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: 0 4px 15px rgba(42, 95, 58, 0.3);
    text-decoration: none;
    z-index: 99;
    transition: transform 0.2s;
}

.floating-cart:active {
    transform: scale(0.9);
}

@media (min-width: 768px) {
    .floating-cart {
        bottom: 30px;
    }
}