/* ═══════════════════════════════════════════════
   PROFIL BUILDER — split-screen + public bkp-* styles
   ═══════════════════════════════════════════════ */

/* ── Page override ─────────────────────────────── */
#page-profil {
  padding: 0 !important;
  margin: 0 !important;
  max-width: none !important;   /* remove .page 1380px cap so it fills screen */
  width: 100% !important;
  overflow: hidden;
}
#page-profil.active {
  display: flex;
  flex-direction: column;
}
/* Hide global footer when profil editor is open */
#app:has(#page-profil.active) #app-footer { display: none; }

/* ── Split-screen wrapper ──────────────────────── */
.profil-wrap {
  display: flex;
  width: 100%;
  height: calc(100vh - 52px);
  overflow: hidden;
}

/* ── LEFT: Editor panel ────────────────────────── */
.profil-editor {
  width: 460px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  background: var(--s1);
  border-right: 3px solid var(--np);
  overflow: hidden;
}

.profil-editor-head {
  padding: 16px 20px 13px;
  border-bottom: 1px solid var(--b1);
  background: var(--s1);
  flex-shrink: 0;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
}

.profil-editor-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--t1);
}

.profil-editor-sub {
  font-size: 11px;
  color: var(--t3);
  margin-top: 2px;
}

.profil-editor-body {
  flex: 1;
  overflow-y: auto;
  padding: 14px;
}

/* ── Accordion ─────────────────────────────────── */
.profil-acc {
  border: 1px solid var(--b1);
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 8px;
}

.profil-acc-hdr {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  cursor: pointer;
  background: var(--s1);
  transition: background .15s;
  user-select: none;
}

.profil-acc-hdr:hover { background: var(--s2); }

.profil-acc-ic {
  width: 30px;
  height: 30px;
  border-radius: 8px;
  background: rgba(200,149,90,.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--np);
  flex-shrink: 0;
}

.profil-acc-lbl {
  flex: 1;
  font-size: 13px;
  font-weight: 600;
  color: var(--t1);
}

.profil-acc-chev {
  color: var(--t3);
  transition: transform .2s;
  flex-shrink: 0;
}

.profil-acc.open .profil-acc-chev { transform: rotate(180deg); }

.profil-acc-body {
  display: none;
  padding: 13px 14px 15px;
  background: var(--s2);
  border-top: 1px solid var(--b1);
}

.profil-acc.open .profil-acc-body { display: block; }

/* ── Fields ────────────────────────────────────── */
.profil-field { margin-bottom: 11px; }
.profil-field:last-child { margin-bottom: 0; }

.profil-field-label {
  font-size: 10.5px;
  font-weight: 700;
  color: var(--t2);
  text-transform: uppercase;
  letter-spacing: .04em;
  margin-bottom: 5px;
  display: flex;
  align-items: center;
  gap: 5px;
}

.profil-field-hint {
  font-size: 10px;
  font-weight: 400;
  color: var(--t3);
  text-transform: none;
  letter-spacing: 0;
}

.profil-input {
  width: 100%;
  box-sizing: border-box;
  background: var(--s1);
  border: 1.5px solid var(--b1);
  border-radius: 8px;
  padding: 8px 10px;
  font-size: 12.5px;
  color: var(--t1);
  font-family: var(--font);
  outline: none;
  transition: border-color .15s;
}

.profil-input:focus { border-color: var(--np); }

textarea.profil-input {
  resize: vertical;
  min-height: 72px;
  line-height: 1.6;
}

/* ── Image upload zone ─────────────────────────── */
.profil-upload-zone {
  border: 2px dashed var(--b1);
  border-radius: 10px;
  text-align: center;
  padding: 18px 16px;
  cursor: pointer;
  transition: border-color .15s, background .15s;
  position: relative;
  overflow: hidden;
}

.profil-upload-zone:hover {
  border-color: var(--np);
  background: rgba(200,149,90,.04);
}

.profil-upload-zone input[type=file] {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
  font-size: 0;
}

.profil-upload-ic {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(200,149,90,.12);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 7px;
  color: var(--np);
}

.profil-upload-lbl { font-size: 12px; color: var(--t2); font-weight: 500; }
.profil-upload-sub { font-size: 10.5px; color: var(--t3); margin-top: 3px; }

.profil-img-preview {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 8px;
}

.profil-img-preview img {
  width: 100%;
  max-height: 140px;
  object-fit: cover;
  display: block;
}

.profil-img-del {
  position: absolute;
  top: 6px;
  right: 6px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(0,0,0,.65);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: background .15s;
}

.profil-img-del:hover { background: rgba(217,64,64,.85); }

/* ── Gallery grid (editor) ─────────────────────── */
.profil-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 7px;
  margin-bottom: 8px;
}

.profil-gallery-slot {
  aspect-ratio: 1;
  border: 2px dashed var(--b1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: border-color .15s;
  background: var(--s1);
}

.profil-gallery-slot:hover { border-color: var(--np); }

.profil-gallery-slot input[type=file] {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
  font-size: 0;
}

.profil-gallery-slot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.profil-gallery-slot .pgsl-del {
  position: absolute;
  top: 4px;
  right: 4px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(0,0,0,.65);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  z-index: 2;
  transition: background .15s;
}

.profil-gallery-slot .pgsl-del:hover { background: rgba(217,64,64,.85); }
.profil-gallery-slot .pgsl-plus { color: var(--t3); }

/* ── Stars input ───────────────────────────────── */
.profil-stars-input { display: flex; gap: 5px; margin-bottom: 8px; }

.profil-star {
  font-size: 26px;
  cursor: pointer;
  color: var(--b2, #ccc);
  transition: color .1s, transform .1s;
  user-select: none;
  line-height: 1;
}

.profil-star.lit { color: #f59e0b; }
.profil-star:hover { transform: scale(1.15); }

/* ── Review list (editor) ──────────────────────── */
.profil-review-item {
  background: var(--s1);
  border: 1px solid var(--b1);
  border-radius: 8px;
  padding: 10px 12px;
  margin-bottom: 8px;
}

.profil-review-hdr {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 6px;
  margin-bottom: 5px;
}

.profil-review-stars-disp { font-size: 13px; color: #f59e0b; margin-bottom: 4px; }

/* ── Badge chips ───────────────────────────────── */
.profil-badge-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin-bottom: 7px;
  min-height: 10px;
}

.profil-badge-chip {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: rgba(200,149,90,.12);
  border: 1px solid rgba(200,149,90,.22);
  color: var(--np);
  border-radius: 20px;
  padding: 4px 10px;
  font-size: 11.5px;
  font-weight: 500;
}

.profil-badge-chip button {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  color: inherit;
  opacity: .6;
  display: flex;
  align-items: center;
  transition: opacity .1s;
}

.profil-badge-chip button:hover { opacity: 1; }

/* ── Color swatches ────────────────────────────── */
.profil-color-row { display: flex; gap: 7px; align-items: center; flex-wrap: wrap; }

.profil-color-swatch {
  width: 26px;
  height: 26px;
  border-radius: 6px;
  cursor: pointer;
  border: 2px solid transparent;
  transition: border-color .15s, transform .1s;
  flex-shrink: 0;
}

.profil-color-swatch.active {
  border-color: var(--t1);
  transform: scale(1.18);
}

.profil-color-custom {
  width: 26px;
  height: 26px;
  border-radius: 6px;
  border: 1.5px solid var(--b1);
  cursor: pointer;
  padding: 0;
  overflow: hidden;
  flex-shrink: 0;
}

/* ── RIGHT: Preview panel ──────────────────────── */
.profil-preview {
  flex: 1;
  display: flex;
  flex-direction: column;
  background: var(--s1);
  overflow: hidden;
  min-width: 0;
}

/* Topbar */
.profil-preview-topbar {
  padding: 0 16px;
  border-bottom: 2px solid var(--b1);
  background: var(--s2);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-shrink: 0;
  min-height: 46px;
}

.profil-preview-label {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 12px;
  font-weight: 600;
  color: var(--t2);
  flex-shrink: 0;
}

.profil-preview-label svg { color: var(--np); flex-shrink: 0; }

.profil-preview-actions {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
}

/* ── Editor section group labels ───────────────── */
.profil-group-label {
  font-size: 9.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .07em;
  color: var(--t3);
  padding: 14px 2px 6px;
}
.profil-group-label:first-child { padding-top: 2px; }

.profil-dev-btns { display: flex; gap: 3px; }

.profil-dev-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 6px;
  font-size: 11px;
  font-weight: 500;
  border: 1.5px solid var(--b1);
  background: transparent;
  color: var(--t3);
  cursor: pointer;
  transition: all .15s;
}

.profil-dev-btn.active {
  background: var(--np);
  border-color: var(--np);
  color: #fff;
}

/* URL bar (browser chrome) */
.profil-preview-urlbar {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 7px 16px;
  background: var(--s1);
  border-bottom: 1px solid var(--b1);
  flex-shrink: 0;
}

.profil-urlbar-dots {
  display: flex;
  gap: 5px;
  flex-shrink: 0;
}

.profil-urlbar-dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--b2);
}

.profil-urlbar-address {
  flex: 1;
  background: var(--s2);
  border: 1px solid var(--b1);
  border-radius: 6px;
  padding: 4px 10px;
  font-size: 11px;
  color: var(--t3);
  font-family: var(--mono, monospace);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  text-align: center;
}

/* Preview body + frame — fills the full right half */
.profil-preview-body {
  flex: 1;
  overflow-y: auto;
  background: var(--s1);
  width: 100%;
  display: block;
}

.profil-preview-frame {
  width: 100%;
  display: block;
  background: var(--s1);
  overflow: hidden;
}

#profil-preview-inner {
  display: block;
  width: 100%;
}

/* Mobile mode: show as phone frame centered in panel */
.profil-preview-frame.mobile-mode {
  max-width: 390px;
  min-height: unset;
  margin: 24px auto;
  border-radius: 36px;
  background: var(--s1);
  overflow: hidden;
  box-shadow: 0 16px 60px rgba(0,0,0,.28);
  outline: 8px solid #1a1a1a;
  outline-offset: 0;
}

/* Mobile mode body: dotted background behind phone */
.profil-preview-body--mobile {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 24px 20px;
  background-image: radial-gradient(circle, rgba(0,0,0,.08) 1px, transparent 1px);
  background-size: 20px 20px;
  background-color: #dcdce2;
}

[data-theme="dark"] .profil-preview-body--mobile,
.dark .profil-preview-body--mobile {
  background-color: #1a1a24;
  background-image: radial-gradient(circle, rgba(255,255,255,.06) 1px, transparent 1px);
}

/* ══════════════════════════════════════════════════
   PUBLIC CUSTOMER PROFILE PAGE (bkp-*)
   ══════════════════════════════════════════════════ */

.bkp-wrap {
  --bkp-accent: #c8955a;
  --bkp-font: 'Montserrat', sans-serif;
  display: block;
  width: 100%;
  font-family: var(--bkp-font);
  color: var(--t1);
  background: var(--s1);
}

/* Banner */
.bkp-banner {
  height: 200px;
  background: linear-gradient(135deg, #1a110a 0%, #3a2010 40%, #c8955a 100%);
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
}

.bkp-banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 50%, rgba(0,0,0,.45) 100%);
}

/* Profile card (avatar + info) */
.bkp-profile-card {
  display: flex;
  align-items: flex-end;
  gap: 16px;
  padding: 0 24px 20px;
  margin-top: 0;
  position: relative;
  z-index: 1;
}

.bkp-avatar-wrap { flex-shrink: 0; }

/* "Links" layout: only the avatar overlaps the banner, not the name */
.bkp-wrap:not(.bkp-wrap--layout-center) .bkp-avatar-wrap {
  margin-top: -52px;
  align-self: flex-start;
}

.bkp-avatar {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  border: 4px solid var(--s1);
  background: linear-gradient(135deg, var(--bkp-accent), #3a2010);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  color: rgba(255,255,255,.75);
  flex-shrink: 0;
}

.bkp-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.bkp-profile-info {
  flex: 1;
  padding-bottom: 4px;
  min-width: 0;
}

.bkp-wrap:not(.bkp-wrap--layout-center) .bkp-profile-info {
  padding-top: 12px;
}

.bkp-name {
  font-size: 22px;
  font-weight: 800;
  color: var(--bkp-accent);
  margin: 0 0 2px;
  line-height: 1.2;
}

.bkp-tagline {
  font-size: 13px;
  color: var(--t3);
  margin: 0 0 8px;
}

.bkp-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}

.bkp-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: rgba(200,149,90,.12);
  border: 1px solid rgba(200,149,90,.25);
  color: var(--bkp-accent);
  border-radius: 20px;
  padding: 3px 9px;
  font-size: 11px;
  font-weight: 600;
}

/* Sections */
.bkp-section {
  padding: 20px 24px;
  border-top: 1px solid var(--b1);
}

.bkp-section-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--t1);
  margin: 0 0 14px;
  display: flex;
  align-items: center;
  gap: 9px;
}

.bkp-section-title-bar {
  width: 3px;
  height: 18px;
  border-radius: 2px;
  background: var(--bkp-accent);
  flex-shrink: 0;
}

/* Bio */
.bkp-bio {
  font-size: 13.5px;
  color: var(--t2);
  line-height: 1.75;
  white-space: pre-line;
}

/* Treatments */
.bkp-treat-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.bkp-treat-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--s2);
  border: 1px solid var(--b1);
  border-radius: 10px;
  padding: 12px 14px;
  gap: 12px;
  transition: border-color .15s;
}

.bkp-treat-card:hover { border-color: var(--bkp-accent); }

.bkp-treat-name {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--t1);
}

.bkp-treat-meta {
  font-size: 11.5px;
  color: var(--t3);
  margin-top: 2px;
}

.bkp-treat-price {
  font-size: 15px;
  font-weight: 700;
  color: var(--bkp-accent);
  white-space: nowrap;
}

/* Gallery */
.bkp-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.bkp-gallery-img {
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 8px;
  width: 100%;
  cursor: zoom-in;
  transition: opacity .18s, transform .18s;
  display: block;
}

.bkp-gallery-img:hover {
  opacity: .88;
  transform: scale(1.03);
}

/* Reviews */
.bkp-rating-summary {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
  padding: 12px 14px;
  background: var(--s2);
  border: 1px solid var(--b1);
  border-radius: 10px;
}

.bkp-rating-big {
  font-size: 34px;
  font-weight: 800;
  color: var(--t1);
  line-height: 1;
}

.bkp-rating-stars { color: #f59e0b; font-size: 16px; margin-bottom: 3px; }
.bkp-rating-count { font-size: 11.5px; color: var(--t3); }

.bkp-reviews-list { display: flex; flex-direction: column; gap: 10px; }

.bkp-review-card {
  background: var(--s2);
  border: 1px solid var(--b1);
  border-radius: 10px;
  padding: 12px 14px;
}

.bkp-review-hdr {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 5px;
}

.bkp-review-author { font-size: 13px; font-weight: 600; color: var(--t1); }
.bkp-review-date { font-size: 11px; color: var(--t3); }
.bkp-review-stars { color: #f59e0b; font-size: 14px; margin-bottom: 5px; }
.bkp-review-text { font-size: 12.5px; color: var(--t2); line-height: 1.65; }

.bkp-maps-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  color: var(--bkp-accent);
  text-decoration: none;
  margin-top: 10px;
  font-weight: 500;
}

.bkp-maps-link:hover { text-decoration: underline; }

/* Contact / Social */
.bkp-contact-grid { display: flex; flex-wrap: wrap; gap: 8px; }

.bkp-contact-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--s2);
  border: 1.5px solid var(--b1);
  border-radius: 8px;
  padding: 8px 12px;
  font-size: 12.5px;
  font-weight: 500;
  color: var(--t2);
  text-decoration: none;
  transition: border-color .15s, color .15s;
}

.bkp-contact-link:hover {
  border-color: var(--bkp-accent);
  color: var(--bkp-accent);
}

/* CTA booking */
.bkp-cta-section {
  padding: 28px 24px;
  text-align: center;
  background: linear-gradient(135deg, rgba(200,149,90,.08) 0%, rgba(200,149,90,.02) 100%);
  border-top: 1px solid rgba(200,149,90,.15);
}

.bkp-cta-title { font-size: 19px; font-weight: 800; color: var(--t1); margin-bottom: 5px; }
.bkp-cta-sub { font-size: 13px; color: var(--t3); margin-bottom: 18px; }

.bkp-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--bkp-accent);
  color: #fff;
  border: none;
  border-radius: 12px;
  padding: 14px 30px;
  font-size: 14.5px;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
  transition: opacity .18s, transform .1s;
  box-shadow: 0 4px 18px rgba(200,149,90,.32);
}

.bkp-cta-btn:hover { opacity: .92; transform: translateY(-2px); }

/* Lightbox */
.bkp-lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.92);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  cursor: zoom-out;
  animation: bkpFadeIn .2s ease;
}

@keyframes bkpFadeIn { from { opacity: 0; } to { opacity: 1; } }

.bkp-lightbox img {
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
  border-radius: 6px;
}

/* Customer page profile wrap */
#bkc-profile-wrap {
  max-width: 800px;
  margin: 0 auto;
}

/* Toast notification */
.profil-toast {
  position: fixed;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  background: #1a1a2e;
  color: #fff;
  padding: 11px 20px;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 500;
  z-index: 9999;
  box-shadow: 0 4px 20px rgba(0,0,0,.3);
  transition: opacity .3s;
  pointer-events: none;
}

/* ── Mobile responsive ─────────────────────────── */
@media (max-width: 860px) {
  .profil-wrap { flex-direction: column; height: auto; }
  .profil-editor { width: 100%; max-height: 60vh; }
  .profil-preview { min-height: 50vh; }
  .bkp-banner { height: 160px; }
  .bkp-avatar { width: 80px; height: 80px; font-size: 28px; }
  .bkp-name { font-size: 20px; }
  .bkp-gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .bkp-profile-card { padding: 0 16px 16px; gap: 12px; }
  .bkp-wrap:not(.bkp-wrap--layout-center) .bkp-avatar-wrap { margin-top: -40px; }
  .bkp-section { padding: 16px; }
}

@media (max-width: 640px) {
  .bkp-banner { height: 140px; }
  .bkp-avatar { width: 72px; height: 72px; font-size: 26px; }
  .bkp-name { font-size: 18px; }
  .bkp-wrap:not(.bkp-wrap--layout-center) .bkp-avatar-wrap { margin-top: -36px; }
  .bkp-mobile-cta { display: flex; }
  .bkp-hours-grid { font-size: 13px; }
}

/* ═══════════════════════════════════════════════════
   PROFIL COMPLETION INDICATOR
   ═══════════════════════════════════════════════════ */

.profil-completion-wrap {
  display: flex;
  align-items: center;
  gap: 7px;
  flex-shrink: 0;
}

.profil-completion-bar {
  width: 64px;
  height: 5px;
  background: var(--b1);
  border-radius: 3px;
  overflow: hidden;
}

.profil-completion-fill {
  height: 100%;
  border-radius: 3px;
  transition: width .4s ease;
}

.profil-completion-pct {
  font-size: 11px;
  font-weight: 700;
  white-space: nowrap;
  min-width: 28px;
  text-align: right;
}

/* ═══════════════════════════════════════════════════
   WORKING HOURS — EDITOR
   ═══════════════════════════════════════════════════ */

.profil-wh-grid {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.profil-wh-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 4px 0;
}

.profil-wh-toggle {
  display: flex;
  align-items: center;
  gap: 7px;
  cursor: pointer;
  min-width: 52px;
}

.profil-wh-day {
  font-size: 12.5px;
  font-weight: 600;
  color: var(--t2);
  min-width: 24px;
}

.profil-wh-times {
  display: flex;
  align-items: center;
  gap: 5px;
  flex: 1;
}

.profil-wh-input {
  background: var(--s1);
  border: 1.5px solid var(--b1);
  border-radius: 6px;
  padding: 4px 6px;
  font-size: 11.5px;
  color: var(--t1);
  font-family: var(--font);
  outline: none;
  transition: border-color .15s;
  width: 80px;
}

.profil-wh-input:focus { border-color: var(--np); }
.profil-wh-input:disabled { opacity: .35; cursor: not-allowed; }

.profil-wh-dash {
  font-size: 12px;
  color: var(--t3);
}

.profil-wh-closed {
  font-size: 11.5px;
  color: var(--t3);
  font-style: italic;
}

/* ═══════════════════════════════════════════════════
   WORKING HOURS — PUBLIC PAGE
   ═══════════════════════════════════════════════════ */

.bkp-hours-grid {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid var(--b1);
  border-radius: 10px;
  overflow: hidden;
}

.bkp-hours-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 9px 14px;
  border-bottom: 1px solid var(--b1);
  transition: background .15s;
}

.bkp-hours-row:last-child { border-bottom: none; }
.bkp-hours-row:hover { background: var(--s2); }

.bkp-hours-today {
  background: rgba(200,149,90,.06);
}

.bkp-hours-today .bkp-hours-day {
  color: var(--bkp-accent);
  font-weight: 700;
}

.bkp-hours-today .bkp-hours-time {
  color: var(--bkp-accent);
  font-weight: 600;
}

.bkp-hours-day {
  font-size: 13px;
  font-weight: 500;
  color: var(--t2);
  min-width: 90px;
}

.bkp-hours-time {
  font-size: 13px;
  color: var(--t2);
}

.bkp-hours-closed .bkp-hours-day,
.bkp-hours-closed .bkp-hours-time {
  color: var(--t3);
}

/* ═══════════════════════════════════════════════════
   LOCATION BADGE — PUBLIC PAGE
   ═══════════════════════════════════════════════════ */

.bkp-location-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  color: var(--t3);
  margin-top: 6px;
}

/* ═══════════════════════════════════════════════════
   REVIEW AVATAR
   ═══════════════════════════════════════════════════ */

.bkp-review-avatar {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
}

.bkp-review-hdr {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
}

/* ═══════════════════════════════════════════════════
   WHATSAPP CONTACT LINK
   ═══════════════════════════════════════════════════ */

.bkp-whatsapp-link {
  background: rgba(37,211,102,.1) !important;
  border-color: rgba(37,211,102,.3) !important;
  color: #128c3c !important;
}

.bkp-whatsapp-link:hover {
  background: rgba(37,211,102,.18) !important;
  border-color: #25d366 !important;
  color: #0a6622 !important;
}

/* ═══════════════════════════════════════════════════
   STICKY HEADER — PUBLIC PAGE
   ═══════════════════════════════════════════════════ */

.bkp-sticky-bar {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  background: var(--s1);
  border-bottom: 1px solid var(--b1);
  box-shadow: 0 2px 12px rgba(0,0,0,.08);
  /* hidden: takes NO space so banner starts at top */
  max-height: 0;
  overflow: hidden;
  padding: 0 20px;
  opacity: 0;
  pointer-events: none;
  transition: max-height .3s ease, opacity .25s, padding .3s ease;
}

.bkp-sticky-bar.bkp-sticky-bar--vis {
  max-height: 60px;
  opacity: 1;
  pointer-events: auto;
  padding: 10px 20px;
}

.bkp-sticky-left {
  display: flex;
  align-items: center;
  gap: 9px;
  min-width: 0;
}

.bkp-sticky-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--bkp-accent), #3a2010);
  overflow: hidden;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  color: rgba(255,255,255,.85);
}

.bkp-sticky-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.bkp-sticky-name {
  font-size: 14px;
  font-weight: 700;
  color: var(--t1);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.bkp-sticky-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--bkp-accent);
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 8px 16px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
  transition: opacity .15s;
  flex-shrink: 0;
}

.bkp-sticky-btn:hover { opacity: .88; }

/* ═══════════════════════════════════════════════════
   FLOATING MOBILE CTA — PUBLIC PAGE
   ═══════════════════════════════════════════════════ */

.bkp-mobile-cta {
  display: none;
  position: sticky;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 40;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 16px;
  background: var(--s1);
  border-top: 1px solid var(--b1);
  box-shadow: 0 -4px 20px rgba(0,0,0,.1);
}

.bkp-mobile-cta-info { min-width: 0; flex: 1; }

.bkp-mobile-cta-name {
  font-size: 13px;
  font-weight: 700;
  color: var(--t1);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.bkp-mobile-cta-sub {
  font-size: 11px;
  color: var(--t3);
  margin-top: 1px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.bkp-mobile-cta-btn {
  padding: 10px 18px !important;
  font-size: 13px !important;
  white-space: nowrap;
  flex-shrink: 0;
}

/* ═══════════════════════════════════════════════════
   BOOKING PREVIEW SECTION (only in editor preview)
   ═══════════════════════════════════════════════════ */

/* ─── Booking preview section (editor right side) ─── */
.bkp-bps-wrap {
  display: block;
  width: 100%;
  background: var(--s1);
  --bkp-accent: #c8955a;
  border-top: 3px solid var(--bkp-accent);
}

.bkp-bps-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  color: #fff;
}

.bkp-bps-header-back {
  font-size: 18px;
  opacity: .7;
  cursor: default;
  line-height: 1;
}

.bkp-bps-header-name {
  font-size: 15px;
  font-weight: 700;
}

.bkp-bps-preview-note {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  color: var(--t3);
  background: var(--s2);
  border-bottom: 1px solid var(--b1);
  padding: 7px 20px;
}

/* Stepper */
.bkp-bps-steps {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  padding: 20px 20px 16px;
  border-bottom: 1px solid var(--b1);
}

.bkp-bps-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
}

.bkp-bps-step-num {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--s2);
  border: 2px solid var(--b1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  color: var(--t3);
}

.bkp-bps-step-lbl { font-size: 10.5px; color: var(--t3); }

.bkp-bps-step-line {
  flex: 1;
  height: 2px;
  background: var(--b1);
  min-width: 24px;
  margin-bottom: 22px;
}

/* Step content blocks */
.bkp-bps-step-block {
  padding: 20px 20px 24px;
  border-bottom: 1px solid var(--b1);
}

.bkp-bps-step-block--dim {
  opacity: .45;
  pointer-events: none;
}

.bkp-bps-section-title {
  font-size: 12.5px;
  font-weight: 700;
  color: var(--t2);
  margin-bottom: 14px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--b1);
}

/* Service cards */
.bkp-bps-cards {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.bkp-bps-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--s2);
  border: 1px solid var(--b1);
  border-radius: 10px;
  padding: 12px 14px;
  gap: 12px;
}

.bkp-bps-card-info { flex: 1; min-width: 0; }
.bkp-bps-card-name { font-size: 13px; font-weight: 600; color: var(--t1); }
.bkp-bps-card-meta { font-size: 11.5px; color: var(--t3); margin-top: 2px; }

.bkp-bps-card-btn {
  flex-shrink: 0;
  border: none;
  border-radius: 8px;
  padding: 7px 14px;
  font-size: 12px;
  font-weight: 600;
  color: #fff;
  cursor: default;
}

/* Calendar mock */
.bkp-bps-calendar-mock {
  background: var(--s2);
  border: 1px solid var(--b1);
  border-radius: 10px;
  overflow: hidden;
}

.bkp-bps-cal-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 14px;
  border-bottom: 1px solid var(--b1);
  font-size: 13px;
  color: var(--t2);
}

.bkp-bps-cal-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 2px;
  padding: 10px;
}

.bkp-bps-cal-hdr {
  font-size: 10px;
  font-weight: 700;
  color: var(--t3);
  text-align: center;
  padding: 4px 0;
}

.bkp-bps-cal-day {
  font-size: 11.5px;
  color: var(--t2);
  text-align: center;
  padding: 5px 2px;
  border-radius: 6px;
  cursor: default;
}

.bkp-bps-cal-day--sel {
  background: var(--bkp-accent);
  color: #fff;
  font-weight: 700;
}

.bkp-bps-time-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
  padding: 10px;
  border-top: 1px solid var(--b1);
}

.bkp-bps-time-btn {
  background: var(--s1);
  border: 1px solid var(--b1);
  border-radius: 7px;
  padding: 7px 4px;
  font-size: 12px;
  font-weight: 500;
  color: var(--t2);
  text-align: center;
}

/* Form mock */
.bkp-bps-form-mock {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.bkp-bps-form-row {}

.bkp-bps-form-lbl {
  font-size: 10.5px;
  font-weight: 700;
  color: var(--t3);
  text-transform: uppercase;
  letter-spacing: .04em;
  margin-bottom: 4px;
}

.bkp-bps-form-inp {
  background: var(--s2);
  border: 1.5px solid var(--b1);
  border-radius: 7px;
  height: 34px;
}

.bkp-bps-form-ta { height: 60px; }

/* Confirmation mock */
.bkp-bps-confirm-mock {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 16px 0;
  text-align: center;
}

.bkp-bps-confirm-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: #fff;
  font-weight: 700;
}

.bkp-bps-confirm-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--t1);
}

.bkp-bps-confirm-sub {
  font-size: 12.5px;
  color: var(--t3);
}

/* ═══════════════════════════════════════════════════
   PREVIEW EDIT OVERLAYS (banner + avatar, only in editor)
   ═══════════════════════════════════════════════════ */

.bkp-wrap--preview .bkp-banner { cursor: default; }

.bkp-banner-edit-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity .2s;
  cursor: pointer;
  z-index: 2;
}

.bkp-banner:hover .bkp-banner-edit-overlay { opacity: 1; }

.bkp-banner-edit-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(0,0,0,.65);
  color: #fff;
  border-radius: 10px;
  padding: 10px 18px;
  font-size: 13px;
  font-weight: 600;
  backdrop-filter: blur(4px);
  border: 1.5px solid rgba(255,255,255,.2);
  pointer-events: none;
}

.bkp-avatar-wrap { position: relative; }

.bkp-avatar-edit-overlay {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: rgba(0,0,0,.55);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  opacity: 0;
  cursor: pointer;
  transition: opacity .2s;
  z-index: 2;
}

.bkp-avatar-wrap:hover .bkp-avatar-edit-overlay { opacity: 1; }

/* ═══════════════════════════════════════════════════
   EDITOR FOOTER
   ═══════════════════════════════════════════════════ */

.profil-editor-footer {
  border-top: 1px solid var(--b1);
  padding: 10px 14px;
  background: var(--s1);
  flex-shrink: 0;
  display: flex;
  gap: 5px;
  flex-wrap: wrap;
  align-items: center;
}

.profil-reset-btn {
  color: #d94040 !important;
}

/* ═══════════════════════════════════════════════════
   ACC META LABEL
   ═══════════════════════════════════════════════════ */

.profil-acc-meta {
  font-size: 10px;
  font-weight: 400;
  color: var(--t3);
  margin-left: 5px;
}

/* ═══════════════════════════════════════════════════
   DESIGN ACCORDION — THEMES
   ═══════════════════════════════════════════════════ */

.profil-theme-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 6px;
}

.profil-theme-swatch {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  padding: 8px 4px;
  border-radius: 9px;
  border: 2px solid var(--b1);
  background: var(--s1);
  cursor: pointer;
  transition: border-color .15s, background .15s;
}

.profil-theme-swatch:hover {
  border-color: var(--tc, #c8955a);
  background: var(--s2);
}

.profil-theme-swatch.active {
  border-color: var(--tc, #c8955a);
  background: rgba(200,149,90,.06);
}

.profil-theme-dot {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  flex-shrink: 0;
}

.profil-theme-name {
  font-size: 9px;
  font-weight: 600;
  color: var(--t3);
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  width: 100%;
  line-height: 1.2;
}

/* ═══════════════════════════════════════════════════
   DESIGN ACCORDION — FONTS
   ═══════════════════════════════════════════════════ */

.profil-font-grid {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.profil-font-btn {
  padding: 9px 12px;
  border-radius: 8px;
  border: 1.5px solid var(--b1);
  background: var(--s1);
  cursor: pointer;
  text-align: left;
  font-size: 14px;
  color: var(--t2);
  transition: border-color .15s, color .15s, background .15s;
}

.profil-font-btn:hover {
  border-color: var(--np);
  color: var(--t1);
}

.profil-font-btn.active {
  border-color: var(--np);
  background: rgba(200,149,90,.08);
  color: var(--np);
  font-weight: 600;
}

/* ═══════════════════════════════════════════════════
   DESIGN ACCORDION — LAYOUT
   ═══════════════════════════════════════════════════ */

.profil-layout-btns {
  display: flex;
  gap: 8px;
}

.profil-layout-btn {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 7px;
  padding: 10px 8px;
  border-radius: 9px;
  border: 2px solid var(--b1);
  background: var(--s1);
  cursor: pointer;
  font-size: 11.5px;
  color: var(--t3);
  transition: all .15s;
}

.profil-layout-btn:hover {
  border-color: var(--np);
  color: var(--t2);
}

.profil-layout-btn.active {
  border-color: var(--np);
  background: rgba(200,149,90,.08);
  color: var(--np);
  font-weight: 600;
}

/* ═══════════════════════════════════════════════════
   ACCORDION LIST ITEMS (offers, certs, faq, ba)
   ═══════════════════════════════════════════════════ */

.profil-list-item {
  background: var(--s1);
  border: 1px solid var(--b1);
  border-radius: 10px;
  padding: 11px 12px;
  margin-bottom: 8px;
}

.profil-list-item-hdr {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 9px;
}

.profil-2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.profil-sw-label {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  padding: 4px 0;
}

/* ═══════════════════════════════════════════════════
   BEFORE/AFTER EDITOR UPLOAD
   ═══════════════════════════════════════════════════ */

.profil-ba-upload {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  height: 80px;
  border: 2px dashed var(--b1);
  border-radius: 7px;
  cursor: pointer;
  color: var(--t3);
  font-size: 11px;
  transition: border-color .15s, color .15s;
}

.profil-ba-upload:hover {
  border-color: var(--np);
  color: var(--np);
}

/* ═══════════════════════════════════════════════════
   QR CODE
   ═══════════════════════════════════════════════════ */

.profil-qr-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 14px;
  background: var(--s1);
  border: 1px solid var(--b1);
  border-radius: 10px;
}

.profil-qr-img {
  width: 160px;
  height: 160px;
  border-radius: 8px;
  border: 1px solid var(--b1);
  display: block;
}

/* ═══════════════════════════════════════════════════
   WHATSAPP SHARE BUTTON
   ═══════════════════════════════════════════════════ */

.profil-share-wa-btn {
  background: rgba(37,211,102,.12) !important;
  border-color: rgba(37,211,102,.3) !important;
  color: #128c3c !important;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.profil-share-wa-btn:hover {
  background: rgba(37,211,102,.2) !important;
  color: #0a6622 !important;
}

/* ═══════════════════════════════════════════════════
   FULLSCREEN MODAL (A1)
   ═══════════════════════════════════════════════════ */

.profil-fs-overlay {
  position: fixed;
  inset: 0;
  z-index: 9998;
  background: rgba(0,0,0,.88);
  display: flex;
  align-items: flex-start;
  justify-content: center;
  overflow-y: auto;
  padding: 20px;
  animation: bkpFadeIn .2s ease;
}

.profil-fs-inner {
  width: 100%;
  max-width: 900px;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 20px 80px rgba(0,0,0,.5);
  background: var(--s1);
}

.profil-fs-close {
  position: fixed;
  top: 16px;
  right: 16px;
  z-index: 9999;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(0,0,0,.7);
  color: #fff;
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 8px;
  padding: 8px 14px;
  font-size: 12.5px;
  font-weight: 600;
  cursor: pointer;
  backdrop-filter: blur(4px);
  transition: background .15s;
}

.profil-fs-close:hover { background: rgba(0,0,0,.9); }

/* ═══════════════════════════════════════════════════
   RESET CONFIRM MODAL
   ═══════════════════════════════════════════════════ */

.profil-confirm-overlay {
  position: fixed;
  inset: 0;
  z-index: 9997;
  background: rgba(0,0,0,.6);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  animation: bkpFadeIn .15s ease;
}

.profil-confirm-box {
  background: var(--s1);
  border: 1px solid var(--b1);
  border-radius: 14px;
  padding: 24px;
  width: 100%;
  max-width: 320px;
  box-shadow: 0 8px 40px rgba(0,0,0,.25);
}

.profil-confirm-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--t1);
  margin-bottom: 6px;
}

.profil-confirm-text {
  font-size: 12.5px;
  color: var(--t3);
  margin-bottom: 14px;
}

.profil-confirm-btns {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

/* ═══════════════════════════════════════════════════
   PUBLIC PAGE — CENTER LAYOUT (D3)
   ═══════════════════════════════════════════════════ */

.bkp-wrap--layout-center .bkp-profile-card {
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding-top: 0;
  margin-top: -56px;
}

.bkp-wrap--layout-center .bkp-avatar {
  width: 108px;
  height: 108px;
  font-size: 42px;
  margin-bottom: 12px;
}

.bkp-wrap--layout-center .bkp-profile-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-bottom: 0;
}

.bkp-wrap--layout-center .bkp-badges { justify-content: center; }
.bkp-wrap--layout-center .bkp-location-badge { margin: 6px auto 0; }

/* ═══════════════════════════════════════════════════
   PUBLIC PAGE — OFFERS (B2)
   ═══════════════════════════════════════════════════ */

.bkp-offers-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.bkp-offer-card {
  background: var(--s2);
  border: 1.5px solid var(--bkp-accent);
  border-radius: 12px;
  padding: 14px 16px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  position: relative;
  overflow: hidden;
}

.bkp-offer-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(200,149,90,.05) 0%, transparent 60%);
  pointer-events: none;
}

.bkp-offer-badge {
  flex-shrink: 0;
  background: #d94040;
  color: #fff;
  border-radius: 6px;
  padding: 4px 8px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .02em;
}

.bkp-offer-body { flex: 1; min-width: 0; }

.bkp-offer-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--t1);
  margin-bottom: 3px;
}

.bkp-offer-desc {
  font-size: 12.5px;
  color: var(--t2);
  margin-bottom: 4px;
}

.bkp-offer-until {
  font-size: 11px;
  color: var(--t3);
}

.bkp-offer-prices {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 2px;
  flex-shrink: 0;
}

.bkp-offer-old {
  font-size: 12px;
  color: var(--t3);
  text-decoration: line-through;
}

.bkp-offer-new {
  font-size: 17px;
  font-weight: 800;
  color: var(--bkp-accent);
}

/* ═══════════════════════════════════════════════════
   PUBLIC PAGE — CERTIFICATES (B1)
   ═══════════════════════════════════════════════════ */

.bkp-certs-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.bkp-cert-item {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--s2);
  border: 1px solid var(--b1);
  border-radius: 10px;
  padding: 11px 14px;
}

.bkp-cert-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(200,149,90,.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--bkp-accent);
  flex-shrink: 0;
}

.bkp-cert-info { flex: 1; min-width: 0; }

.bkp-cert-title {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--t1);
}

.bkp-cert-issuer {
  font-size: 11.5px;
  color: var(--t3);
  margin-top: 2px;
}

.bkp-cert-year {
  font-size: 12px;
  font-weight: 700;
  color: var(--bkp-accent);
  flex-shrink: 0;
}

/* ═══════════════════════════════════════════════════
   PUBLIC PAGE — FAQ (B3)
   ═══════════════════════════════════════════════════ */

.bkp-faq-list {
  border: 1px solid var(--b1);
  border-radius: 10px;
  overflow: hidden;
}

.bkp-faq-item {
  border-bottom: 1px solid var(--b1);
}

.bkp-faq-item:last-child { border-bottom: none; }

.bkp-faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 13px 16px;
  cursor: pointer;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--t1);
  list-style: none;
  background: var(--s2);
  transition: background .15s;
  user-select: none;
}

.bkp-faq-q::-webkit-details-marker { display: none; }
.bkp-faq-q:hover { background: var(--s1); }

.bkp-faq-chev {
  flex-shrink: 0;
  color: var(--t3);
  transition: transform .2s;
}

details[open] .bkp-faq-chev { transform: rotate(180deg); }

.bkp-faq-a {
  padding: 0 16px 14px;
  font-size: 13px;
  color: var(--t2);
  line-height: 1.7;
  white-space: pre-line;
  background: var(--s1);
}

/* ═══════════════════════════════════════════════════
   PUBLIC PAGE — BEFORE/AFTER (B4)
   ═══════════════════════════════════════════════════ */

.bkp-ba-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 14px;
}

.bkp-ba-card {
  border: 1px solid var(--b1);
  border-radius: 12px;
  overflow: hidden;
}

.bkp-ba-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.bkp-ba-side { position: relative; }

.bkp-ba-label {
  position: absolute;
  top: 8px;
  left: 8px;
  z-index: 2;
  font-size: 10px;
  font-weight: 700;
  padding: 3px 7px;
  border-radius: 4px;
  color: #fff;
  letter-spacing: .04em;
}

.bkp-ba-label-before { background: rgba(0,0,0,.6); }
.bkp-ba-label-after  { background: var(--bkp-accent); }

.bkp-ba-img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  display: block;
}

.bkp-ba-empty {
  aspect-ratio: 1;
  background: var(--s2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--t3);
  font-size: 12px;
}

.bkp-ba-caption {
  padding: 9px 12px;
  font-size: 12px;
  color: var(--t3);
  text-align: center;
  border-top: 1px solid var(--b1);
  background: var(--s2);
}

/* ═══════════════════════════════════════════════════
   SPIN ANIMATION (save button)
   ═══════════════════════════════════════════════════ */

@keyframes spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }

/* ═══════════════════════════════════════════════════
   TOAST UPDATE — with type colors
   ═══════════════════════════════════════════════════ */

.profil-toast {
  border: 1px solid rgba(255,255,255,.1);
}

/* ═══════════════════════════════════════════════════
   RESPONSIVE FIXES
   ═══════════════════════════════════════════════════ */

@media (max-width: 860px) {
  .profil-editor-footer { gap: 4px; }
  .profil-editor-footer .btn { font-size: 11px; padding: 5px 9px; }
  .profil-theme-grid { grid-template-columns: repeat(5, 1fr); gap: 4px; }
  .bkp-ba-grid { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .profil-2col { grid-template-columns: 1fr; }
  .bkp-offer-card { flex-wrap: wrap; }
  .bkp-offer-prices { flex-direction: row; align-items: center; gap: 8px; }
  .bkp-wrap--layout-center .bkp-avatar { width: 90px; height: 90px; margin-top: -45px; }
}
