/* Gift shop/profile gift system */
.profile-gifts-card { overflow: hidden; }
.profile-gifts-head { display: flex; justify-content: space-between; align-items: center; gap: 12px; margin-bottom: 14px; }
.profile-gifts-head h3 { margin: 0; font-size: 22px; }
.profile-gifts-head p { margin: 3px 0 0; color: #64748b; }
.gift-send-open-btn,
.gift-send-submit,
.gift-admin-form button,
.gift-admin-row button,
.gift-admin-link { border: 0; border-radius: 999px; background: linear-gradient(135deg, #7c3aed, #f43f5e); color: #fff; font-weight: 900; padding: 10px 15px; cursor: pointer; text-decoration: none; display: inline-flex; align-items: center; justify-content: center; gap: 6px; box-shadow: 0 12px 28px rgba(124,58,237,.2); }
.profile-gifts-strip { display: grid; grid-auto-flow: column; grid-auto-columns: minmax(150px, 190px); gap: 12px; overflow-x: auto; padding-bottom: 8px; scroll-snap-type: x mandatory; }
.profile-gift-tile { scroll-snap-align: start; background: linear-gradient(180deg, #fff, #f8fafc); border: 1px solid #e2e8f0; border-radius: 20px; padding: 12px; box-shadow: 0 10px 26px rgba(15,23,42,.08); }
.profile-gift-tile img { width: 72px; height: 72px; object-fit: contain; display: block; margin: 0 auto 8px; }
.profile-gift-tile strong { display: block; text-align: center; }
.profile-gift-tile small,
.profile-gift-tile em { display: block; text-align: center; color: #64748b; font-size: 12px; }
.profile-gifts-empty { padding: 18px; border-radius: 16px; background: #f8fafc; color: #64748b; }
.gift-send-modal.hidden { display: none !important; }
.gift-send-modal { position: fixed; inset: 0; z-index: 99991; display: grid; place-items: center; padding: 18px; }
.gift-send-backdrop { position: absolute; inset: 0; background: rgba(15,23,42,.72); backdrop-filter: blur(10px); }
.gift-send-dialog { position: relative; width: min(720px, 96vw); max-height: 86dvh; overflow: auto; background: #fff; border-radius: 28px; padding: 18px; box-shadow: 0 28px 80px rgba(0,0,0,.32); }
.gift-send-head { display: flex; justify-content: space-between; align-items: center; gap: 10px; margin-bottom: 12px; }
.gift-send-head h2 { margin: 0; }
.gift-send-head p { margin: 4px 0 0; color: #64748b; }
.gift-send-head button { border: 0; width: 40px; height: 40px; border-radius: 999px; background: #f1f5f9; font-size: 24px; cursor: pointer; }
.gift-send-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(110px, 1fr)); gap: 10px; }
.gift-choice { border: 2px solid #e2e8f0; border-radius: 18px; background: #fff; padding: 10px; cursor: pointer; display: grid; gap: 6px; place-items: center; }
.gift-choice.is-selected { border-color: #7c3aed; box-shadow: 0 0 0 4px rgba(124,58,237,.13); }
.gift-choice img { width: 72px; height: 72px; object-fit: contain; }
.gift-choice small { color: #64748b; }
.gift-send-dialog textarea { width: 100%; min-height: 78px; margin: 12px 0; border: 1px solid #cbd5e1; border-radius: 16px; padding: 12px; resize: vertical; }
.gift-send-submit:disabled { opacity: .45; cursor: not-allowed; }
.gift-send-status { margin-top: 8px; font-weight: 800; color: #7c3aed; }
.gift-admin-card { max-width: 980px; margin: 18px auto; }
.gift-admin-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 12px; }
.gift-admin-form label { display: grid; gap: 6px; font-weight: 800; }
.gift-admin-form input,
.gift-admin-form textarea { border: 1px solid #cbd5e1; border-radius: 12px; padding: 10px; }
.gift-admin-upload-row { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; margin: 12px 0; }
.gift-admin-upload input { display: none; }
.gift-admin-upload span { display: inline-flex; padding: 10px 14px; border-radius: 999px; background: #111827; color: #fff; cursor: pointer; }
.gift-admin-preview { width: 96px; height: 96px; border-radius: 18px; background: #f1f5f9; display: grid; place-items: center; overflow: hidden; color: #64748b; }
.gift-admin-preview img { width: 100%; height: 100%; object-fit: contain; }
.gift-admin-progress { min-width: 180px; height: 12px; background: #e2e8f0; border-radius: 999px; position: relative; overflow: hidden; }
.gift-admin-progress.hidden { display: none; }
.gift-admin-progress b { display: block; height: 100%; width: 0%; background: #7c3aed; }
.gift-admin-progress span { position: absolute; top: -24px; right: 0; font-size: 12px; }
.gift-admin-list { display: grid; gap: 10px; }
.gift-admin-row { display: grid; grid-template-columns: 72px 1fr auto auto; gap: 10px; align-items: center; padding: 10px; border: 1px solid #e2e8f0; border-radius: 18px; background: #f8fafc; }
.gift-admin-row img { width: 72px; height: 72px; object-fit: contain; }
.gift-admin-mini { display: inline-flex; align-items: center; gap: 6px; margin: 4px; padding: 6px 10px; border-radius: 999px; background: #f8fafc; }
.gift-admin-mini img { width: 28px; height: 28px; object-fit: contain; }
@media (max-width: 720px) {
  .gift-send-modal { padding: 0; }
  .gift-send-dialog { width: 100vw; min-height: 100dvh; max-height: 100dvh; border-radius: 0; }
  .gift-admin-row { grid-template-columns: 56px 1fr; }
  .gift-admin-row button { width: 100%; }
}
