/* Стили для калькулятора озеленения */
#landscape-calculator {
    max-width: 600px;
    margin: 0 auto;
    padding: 30px;
    background: #f9f9f9;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

#landscape-calculator input,
#landscape-calculator select {
    width: 100%;
    padding: 12px;
    margin-bottom: 20px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 16px;
}

#landscape-calculator input:focus,
#landscape-calculator select:focus {
    border-color: #76ab21;
    outline: none;
}

#plant-list {
    margin: 20px 0;
    padding: 15px;
    background: white;
    border-radius: 8px;
    max-height: 300px;
    overflow-y: auto;
}

#plant-list label {
    display: flex;
    align-items: center;
    padding: 10px;
    margin: 5px 0;
    background: #f5f5f5;
    border-radius: 6px;
    cursor: pointer;
}

#plant-list input {
    width: auto;
    margin-right: 10px;
    margin-bottom: 0;
}

#total-price {
    font-size: 2rem;
    font-weight: bold;
    text-align: center;
    color: #76ab21;
    margin: 20px 0;
    padding: 15px;
    background: white;
    border-radius: 8px;
}

#add-to-cart-complex {
    width: 100%;
    padding: 15px;
    background: linear-gradient(135deg, #76ab21, #5a8218);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    transition: transform 0.2s;
}

#add-to-cart-complex:hover {
    transform: scale(1.02);
}

/* Quick view modal */
.quick-view-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.8);
    z-index: 10000;
    display: none;
    overflow-y: auto;
}

.quick-view-content {
    position: relative;
    max-width: 900px;
    margin: 50px auto;
    background: white;
    border-radius: 16px;
    padding: 30px;
}

.close-modal {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 30px;
    cursor: pointer;
    color: #999;
}

.close-modal:hover {
    color: #333;
}