/* Kitchen Modal Styles */
.kitchen-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    overflow-y: auto;
}

.kitchen-modal.show {
    display: block;
}

.kitchen-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
}

.kitchen-modal-content {
    position: relative;
    max-width: 700px;
    margin: 50px auto;
    background: #FDFBF8;
    border-radius: 8px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    z-index: 10001;
}

.kitchen-modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: #1C1C1C;
    color: #FDFBF8;
    border: none;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10002;
}

.kitchen-modal-close:hover {
    background: #C4973A;
    color: #1C1C1C;
    transform: rotate(90deg);
}

.kitchen-modal-body {
    padding: 50px 40px 40px;
}

.kitchen-form-header {
    text-align: center;
    margin-bottom: 35px;
}

.kitchen-form-header h3 {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    font-weight: 700;
    color: #1C1C1C;
    margin-bottom: 10px;
}

.kitchen-form-header p {
    font-size: 15px;
    color: #7A7A7A;
    line-height: 1.6;
}

.kitchen-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.kitchen-form-group {
    margin-bottom: 20px;
}

.kitchen-form-group label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: #1C1C1C;
    margin-bottom: 8px;
    letter-spacing: 0.05em;
}

.kitchen-form-group input,
.kitchen-form-group select,
.kitchen-form-group textarea {
    width: 100%;
    padding: 12px 16px;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    color: #1C1C1C;
    background: #F7F4EF;
    border: 1px solid #EDE9E2;
    border-radius: 4px;
    transition: all 0.3s ease;
    outline: none;
}

.kitchen-form-group input:focus,
.kitchen-form-group select:focus,
.kitchen-form-group textarea:focus {
    border-color: #C4973A;
    background: #FDFBF8;
    box-shadow: 0 0 0 3px rgba(196, 151, 58, 0.1);
}

.kitchen-form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.kitchen-form-submit {
    margin-top: 30px;
}

.kitchen-submit-btn {
    width: 100%;
    padding: 16px 32px;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #1C1C1C;
    background: #C4973A;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.kitchen-submit-btn:hover {
    background: #E8C97A;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(196, 151, 58, 0.3);
}

.kitchen-submit-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.kitchen-form-message {
    margin-top: 20px;
    padding: 15px;
    border-radius: 4px;
    font-size: 14px;
    text-align: center;
    display: none;
}

.kitchen-form-message.success {
    display: block;
    background: rgba(138, 158, 138, 0.15);
    color: #8A9E8A;
    border: 1px solid #8A9E8A;
}

.kitchen-form-message.error {
    display: block;
    background: rgba(220, 53, 69, 0.15);
    color: #dc3545;
    border: 1px solid #dc3545;
}

@media (max-width: 768px) {
    .kitchen-modal-content {
        margin: 20px;
        max-width: calc(100% - 40px);
    }

    .kitchen-modal-body {
        padding: 40px 25px 30px;
    }

    .kitchen-form-header h3 {
        font-size: 24px;
    }

    .kitchen-form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
}

@media (max-width: 480px) {
    .kitchen-modal-content {
        margin: 10px;
        max-width: calc(100% - 20px);
    }

    .kitchen-modal-body {
        padding: 35px 20px 25px;
    }

    .kitchen-form-header h3 {
        font-size: 20px;
    }

    .kitchen-modal-close {
        top: 10px;
        right: 10px;
        width: 35px;
        height: 35px;
        font-size: 20px;
    }
}
