/* Override photo background for private dining */
.pd-photo__bg {
    background-image: url('../assets/images/home/food.jpg') !important;
    background-position: center 40%;
}

/* Notice banner */
.pd-notice {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    background: rgba(216,164,63,.08);
    border: 1.5px solid rgba(216,164,63,.3);
    border-radius: 13px;
    padding: 16px 18px;
    margin-bottom: 28px;
}

.pd-notice__icon {
    flex-shrink: 0;
    color: #d8a43f;
    margin-top: 1px;
}
.pd-notice__icon svg {
    width: 20px;
    height: 20px;
    stroke: currentColor;
}

.pd-notice__text {
    font-family: var(--font-ui);
    font-size: 14px;
    line-height: 1.6;
    color: #666;
}
.pd-notice__text strong {
    color: #c8941f;
    font-weight: 600;
}

/* Comment textarea — same as reservation */
#pdComment {
    width: 100%;
    padding: 16px 18px;
    border: 1.5px solid #e8e8e8;
    border-radius: 13px;
    background: white;
    font-family: var(--font-ui);
    font-size: 15px;
    color: #1a1a1a;
    resize: none;
    overflow: hidden;
    min-height: 80px;
    transition: border-color .2s, box-shadow .2s;
    box-sizing: border-box;
    margin-bottom: 28px;
}
#pdComment::placeholder { color: #ccc; }
#pdComment:focus {
    outline: none;
    border-color: #d8a43f;
    box-shadow: 0 0 0 4px rgba(216,164,63,.1);
}

/* Submit button */
#pdSubmitBtn {
    width: 100%;
    height: 60px;
    border: none;
    border-radius: 13px;
    background: #1a1a1a;
    color: white;
    font-family: var(--font-ui);
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.05em;
    cursor: pointer;
    transition: background .2s, transform .2s;
}
#pdSubmitBtn:hover {
    background: #d8a43f;
    transform: translateY(-2px);
}
