/* ================= Add Occasion button ================= */
.giftcase-add-occasion-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #ff9800;
    color: #fff;
    border: 1px solid #ff9800;
    border-radius: 8px;
    padding: 12px 22px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.15s ease;
}
.giftcase-add-occasion-btn:hover {     background: #0000;
    border: 2px solid #ff9902; color:#ff9902; }
.giftcase-add-occasion-plus { font-size: 18px; line-height: 1; }

/* ================= Shared modal chrome (login + add) ================= */
.giftcase-login-modal-inner { max-width: 420px; }
.giftcase-login-modal-body { padding: 24px; display: block; }
.giftcase-login-loading { color: #888; font-size: 14px; }

.giftcase-login-modal-body form { display: flex; flex-direction: column; gap: 14px; }
.giftcase-login-modal-body .form-row,
.giftcase-login-modal-body p { margin: 0; }
.giftcase-login-modal-body label { display: block; font-size: 13px; font-weight: 600; color: #444; margin-bottom: 4px; }
.giftcase-login-modal-body input[type="text"],
.giftcase-login-modal-body input[type="email"],
.giftcase-login-modal-body input[type="password"] {
    width: 100%;
    box-sizing: border-box;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 11px 14px;
    font-size: 14px;
}
.giftcase-login-modal-body button[type="submit"],
.giftcase-login-modal-body .woocommerce-button {
    background: #6b7a2e;
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 12px 18px;
    font-weight: 700;
    cursor: pointer;
    width: 100%;
}
.giftcase-login-modal-body button[type="submit"]:hover,
.giftcase-login-modal-body .woocommerce-button:hover { background: #56611f; }
.giftcase-login-error {
    background: #fdeaea;
    color: #a83232;
    border-radius: 8px;
    padding: 10px 14px;
    font-size: 13px;
    display: none;
}
.giftcase-login-error.is-visible { display: block; }

.giftcase-login-or {
    text-align: center;
    color: #888;
    font-size: 13px;
    margin: 16px 0 !important;
    position: relative;
}
.giftcase-login-or::before, .giftcase-login-or::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 40%;
    height: 1px;
    background: #eee;
}
.giftcase-login-or::before { left: 0; }
.giftcase-login-or::after { right: 0; }
.giftcase-google-btn-wrap { display: flex; justify-content: center; }
.giftcase-login-otp-hint { font-size: 13px; color: #666; margin-bottom: 14px !important; }
.giftcase-login-resend { text-align: center; margin-top: 12px !important; font-size: 13px; }
.giftcase-login-resend a { color: #6b7a2e; text-decoration: underline; cursor: pointer; }

/* ================= Add Occasion popup (simple form) ================= */
.giftcase-add-modal-inner { max-width: 420px; }
.giftcase-add-modal-body { padding: 24px; }

.giftcase-add-modal-error,
.giftcase-add-modal-success {
    display: none;
    border-radius: 8px;
    padding: 10px 14px;
    font-size: 13px;
    margin: 0 0 14px;
}
.giftcase-add-modal-error.is-visible { display: block; background: #fdeaea; color: #a83232; }
.giftcase-add-modal-success.is-visible { display: block; background: #eaf7ea; color: #2f7d32; }

.giftcase-field { margin-bottom: 16px; }
.giftcase-field label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: #444;
    margin-bottom: 6px;
}
.giftcase-field input,
.giftcase-field select {
    width: 100%;
    box-sizing: border-box;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 12px 14px;
    font-size: 14px;
    background: #fff;
    color: #222;
}

.giftcase-save-occasions-btn,
.giftcase-add-another-btn {
    width: 100%;
    background: #276642;
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 14px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.15s ease;
}
.giftcase-save-occasions-btn:hover,
.giftcase-add-another-btn:hover { background: #56611f; }
.giftcase-save-occasions-btn:disabled { background: #bbb; cursor: not-allowed; }

.giftcase-add-another-btn { margin-top: 18px; background: #fff; color: #6b7a2e; border: 1px solid #6b7a2e; }
.giftcase-add-another-btn:hover { background: #6b7a2e; color: #fff; }

#giftcase-inline-occasions-preview .giftcase-occasion-section {
    padding: 0;
    border: none;
    background: none;
}
#giftcase-inline-occasions-preview .giftcase-occasion-title { font-size: 20px; }

/* ================= "My Occasions" wrap ================= */
.giftcase-my-occasions-wrap { margin-top: 24px; }
.giftcase-my-empty,
.giftcase-occasion-empty { color: #77664a; font-size: 14px; }
