/* Pickup Form */
.sof-wrap { max-width: 480px; margin: 30px auto; }
.sof-field { margin-bottom: 16px; display: flex; flex-direction: column; gap: 6px; }
.sof-field label { font-weight: 600; }
.sof-field input { padding: 10px; border: 1px solid #ccc; border-radius: 6px; font-size: 15px; }
#sof-proceed-btn {
    background: #009a44; color: #fff; border: none;
    padding: 12px 28px; border-radius: 6px; font-size: 16px; cursor: pointer; width: 100%;
}
#sof-proceed-btn:hover { background: #007a35; }

/* Overlay */
#sof-overlay {
    display: none; position: fixed; inset: 0;
    background: rgba(0,0,0,.55); z-index: 999;
}

/* Popup */
#sof-popup {
    display: none; position: fixed; top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    background: #fff; border-radius: 10px; padding: 28px;
    width: 90%; max-width: 620px; max-height: 85vh;
    overflow-y: auto; z-index: 1000; box-shadow: 0 8px 32px rgba(0,0,0,.2);
}
#sof-popup h2 { margin: 0 0 20px; font-size: 20px; }
#sof-close {
    position: absolute; top: 14px; right: 18px;
    background: none; border: none; font-size: 24px; cursor: pointer; color: #555;
}

/* Items grid */
.sof-items { display: flex; gap: 16px; flex-wrap: wrap; }
.sof-item {
    flex: 1 1 200px; border: 2px solid #eee; border-radius: 8px;
    padding: 14px; text-align: center; cursor: pointer; transition: border-color .2s;
}
.sof-item:hover { border-color: #009a44; }
.sof-item img { width: 100%; height: 130px; object-fit: cover; border-radius: 6px; }
.sof-item p { font-weight: 600; margin: 0 0 8px; }
.sof-item-title { font-weight: 700; font-size: 15px; margin: 0 0 8px; }

/* Quantity */
.sof-qty-wrap { display: flex; align-items: center; justify-content: center; gap: 8px; margin-top: 8px; }
.sof-qty-btn {
    width: 30px; height: 30px; border-radius: 50%; border: 2px solid #009a44;
    background: #fff; color: #009a44; font-size: 18px; cursor: pointer; line-height: 1;
}
.sof-qty-btn:hover { background: #009a44; color: #fff; }
.sof-qty { width: 44px; text-align: center; border: 1px solid #ccc; border-radius: 4px; padding: 4px; font-size: 15px; }

/* Options panel */
.sof-options { margin-top: 14px; text-align: left; border-top: 1px solid #eee; padding-top: 12px; }
.sof-options label { display: block; margin-bottom: 8px; font-size: 14px; cursor: pointer; }
.sof-options input[type="checkbox"] { margin-right: 6px; accent-color: #009a44; }
.sof-opt-label { font-weight: 600; margin: 10px 0 6px; font-size: 14px; }
.sof-special { font-weight: 600; margin: 12px 0 4px; display: block; font-size: 14px; }
.sof-options textarea {
    width: 100%; border: 1px solid #ccc; border-radius: 6px;
    padding: 8px; font-size: 14px; resize: vertical; box-sizing: border-box;
}

/* Submit */
#sof-submit {
    margin-top: 22px; width: 100%; background: #009a44; color: #fff;
    border: none; padding: 13px; border-radius: 6px; font-size: 16px; cursor: pointer;
}
#sof-submit:hover { background: #007a35; }
#sof-msg { text-align: center; margin-top: 10px; font-weight: 600; color: #009a44; }
