/* iBooking Offerings – Theme presets */
/* Apply via shortcode: [ib_offerings theme="glass|gradient|minimal|dark" ...] */

/* Glass */
.theme-glass .iboff-offerings, .theme-glass .iboff-offerings-group {
  --glass-bg: rgba(255,255,255,.08);
  --glass-brd: rgba(255,255,255,.18);
  --glass-hov: rgba(255,255,255,.14);
}
.theme-glass .iboff-offerings.iboff-layout-grid {
  display:grid; grid-template-columns:repeat(auto-fit,minmax(240px,1fr)); gap:16px;
}
.theme-glass .iboff-studio { margin-bottom:28px; }
.theme-glass .iboff-studio-title { font-size:1.35rem; font-weight:700; margin:0 0 10px; }
.theme-glass .iboff-offering { background: var(--glass-bg); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px); border:1px solid var(--glass-brd); border-radius:14px; padding:18px; box-shadow:0 8px 24px rgba(0,0,0,.12); transition:transform .2s ease, background .2s ease, box-shadow .2s ease; }
.theme-glass .iboff-offering:hover { transform:translateY(-4px); background: var(--glass-hov); box-shadow:0 14px 32px rgba(0,0,0,.18); }
.theme-glass .iboff-offering-title { margin:0 0 8px; font-size:1.1rem; }
.theme-glass .iboff-offering-price { font-weight:700; color:#16a34a; margin-bottom:8px; }
.theme-glass .iboff-offering-description { color:#6b7280; }

/* Gradient */
.theme-gradient .iboff-offerings.iboff-layout-grid {
  display:grid; grid-template-columns:repeat(auto-fit,minmax(260px,1fr)); gap:18px;
}
.theme-gradient .iboff-studio { margin-bottom:30px; }
.theme-gradient .iboff-studio-title { font-size:1.4rem; font-weight:800; margin:0 0 12px; }
.theme-gradient .iboff-offering { border:1px solid #e5e7eb; border-radius:14px; overflow:hidden; background:#fff; box-shadow:0 10px 24px rgba(2,6,23,.06); }
.theme-gradient .iboff-offering-header { padding:16px; color:#fff; background: linear-gradient(135deg,#7c3aed 0%,#06b6d4 100%); }
.theme-gradient .iboff-offering-title { margin:0; font-size:1.1rem; }
.theme-gradient .iboff-offering-price { position:relative; top:-10px; float:right; margin:0 12px 0 0; background:#111827; color:#fff; padding:6px 10px; border-radius:999px; font-weight:700; font-size:.9rem; }
.theme-gradient .iboff-offering-description { padding:14px 16px 18px; color:#4b5563; }
.theme-gradient .iboff-offering-link { display:block; text-decoration:none; color:inherit; }

/* Minimal */
.theme-minimal .iboff-offerings.iboff-layout-list { display:grid; gap:10px; }
.theme-minimal .iboff-offering { display:grid; grid-template-columns:8px 1fr auto; align-items:center; background:#fff; border:1px solid #e5e7eb; border-radius:10px; padding:14px 16px; column-gap:14px; }
.theme-minimal .iboff-offering::before { content:""; width:8px; height:100%; border-radius:8px; background: linear-gradient(180deg,#22c55e,#3b82f6); }
.theme-minimal .iboff-offering-title { margin:0; font-weight:700; }
.theme-minimal .iboff-offering-price { justify-self:end; color:#111827; font-weight:700; }
.theme-minimal .iboff-offering-description { grid-column:2/span 2; color:#6b7280; margin-top:4px; }
.theme-minimal .iboff-studio { margin-bottom:24px; }
.theme-minimal .iboff-studio-title { font-size:1.25rem; margin:0 0 8px; }

/* Dark */
.theme-dark { --bg:#0f172a; --card:#111827; --muted:#9ca3af; --text:#e5e7eb; --accent:#22d3ee; --accent2:#a78bfa; }
.theme-dark .iboff-offerings, .theme-dark .iboff-offerings-group { background:var(--bg); padding:12px; border-radius:14px; }
.theme-dark .iboff-offerings.iboff-layout-grid { display:grid; grid-template-columns:repeat(auto-fit,minmax(240px,1fr)); gap:16px; }
.theme-dark .iboff-studio { margin-bottom:28px; }
.theme-dark .iboff-studio-title { color:var(--text); font-weight:800; }
.theme-dark .iboff-offering { background:var(--card); color:var(--text); border:1px solid rgba(255,255,255,.06); border-radius:14px; padding:16px; box-shadow:0 12px 28px rgba(0,0,0,.35); transition:transform .2s ease, box-shadow .2s; }
.theme-dark .iboff-offering:hover { transform: translateY(-3px); box-shadow:0 16px 36px rgba(0,0,0,.45); }
.theme-dark .iboff-offering-header { padding-bottom:8px; border-bottom:1px solid rgba(255,255,255,.06); }
.theme-dark .iboff-offering-title { margin:0; font-size:1.05rem; }
.theme-dark .iboff-offering-price { margin-top:10px; font-weight:800; background:linear-gradient(90deg,var(--accent),var(--accent2)); -webkit-background-clip:text; background-clip:text; color:transparent; }
.theme-dark .iboff-offering-description { color:var(--muted); }
