        
        .option-group {
            margin-bottom: 30px;
        }
        
        .option-label {
            display: block;
            margin-bottom: 15px;
            color: #555;
            font-weight: 600;
            font-size: 16px;
        }
        
        .options {
            display: flex;
            gap: 10px;
            flex-wrap: wrap;
            margin-top: 10px;
        }
        
        .option-btn {
    flex: 1;
    min-width: 100px;
    padding: 12px 20px;
    border: 2px solid #284c40;
    background: #e3c68c;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 14px;
    font-weight: 500;
    color: #284c40;
        }
        
        .option-btn:hover {
            border-color: #667eea;
            transform: translateY(-2px);
        }
        
        .option-btn.active {
            background: #284c40;
            color: #e3c68c;
        }
        
        .price-display {
    background: linear-gradient(135deg, #5d8175 0%, #284c40 100%);
    padding: 25px;
    border-radius: 15px;
    margin: 30px 0;
    color: white;
        }
        
        .price-row {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 15px;
        }
        
        .price-row:last-child {
            margin-bottom: 0;
            padding-top: 15px;
            border-top: 2px solid rgba(255,255,255,0.3);
        }
        
        .price-label {
            font-size: 16px;
            font-weight: 500;
        }
        
        .price-value {
            font-size: 16px;
            font-weight: 700;
        }

.modal-submit-btn-greenhouse  {
    width: 100%;
    padding: 15px;
    background: linear-gradient(135deg, #284c40 0%, #284c40 100%);
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s 
ease;
        }

        .modal-submit-btn-greenhouse:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 20px rgba(102, 126, 234, 0.4);
        }




.submit-btn-greenhouse  {
    width: 100%;
    padding: 15px;
    background: linear-gradient(135deg, #284c40 0%, #284c40 100%);
    color: #e3c68c;
    border: none;
    border-radius: 10px;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s 
ease;
        }


        .submit-btn-greenhouse:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 20px rgba(102, 126, 234, 0.4);
        }

        
        .submit-btn {
    width: 100%;
    padding: 15px;
    background: linear-gradient(135deg, #284c40 0%, #284c40 100%);
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s 
ease;
        }
        
        .submit-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 20px rgba(102, 126, 234, 0.4);
        }
        
        /* Модальное окно */
        .modal {
            display: none;
            position: fixed;
            z-index: 1000;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0,0,0,0.5);
            animation: fadeIn 0.3s ease;
        }
        
        .modal.show {
            display: flex;
            justify-content: center;
            align-items: center;
        }
        
        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }
        
        .modal-content {
            background: white;
            border-radius: 20px;
            padding: 40px;
            max-width: 450px;
            width: 90%;
            position: relative;
            animation: slideIn 0.3s ease;
        }
        
        @keyframes slideIn {
            from { 
                transform: translateY(-50px);
                opacity: 0;
            }
            to { 
                transform: translateY(0);
                opacity: 1;
            }
        }

.close-btn-greenhouse {
            position: absolute;
            right: 20px;
            top: 20px;
            font-size: 28px;
            font-weight: bold;
            color: #aaa;
            cursor: pointer;
            transition: color 0.3s;
        }


        .close-btn-greenhouse:hover {
            color: #333;
        }

        
        .close-btn {
            position: absolute;
            right: 20px;
            top: 20px;
            font-size: 28px;
            font-weight: bold;
            color: #aaa;
            cursor: pointer;
            transition: color 0.3s;
        }
        
        .close-btn:hover {
            color: #333;
        }
        
        .modal h2 {
            color: #333;
            margin-bottom: 25px;
            font-size: 24px;
        }
        
        .form-group {
            margin-bottom: 20px;
        }
        
        .form-group label {
            display: block;
            margin-bottom: 8px;
            color: #555;
            font-weight: 600;
            font-size: 14px;
        }
        
        .form-group input {
     width: calc(100% - 30px);
            padding: 12px 15px;
            border: 2px solid #e0e0e0;
            border-radius: 10px;
            font-size: 16px;
            transition: border-color 0.3s;
        }
        
        .form-group input:focus {
            outline: none;
            border-color: #667eea;
        }
        
        .form-group input.error {
            border-color: #f5576c;
        }
        
        .error-message {
            color: #f5576c;
            font-size: 12px;
            margin-top: 5px;
            display: none;
        }
        
        .error-message.show {
            display: block;
        }
        
        .checkbox-group {
            margin: 25px 0;
        }
        
        .checkbox-label {
            display: flex;
            align-items: flex-start;
            cursor: pointer;
            user-select: none;
        }
        
        .checkbox-label input[type="checkbox"] {
            width: 20px;
            height: 20px;
            margin-right: 10px;
            margin-top: 2px;
            cursor: pointer;
            flex-shrink: 0;
        }
        
        .checkbox-text {
            font-size: 13px;
            color: #666;
            line-height: 1.5;
        }
        
        .checkbox-text a {
            color: #667eea;
            text-decoration: none;
        }
        
        .checkbox-text a:hover {
            text-decoration: underline;
        }
        
        .modal-submit-btn {
            width: 100%;
            padding: 15px;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            border: none;
            border-radius: 10px;
            font-size: 18px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .modal-submit-btn:hover:not(:disabled) {
            transform: translateY(-2px);
            box-shadow: 0 10px 20px rgba(102, 126, 234, 0.4);
        }
        
        .modal-submit-btn:disabled {
            opacity: 0.6;
            cursor: not-allowed;
        }
        
        .order-details {
            background: #f8f9fa;
            padding: 15px;
            border-radius: 10px;
            margin-bottom: 25px;
        }
        
        .order-details p {
            margin: 5px 0;
            color: #555;
            font-size: 14px;
        }
        
        .order-details strong {
            color: #333;
        }