/* public/css/senti-scent.css */

/* ===== SENTI – Quiet Luxury UI (mobile-first) ===== */

:root{
  --bg: #ffffff;
  --fg: #0a0a0a;
  --muted: #6b6b6b;
  --muted-2: #9a9a9a;
  --line: rgba(10,10,10,.10);
  --line-2: rgba(10,10,10,.36);

  --card: #ffffff;
  --shadow: 0 10px 30px rgba(0,0,0,.06);

  --radius: 18px;
  --radius-sm: 12px;

  --space-1: 8px;
  --space-2: 12px;
  --space-3: 16px;
  --space-4: 26px;
  --space-5: 34px;
  --space-6: 44px;

  --tap: 44px; /* comfortable mobile tap target */
 
  --serif: "Playfair Display", ui-serif, Georgia, "Times New Roman", Times, serif;
  --sans: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial;
}

/* Base */
.senti{
  background: var(--bg);
  color: var(--fg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;

  font-family: var(--sans);
  background: var(--bg);
  color: var(--fg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.senti a{ /*color: inherit;*/ text-decoration: none; }
.senti *{ box-sizing: border-box; }

.senti-wrap{
  max-width: 520px;
  margin: 0 auto;
  padding: var(--space-6) var(--space-4);
}

@media (min-width: 768px) {
  .senti-wrap{
  	/*width: 680px;*/
  	width: 1200px;
  	max-width: 100%;
  	padding: 28px 28px;
  }
}

@media (min-width: 1200px){
  .senti-wrap{
  	width: 1200px;
  	/*max-width: 1200px;*/
  	padding: 48px 28px;
  }
}

/* Typography */
.senti-title{
  font-family: var(--serif);
  font-weight: 600;
  letter-spacing: -0.02em;
  font-size: 32px;
  line-height: 1.06;
  margin: 0 0 10px 0;
  text-rendering: geometricPrecision;
}

.senti-subtitle{
  font-size: 13px;
  color: var(--muted);
  margin: 0 0 var(--space-2) 0;
}

.senti-h2{
  font-family: var(--serif);
  font-weight: 500;
  letter-spacing: -0.015em;
  font-size: 21px;
  line-height: 1.18;
  margin: 0 0 14px 0;
}

@media (min-width: 768px){
  .senti-title{ font-size: 36px; }
  .senti-h2{ font-size: 23px; }
}

/* Optional dark header (quiet luxury) */
.senti-header--dark{
  background: #0a0a0a;
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 22px;
  padding: 22px;
  box-shadow: 0 18px 45px rgba(0,0,0,.10);
  margin-bottom: 22px;
}

.senti-header--dark .senti-title,
.senti-header--dark .senti-subtitle,
.senti-header--dark .senti-help{
  color: rgba(255,255,255,.92);
}

.senti-header--dark .senti-subtitle,
.senti-header--dark .senti-help{
  color: rgba(255,255,255,.70);
}

/* Stepper in dark header */
.senti-header--dark .senti-step__dot{
  background: transparent;
  border-color: rgba(255,255,255,.22);
  color: rgba(255,255,255,.85);
}

.senti-header--dark .senti-step--active .senti-step__dot{
  background: #ffffff;
  color: #0a0a0a;
  border-color: rgba(255,255,255,.55);
}

.senti-header--dark .senti-step__label{
  color: rgba(255,255,255,.65);
}
.senti-header--dark .senti-step--active .senti-step__label{
  color: rgba(255,255,255,.92);
}

footer{
  text-align: center;
  color: var(--muted);
  font-size: 12px;
  letter-spacing: .10em;
  line-height: 1.4;
  padding: 18px 0 22px;
  margin-top: 28px;
  opacity: .85;
}
footer a{
  color: inherit;
  text-decoration: none;
  border-bottom: 1px solid rgba(10,10,10,.18);
  padding-bottom: 2px;
}
footer a:hover{ opacity: .85; }


.senti-help{
  font-size: 13px;
  color: var(--muted);
  margin: var(--space-2) 0 var(--space-4) 0;
}

/* Cards / surfaces */
.senti-card{
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: var(--space-4);
}

.reco-card{
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.reco-card:hover{
  transform: translateY(-2px);
  border-color: rgba(0,0,0,.18);
  box-shadow: 0 24px 60px rgba(0,0,0,.08);
}


.senti-section{
  margin-top: var(--space-5);
}

/* Status strip (clean, no colors) */
.senti-status{
  border: 1px solid rgba(0,0,0,.16);
  border-radius: 14px;
  padding: 10px 12px;
  font-size: 13px;
  color: rgba(0,0,0,.72);
  background: rgba(255,255,255,.7);
}

/* Save button full width already, but keep consistent */
.senti-btn.w-full{ width:100%; }

/* Buttons */
.senti-btn{
  height: var(--tap);
  padding: 0 16px;
  border-radius: 999px;
  border: 1px solid var(--line-2);
  background: #fff;
  color: var(--fg);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: -0.01em;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: transform .12s ease, background .12s ease, border-color .12s ease, opacity .12s ease;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
}

.senti-btn:active{ transform: translateY(1px); }

.senti-btn--primary{
  background: #0a0a0a;
  color: #fff;
  border-color: rgba(0,0,0,.35);
}

.senti-btn--ghost{
  background: transparent;
}

.senti-btn[disabled]{
  opacity: .45;
  cursor: not-allowed;
  transform: none;
}

/* když se uloží (save button) */
.senti-btn.is-saved{
  border-color: rgba(0,0,0,.45);
  opacity: .9;
  pointer-events: none;
}

/* Like/Dislike state */
.senti-btn.is-on{
  background:#000;
  color:#fff;
  border-color:#000;
}

/* když je to ghost, ať se to taky přebije */
.senti-btn--ghost.is-on{
  background:#000;
  color:#fff;
  border-color:#000;
}


.senti-actions{
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-top: var(--space-5);
}

/* Stepper / Pager */
.senti-stepper{
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
  margin: var(--space-4) 0 var(--space-4) 0;
}

.senti-stepper button {
	background: transparent;
	border: none;
}

.senti-step{
  width: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}

.senti-step[aria-disabled="true"]{ cursor: not-allowed; opacity: .42; }

.senti-step__dot{
  width: 38px;
  height: 38px;
  border-radius: 999px;
  border: 1px solid var(--line-2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 650;
  font-size: 13px;
  transition: background .15s ease, color .15s ease, border-color .15s ease, transform .12s ease;
  background: #fff;
}

.senti-step:active .senti-step__dot{ transform: translateY(1px); }

.senti-step--active .senti-step__dot{
  background: #0a0a0a;
  color: #fff;
  border-color: rgba(0,0,0,.35);
}

.senti-step__label{
  font-size: 13px;
  color: var(--muted);
  text-align: center;
  line-height: 1.2;
  letter-spacing: .01em;
}

.senti-step--active .senti-step__label{ color: var(--fg); }

/* Tiles (options) */
.senti-grid{
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 12px;
}

/* ===== Recommendations grid ===== */
.senti-grid--reco{
  display: grid;
  grid-template-columns: 1fr;     /* mobile */
  gap: 14px;
}

@media (min-width: 640px){
  .senti-grid--reco{ grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (min-width: 900px){
  .senti-grid--reco{ grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

/* prevent overflow in grid items */
.senti-grid--reco > *{
  min-width: 0;
}

/* ===== Recommendations media (image) ===== */
.reco-media{
  border-color: rgba(0,0,0,.10);
  aspect-ratio: 4 / 5;          /* IDEÁLNÍ pro karty (ne tak dlouhé jako 9:16) */
  background: rgba(0,0,0,.03);
}

.reco-img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* placeholder fits the same box */
.reco-img-placeholder{
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  color: rgba(0,0,0,.55);
}


@media (min-width: 420px){
  .senti-grid{ grid-template-columns: repeat(3, minmax(0,1fr)); }
}

/* Compact square tiles for families (no image) */
.senti-grid--families{
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

@media (min-width: 420px){
  .senti-grid--families{
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

.senti-tile--family{
  padding: 10px;
}

.senti-tile--family .senti-tile__img{
  aspect-ratio: 1 / 1;    /* čtverec */
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
}

.senti-tile--family .senti-family-label{
  font-size: 12px;
  line-height: 1.15;
  text-align: center;
  color: #0a0a0a;
  padding: 6px;
}

.senti-tile{
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  padding: 10px;
  transition: border-color .15s ease, box-shadow .15s ease, transform .12s ease, opacity .12s ease;
  text-align: left;
  position: relative;
  overflow: hidden;
  -webkit-tap-highlight-color: transparent;
}

.senti-tile:active{ transform: translateY(1px); }
.senti-tile:hover{ border-color: var(--line-2); }

.senti-tile--active{
  border-color: rgba(0,0,0,1);
  box-shadow: 0 12px 28px rgba(0,0,0,.08);
}

.senti-tile--disabled{
  opacity: .38;
  cursor: not-allowed;
}

/* Portrait tiles (9:16) – flakony / mood / surface */
.senti-tile__img{
  aspect-ratio: 9 / 16;
  height: auto;          /* zruší původní výšku */
  width: 100%;
  object-fit: cover;
  border-radius: 16px;
}

/* Menší (dislike) stále portrait, jen menší “karta” */
.senti-tile__img--small{
  aspect-ratio: 9 / 16;
  height: auto;
}

.senti-tile__badge{
  position: absolute;
  top: 10px;
  right: 10px;
  width: 18px;
  height: 18px;
}

/* Inputs */
.senti-input{
  width: 100%;
  height: var(--tap);
  border-radius: 14px;
  border: 1px solid var(--line);
  padding: 0 14px;
  font-size: 14px;
  outline: none;
  transition: border-color .15s ease, box-shadow .15s ease;
  background: #fff;
}

.senti-input:focus{
  border-color: rgba(0,0,0,.45);
  box-shadow: 0 0 0 4px rgba(0,0,0,.06);
}

.senti-suggest{
  margin-top: 10px;
  border: 1px solid rgba(0,0,0,.14);
  border-radius: 14px;
  overflow: hidden;
  background: #fff;
}

.senti-suggest__list{
  list-style: none;
  margin: 0;
  padding: 0;
  max-height: 280px;
  overflow: auto;
}

.senti-suggest__item{
  padding: 12px 14px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.senti-suggest__item:hover{
  background: rgba(0,0,0,.03);
}

.senti-suggest__name{
  font-size: 14px;
  color: rgba(0,0,0,.82);
}

.senti-label{
  font-size: 12px;
  font-weight: 650;
  letter-spacing: .02em;
  color: var(--fg);
  margin: 0 0 8px 0;
}

/* Chips */
.senti-chips{
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}

.senti-chip{
  border: 1px solid var(--line);
  border-radius: 999px;
  height: 34px;
  padding: 0 12px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  font-size: 13px;
  color: var(--fg);
}

.senti-chip__x{
  width: 22px;
  height: 22px;
  border-radius: 999px;
  border: 1px solid var(--line);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--muted);
}

/* Autocomplete dropdown */
.senti-dropdown{
  margin-top: 10px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 18px 40px rgba(0,0,0,.08);
  max-height: 260px;
  overflow: auto;
}

.senti-option{
  width: 100%;
  text-align: left;
  padding: 12px 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.senti-option:hover{ background: rgba(0,0,0,.03); }
.senti-option__meta{ font-size: 11px; color: var(--muted-2); }

/* Alerts / Flash */
.senti-flash{
  border-radius: var(--radius);
  border: 1px solid var(--line);
  padding: 14px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: var(--space-4);
  background: #fff;
}

.senti-flash__msg{
  font-size: 13px;
  color: var(--fg);
}

.senti-flash__close{
  font-size: 13px;
  color: var(--muted);
  background: transparent;
  border: 0;
  cursor: pointer;
  padding: 6px 8px;
  border-radius: 10px;
}
.senti-flash__close:hover{ background: rgba(0,0,0,.03); }

.senti-flash--success{ border-color: rgba(0,0,0,.20); }
.senti-flash--error{ border-color: rgba(0,0,0,.25); }

/* Motion preferences */
@media (prefers-reduced-motion: reduce){
  .senti-btn, .senti-step__dot, .senti-tile, .senti-input{ transition: none !important; }
}

/* ===== Saved recommendations: compact responsive grid ===== */
.senti-grid--saved{
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr)); /* mobile */
  gap: 12px;
}

@media (min-width: 640px){
  .senti-grid--saved{ grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (min-width: 900px){
  .senti-grid--saved{ grid-template-columns: repeat(5, minmax(0, 1fr)); }
}

.senti-grid--saved > *{ min-width: 0; }

/* Card sizing */
.saved-card{
  padding: 12px;
  box-shadow: 0 14px 36px rgba(0,0,0,.05);
}

/* Square media */
.saved-media{
  overflow: hidden;
  border-radius: 18px;
  border: 1px solid rgba(0,0,0,.10);
  aspect-ratio: 1 / 1;
  background: rgba(0,0,0,.03);
}

.saved-img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Text */
.saved-body{ margin-top: 10px; min-width: 0; }

.saved-brand{
  font-size: 12px;
  font-weight: 650;
  letter-spacing: -0.01em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.saved-name{
  margin-top: 2px;
  font-size: 11px;
  color: rgba(0,0,0,.62);
  line-height: 1.2;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Actions: compact vertical buttons */
.saved-actions{
  margin-top: 10px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.saved-actions .senti-btn{
  height: 40px;          /* lehce menší než standard 44 */
  font-size: 13px;
  padding: 0 12px;
}

.saved-actions .delete-btn{
  border-color: rgba(0,0,0,.14);
  color: rgba(0,0,0,.70);
}

.saved-actions .delete-btn:hover{
  border-color: rgba(0,0,0,.22);
}

/* Ensure full width buttons */
.w-full{ width: 100%; }


.senti-options{
  display:flex;
  flex-direction:column;
  gap:10px;
}

.senti-check{
  display:flex;
  align-items:center;
  gap:10px;
  font-size:13px;
  color: rgba(0,0,0,.75);
  user-select:none;
}

.senti-check input{
  width:18px;
  height:18px;
  accent-color:#0a0a0a; /* moderní prohlížeče */
}

/* ===== Loading button micro UX ===== */
.senti-btn[aria-busy="true"]{
  opacity: .85;
  cursor: progress;
}

.senti-btn .btn-loading{
  align-items:center;
  gap:10px;
}

.senti-spinner{
  width: 14px;
  height: 14px;
  border-radius: 999px;
  border: 2px solid rgba(0,0,0,.20);
  border-top-color: rgba(0,0,0,.85);
  animation: sentiSpin .8s linear infinite;
}

@keyframes sentiSpin{
  to { transform: rotate(360deg); }
}

/* ===== Status / Error pills ===== */
.senti-pill{
  border-radius: 999px;
  padding: 10px 14px;
  font-size: 13px;
  line-height: 1.2;
  border: 1px solid rgba(0,0,0,.14);
  background: rgba(255,255,255,.75);
  color: rgba(0,0,0,.78);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.senti-pill--info{
  border-color: rgba(0,0,0,.14);
}

.senti-pill--error{
  border-color: rgba(0,0,0,.22);
  color: rgba(0,0,0,.80);
}

/* ===== Cards enter animation (subtle luxury) ===== */
@media (prefers-reduced-motion: no-preference){
  .reco-enter{
    animation: sentiFadeUp .28s ease-out both;
  }
  @keyframes sentiFadeUp{
    from { opacity: 0; transform: translateY(6px); }
    to   { opacity: 1; transform: translateY(0); }
  }
}

/* ===== Toast (lux minimal) ===== */
/* Toast - výchozí stav: NIKDY nerenderuj */
.senti-toast{
  display: none;              /* ✅ tvrdé skrytí = žádný flash */
  z-index: 9999;
  width: calc(100% - 24px);
  position: fixed;
  top: 120px;
  left: 12px;
  pointer-events: none;
  opacity: 0;
}

/* když se má ukázat */
.senti-toast.is-show{
  display: block;             /* nebo flex, podle wrapperu */
  opacity: 1;
}

/* když se skrývá */
.senti-toast.is-hide{
  display: none;              /* nejčistší – toast pryč */
  opacity: 0;
}

.senti-toast__inner{
  pointer-events: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 14px;
  border-radius: 999px;
  border: 1px solid rgba(0,0,0,.16);
  background: rgba(0,0,0,.92);
  box-shadow: 0 18px 40px rgba(0,0,0,.08);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);x
}

.senti-toast__msg{
  font-size: 13px;
  line-height: 1.2;
  color: rgba(255,255,255,.82);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.senti-toast__close{
  width: 32px;
  height: 32px;
  border-radius: 999px;
  border: 1px solid rgba(0,0,0,.12);
  background: transparent;
  color: rgba(0,0,0,.7);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.senti-toast__close:hover{
  border-color: rgba(0,0,0,.22);
  color: rgba(0,0,0,.9);
}

/* show/hide animation */
@media (prefers-reduced-motion: no-preference){
  .senti-toast.is-show{
    opacity: 1;
    animation: sentiToastIn .22s ease-out both;
  }
  .senti-toast.is-hide{
    opacity: 0;
    animation: sentiToastOut .18s ease-in both;
  }
  @keyframes sentiToastIn{
    from { transform: translateX(-50%) translateY(10px); opacity: 0; }
    to   { transform: translateX(-50%) translateY(0); opacity: 1; }
  }
  @keyframes sentiToastOut{
    from { transform: translateX(-50%) translateY(0); opacity: 1; }
    to   { transform: translateX(-50%) translateY(10px); opacity: 0; }
  }
}

/* desktop: top-right */
@media (min-width: 900px){
  .senti-toast{
    left: auto;
    right: 18px;
    bottom: auto;
    top: 18px;
    transform: none;
    width: 420px;
  }
  @media (prefers-reduced-motion: no-preference){
    @keyframes sentiToastIn{
      from { transform: translateY(-10px); opacity: 0; }
      to   { transform: translateY(0); opacity: 1; }
    }
    @keyframes sentiToastOut{
      from { transform: translateY(0); opacity: 1; }
      to   { transform: translateY(-10px); opacity: 0; }
    }
  }
}

/* ===== Collection grid ===== */
/* Collection layout */
.senti-grid--collection{
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

/* Desktop: 2 sloupce (ne 4), ať je prostor pro feedback */
@media (min-width: 900px){
  .senti-grid--collection{
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }
}

.senti-collection-card{
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 14px;
  padding: 14px;
  align-items: start;
  margin-bottom: var(--space-2);
}

@media (min-width: 520px){
  .senti-collection-card{
    grid-template-columns: 130px 1fr;
    padding: 16px;
  }
}

.senti-collection-media{
  position: relative;
}

.senti-collection-img{
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 14px;
  display: block;
  border: 1px solid rgba(0,0,0,.08);
}

.senti-collection-remove{
  position: absolute;
  top: 8px;
  right: 8px;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  border: 1px solid rgba(0,0,0,.15);
  background: rgba(255,255,255,.85);
  backdrop-filter: blur(6px);
  transition: .15s ease;
}

.senti-collection-remove:hover{
  border-color: rgba(0,0,0,.35);
}

.senti-collection-body{
  min-width: 0;
  position: relative;
}

.senti-collection-brand{
  font-size: 13px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(0,0,0,.55);
  padding: 0 var(--space-1);
}

.senti-collection-name{
  font-size: 16px;
  font-weight: 600;
  color: #000;
  line-height: 1.2;
  padding: 0 var(--space-1);
}

.senti-feedback__label{
  min-width: 70px;
  opacity: .8;
}


/* remove button – clean outline */
.collection-remove{
  position: absolute;
  top: 10px;
  right: 10px;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.55);
  background: rgba(255,255,255,.80);
  color: rgba(0,0,0,.70);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  line-height: 1;
}

.collection-remove:hover{
  background: #fff;
  border-color: rgba(255,255,255,.85);
  color: rgba(0,0,0,.88);
}


/* Profile layout */
.senti-grid--profile{
  display:grid;
  grid-template-columns: 1fr;
  gap: 14px;
}
@media (min-width: 900px){
  .senti-grid--profile{ grid-template-columns: 1.25fr .75fr; gap: 18px; }
}

.senti-card--padded{ padding: 18px; }
.senti-card--muted{ opacity: .92; }

.senti-card__head{ margin-bottom: 10px; }
.senti-divider{
  height: 1px;
  background: rgba(0,0,0,.10);
  margin: 14px 0;
}

.senti-form{ display:grid; gap: 12px; }
.senti-field{ display:grid; gap: 8px; }

.senti-label{
  font-size: 12px;
  letter-spacing: .02em;
  color: rgba(0,0,0,.70);
}

.senti-input, .senti-select{
  width:100%;
  border-radius: 14px;
  border: 1px solid rgba(0,0,0,.14);
  padding: 14px 14px;
  background:#fff;
  font-size: 15px;
  outline: none;
}

.senti-input:focus, .senti-select:focus{
  border-color: rgba(0,0,0,.35);
  box-shadow: 0 0 0 3px rgba(0,0,0,.06);
}

.senti-input--readonly{
  pointer-events:none;
  opacity:.65;
}

.senti-checkgrid{
  display:grid;
  gap: 10px;
  grid-template-columns: 1fr;
}

@media (min-width: 560px){
  .senti-checkgrid{ grid-template-columns: 1fr 1fr; }
}

/* ===== Topbar ===== */
.senti-topbar{
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0,0,0,.08);
}

.senti-topbar__inner{
  /*max-width: 1120px;*/
 width: auto;
 max-width: 90%;
  margin: 0 auto;
  padding: 14px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

@media(max-width: 640px) {
	.senti-topbar__inner {
		padding-top: 30px!important;
		padding-bottom: 0;
	}
}

/* NAV reset – zabrání bullets a padání pod sebe */
.senti-topbar ul,
.senti-nav__list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.senti-nav__list {
  display: flex;
  align-items: center;
  gap: 1px;
  flex-wrap: nowrap;
  background: #000;
  border-radius: 999px;
  padding-right: 10px!important;
}

.senti-nav__link {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  text-align: center;
  line-height: 120%;
}


/* Brand */


.senti-brand{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex: 0 0 auto;
  min-width: 0;
}

.senti-brand__mark{
  font-size: 24px;
  line-height: 1;
  letter-spacing: .08em;
  flex: 0 0 auto;
  white-space: nowrap;
  font-family: "Playfair Display", serif;
}
.senti-brand__sub{
  font-size: 12px;
  line-height: 1;
  letter-spacing: .14em;
  color: var(--muted);
  opacity: .85;
  flex: 0 0 auto;
  white-space: nowrap;
  margin: 0;
}

/* přebití “stejně širokých bloků / flex:1” */
.senti-brand__mark,
.senti-brand__sub{
  width: auto !important;
  max-width: 100%;
}

@media (max-width: 640px){
  .senti-brand{
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }
  .senti-brand__mark{ font-size: 22px; }
  .senti-brand__sub{
    font-size: 11px;
    letter-spacing: .16em;
    white-space: normal;
  }
}

@media (min-width: 641px){
  .senti-brand{
    display: inline-flex !important;
    align-items: center !important;
    justify-content: flex-start !important;
    gap: 10px !important;
    width: auto !important;
    max-width: 100%;
  }

  .senti-brand__mark,
  .senti-brand__sub{
    flex: 0 0 auto !important;
    width: auto !important;
    max-width: 100%;
  }

  .senti-brand__mark + .senti-brand__sub{
    margin-left: 10px !important;
  }

  .senti-brand__sub{
    text-align: left !important;
    margin-left: 0 !important;
  }
}


/* Inline brand row */
.senti-brand--inline{
  display: inline-flex;
  align-items: center;      /* vertikální vycentrování */
  gap: 10px;
  text-decoration: none;
  color: #000;
  min-width: 0;             /* důležité pro flex overflow */
}

/* Logo box – drží rozměr, nikdy nepřeteče */
.senti-brand__logo{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 60px;             /* výška loga v headeru */
  width: auto;             /* max šířka loga */
  max-width: 140px;
  min-width: 90px;
  overflow: hidden;
  flex: 0 0 auto;
}

.senti-brand__logo img{
  width: 100%;
  height: 100%;
  object-fit: contain;      /* zachová poměr */
  display: block;
}


/* Responsive: na velmi úzkých displejích zmenšit logo */
@media (max-width: 420px){
  .senti-brand__logo{ width: 96px; height: 24px; min-width: 76px; }
  .senti-brand__sub{ font-size: 10px; }
}


/* Desktop nav */
.senti-nav{
  display:none;
  gap: 16px;
  align-items:center;
}
@media (min-width: 900px){
  .senti-nav{ display:flex; }
}
.senti-nav__link{
  font-size: 13px;
  color: rgba(255,255,255,1);
  text-decoration:none;
  padding: 8px 15px;
  margin: 5px 4px;
  border-radius: 999px;
  border: 1px solid transparent;
}
.senti-nav__link:hover{
  color: rgba(255,255,255,0.95);
  border-color: rgba(0,0,0,.12);
}
.senti-nav__link.is-active{
  color: #000;
  border-color: rgba(0,0,0,.20);
  background: rgba(255,255,255,1);
}

/* Right */
.senti-topbar__right{
  display:flex;
  align-items:center;
  gap: 10px;
}

@media (max-width: 640px){

  .senti-topbar__inner{
    flex-wrap: wrap;           /* ✅ dovolí druhý řádek */
    justify-content: flex-start; /* space-between v wrap režimu dělá bordel */
  }

  /* Right blok spadne na nový řádek */
  .senti-topbar__right{
    flex: 0 0 100%;
    width: 100%;
    justify-content: flex-end; /* doprava (nebo flex-start) */
    margin-top: 8px;
  }
  
  .senti-topbar__inner #logout-form {
  	display: none;
  }
  
}



/* Language segmented */
.senti-lang{
  display:flex;
  border: 1px solid rgba(0,0,0,.14);
  border-radius: 999px;
  overflow:hidden;
  background: rgba(255,255,255,.75);
}

@media (max-width: 640px){
  .senti-lang{
    margin-left: auto;   /* ✅ zarovná k pravému okraji */
  }
}

.senti-lang__btn{
  padding: 7px 10px;
  font-size: 12px;
  color: rgba(0,0,0,.72);
  text-decoration:none;
}
.senti-lang__btn.is-active{
  color: #fff;
  background: #000;
}

/* User badge */

.senti-user{ display:none; }

@media(min-width: 640px) {
.senti-user{ display:flex; }
}

.senti-user__meta{
  text-align:right;
  line-height: 1.25;
}
.senti-user__name{
  font-size: 12px;
  color: rgba(0,0,0,.86);
}
.senti-user__role{
  font-size: 11px;
  color: rgba(0,0,0,.55);
  letter-spacing: .08em;
  text-transform: uppercase;
}

/* Burger */
.senti-burger{
  display:inline-flex;
  flex-direction: column;
  gap: 6px;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: 1px solid rgba(0,0,0,.14);
  background: #fff;
  align-items:center;
  justify-content:center;
}
.senti-burger span{
  width: 16px;
  height: 1px;
  background: rgba(0,0,0,.85);
  display:block;
}
@media (min-width: 900px){
  .senti-burger{ display:none; }
}

/* Drawer */
.senti-drawer{
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.30);
  padding: 14px;
}
.senti-drawer__panel{
  max-width: 520px;
  margin: 0 auto;
  border-radius: 18px;
  background:#fff;
  border: 1px solid rgba(0,0,0,.10);
  box-shadow: 0 24px 60px rgba(0,0,0,.18);
  overflow:hidden;
}
.senti-drawer__head{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding: 14px 14px;
  border-bottom: 1px solid rgba(0,0,0,.08);
}
.senti-drawer__title{
  font-family: "Playfair Display", serif;
  font-size: 18px;
}
.senti-drawer__group{
  padding: 12px 14px;
  display:grid;
  gap: 8px;
}
.senti-drawer__link{
  text-decoration:none;
  color: rgba(0,0,0,.84);
  border: 1px solid rgba(0,0,0,.10);
  border-radius: 14px;
  padding: 12px 12px;
}
.senti-drawer__link.is-active{
  border-color: rgba(0,0,0,.22);
  background: rgba(0,0,0,.03);
}
.senti-drawer__bottom{
  border-top: 1px solid rgba(0,0,0,.08);
}
.senti-drawer__row{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 12px;
}

.senti-feedback{ display:flex; flex-direction:column; gap:10px; }
.senti-feedback__row{ display:flex; align-items:center; gap:8px; flex-wrap:wrap; }

.senti-pill{
  border: 1px solid rgba(0,0,0,.18);
  background: #fff;
  padding: 8px 10px;
  border-radius: 999px;
  font-size: 13px;
  line-height: 1;
  transition: .15s ease;
}

.senti-pill:hover{ border-color: rgba(0,0,0,.35); }
.senti-pill.is-on{
  background:#000;
  color:#fff;
  border-color:#000;
}

.senti-feedback__row--slider{
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 10px;
  align-items: center;
  margin-top: 10px;
}

.senti-slider{
  display: grid;
  grid-template-columns: 24px 1fr 24px 28px;
  gap: 10px;
  align-items: center;
}

.senti-slider__min,
.senti-slider__max{
  font-size: 16px;
  opacity: .85;
  user-select: none;
}

.senti-slider__val{
  font-size: 12px;
  color: rgba(0,0,0,.65);
  text-align: right;
  min-width: 28px;
}

/* Range – čistý černobílý */
.senti-range{
  width: 100%;
  appearance: none;
  height: 2px;
  background: rgba(0,0,0,.18);
  border-radius: 999px;
  outline: none;
}

/* Thumb */
.senti-range::-webkit-slider-thumb{
  appearance: none;
  width: 18px;
  height: 18px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid rgba(0,0,0,.6);
  box-shadow: 0 6px 18px rgba(0,0,0,.12);
  cursor: pointer;
}

.senti-range::-moz-range-thumb{
  width: 18px;
  height: 18px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid rgba(0,0,0,.6);
  box-shadow: 0 6px 18px rgba(0,0,0,.12);
  cursor: pointer;
}

/* Intent tiles: reuse family tile style */
.senti-intent-tile{
  cursor: pointer;
}

/* schovej radio (kliká se na celý label/tile) */
.senti-intent-tile input[type="radio"]{
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

/* když je něco vybrané, ostatní ztišit (moderní, bez JS) */
.senti-grid--intents:has(input[type="radio"]:checked) .senti-intent-tile{
  opacity: .45;
}

/* vybrané nech plně */
.senti-grid--intents:has(input[type="radio"]:checked) .senti-intent-tile:has(input[type="radio"]:checked){
  opacity: 1;
}

/* pojistka: pokud bys nepřidával senti-tile--active v blade,
   tak tohle aktivuje border automaticky */
.senti-intent-tile:has(input[type="radio"]:checked){
  border-color: rgba(0,0,0,1);
  box-shadow: 0 12px 28px rgba(0,0,0,.08);
}

/* Soft anti-copy */
.no-copy {
  -webkit-user-select: none;
  user-select: none;
  -webkit-touch-callout: none; /* iOS */
}

.no-copy img {
  pointer-events: none;
}


.senti-fitline {width: 160px}
@media(min-width: 640px) {
	.senti-fitline {position: absolute; right: 0; top: 0; text-align: right}
}
.senti-fit{display:inline-flex;align-items:center;gap:6px;padding:4px 10px;border-radius:999px;border:1px solid rgba(0,0,0,.16);font-size:12px;font-weight:700;letter-spacing:.02em;background:#fff;}
.senti-fit--core{border-color:rgba(0,0,0,.8);}
.senti-fit--flex{border-color:rgba(0,0,0,.22);opacity:.9;}
.senti-fit--off{border-color:rgba(0,0,0,.22);opacity:.55;}

.senti-fit{
  display:inline-flex; align-items:center; gap:10px;
  padding:4px 10px; border-radius:999px;
  border:1px solid rgba(0,0,0,.16);
  font-size:12px; font-weight:700;
  background:#fff;
}
.senti-fit__dots{
  display:inline-flex;
  align-items:center;
  gap:6px;
  width: 42px;         /* pevná šířka pole */
  justify-content:flex-start;
}

.senti-dot{
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: rgba(0,0,0,.12);
  transform: translateY(0);
  transition: transform .12s ease, background .12s ease, width .12s ease, height .12s ease;
}

.senti-dot.is-on{
  width: 9px;
  height: 9px;
  background: rgba(0,0,0,.92);
}

.senti-fit__text{ white-space:nowrap; }

.senti-fit--core{ border-color: rgba(0,0,0,.85); }
.senti-fit--flex{ border-color: rgba(0,0,0,.22); }
.senti-fit--off { border-color: rgba(0,0,0,.22); opacity:.65; }

.senti-dot.is-on{ background: rgba(0,0,0,.82); }


.senti-fit{
  display:inline-flex;
  align-items:center;
  gap:8px;
  white-space:nowrap;
}

.senti-fit__num{
  width:18px;
  height:18px;
  border-radius:999px;
  background:#0a0a0a;
  color:#fff;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  font-size:11px;
  line-height:1;
  font-weight:700;
  letter-spacing:-.02em;
}


.senti-collection-headrow{
  display:grid;
  grid-template-columns: 1fr;
  gap: 14px;
  margin-bottom: 16px;
}

@media (min-width: 860px){
  .senti-collection-headrow{
    grid-template-columns: 1fr auto; /* vlevo text, vpravo legend+btn */
    align-items: end;
    gap: 18px;
  }
}

.senti-collection-headrow__right{
  display:flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-start; /* mobil */
}

@media (min-width: 860px){
  .senti-collection-headrow__right{
    align-items: flex-end; /* PC vpravo zarovnat doprava */
    text-align: right;
  }
}

.senti-fit-legend {margin: 30px 0}

.senti-fit-legend__line{
  display:flex;
  gap: 10px;
  justify-content: flex-start;
}

.senti-fit-legend__dots{
  display:inline-block;
  width: 42px;          /* pevná šířka jako u badge dots */
  text-align: left;
  letter-spacing: .12em;
  opacity: .75;
  font-weight: 800;
}

@media (min-width: 860px){
  .senti-fit-legend__dots{
    text-align: right;  /* na PC hezky zarovná k textu */
  }
}

/* Brand chips */
.senti-brandchips{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
}

.senti-chip{
  border:1px solid rgba(0,0,0,.16);
  background:#fff;
  border-radius:999px;
  padding:8px 12px;
  font-size:12px;
  font-weight:700;
  cursor:pointer;
  transition: border-color .15s ease, opacity .15s ease, transform .12s ease, box-shadow .15s ease;
  -webkit-tap-highlight-color: transparent;
}
.senti-chip:hover{ border-color: rgba(0,0,0,.28); }
.senti-chip:active{ transform: translateY(1px); }
.senti-chip.is-on{
  border-color: rgba(0,0,0,.85);
  box-shadow: 0 10px 22px rgba(0,0,0,.06);
}

/* Catalog grid */
.senti-catalog-grid{
  display:grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

@media (min-width: 820px){
  .senti-catalog-grid{
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
  }
}

.senti-catalog-card{
  overflow:hidden;
  padding:0;
}

.senti-catalog-media{
  position:relative;
  background:#fff;
}

.senti-catalog-img{
  width:100%;
/*  height: 160px; */
  object-fit: cover;
  display:block;
  aspect-ratio: 1 / 1!;
  border-radius: 16px; /* nebo stejné jako tile */


}

/*
@media (min-width: 820px){
  .senti-catalog-img{ height: 360px; }
}
*/

.senti-catalog-icons{
  position:absolute;
  top:10px;
  right:10px;
  display:flex;
  gap:6px;
}

.senti-ico-badge{
  width: 28px;
  height: 28px;
  border-radius: 999px;
  display:flex;
  align-items:center;
  justify-content:center;
  background: rgba(255,255,255,.92);
  border: 1px solid rgba(0,0,0,.12);
  font-size: 14px;
  font-weight: 900;
}

.senti-catalog-body{
  padding: 10px;
}


/* Remove button */
.senti-collection-card{ position: relative; }

.senti-collection-remove{
  position:absolute;
  top:10px;
  left:10px;                 /* nebo right:10px; dle tebe */
  z-index: 30;
  border: 0;
  background: transparent;
  cursor: pointer;
  font-size: 18px;
  line-height: 1;
  opacity: .75;
}
.senti-collection-remove:hover{ opacity: 1; }

/* Confirm box: default hidden */
.senti-remove-confirm{
  display: none;             /* <-- klíčové */
  position: absolute;
  top: 10px;
  left: 10px;                /* stejné jako X, aby to nahradilo X */
  z-index: 40;
  gap: 8px;
  align-items: center;
  background: rgba(255,255,255,.94);
  border: 1px solid rgba(0,0,0,.12);
  border-radius: var(--radius);
  padding: 8px 10px;
  box-shadow: 0 10px 28px rgba(0,0,0,.08);
  backdrop-filter: blur(6px);
}

/* Show confirm only when active */
.senti-collection-card.is-confirming .senti-remove-confirm{
  display: flex;
}

/* When confirming, hide X (prevents overlap/click issues) */
.senti-collection-card.is-confirming .senti-collection-remove{
  opacity: 0;
  pointer-events: none;
}

.dob-wrap{
  display:flex;
  align-items:center;
  gap:8px;
}

.dob{
  text-align:center;
  /*
  border:0;
  border:2px solid rgba(0,0,0,.25);
  */
  padding:10px 6px;
  font-size:16px;
  outline:none;
  background:transparent;
}

.dob:focus{
  border-bottom-color: rgba(0,0,0,.7);
}

.dob-2{ width: 3ch; }   /* 2 čísla pohodlně */
.dob-4{ width: 5ch; }   /* 4 čísla pohodlně */

.dob-dot{
  opacity:.7;
  font-size:18px;
  line-height:1;
  transform: translateY(2px);
}

/* DOB – ve stejném stylu jako .senti-input */
.dob-wrap{
  display:flex;
  align-items:center;
  gap:10px;
}

/* tyhle inputy dědí vzhled z .senti-input, my jen doladíme rozměry */
.dob{
  text-align:center;
  font-size: inherit;     /* žádné "kobyly" */
  line-height: inherit;
  padding-left: 0;
  padding-right: 0;
}

/* šířky polí */
.dob--2{ width: 3.6rem; }  /* DD / MM */
.dob--4{ width: 5.2rem; }  /* RRRR */

/* tečky mezi poli */
.dob-dot{
  opacity: .6;
  font-size: 16px;
  line-height: 1;
  transform: translateY(1px);
  user-select: none;
}

/* (volitelné) na mobilu trochu zmenšit gap */
@media (max-width: 420px){
  .dob-wrap{ gap:8px; }
  .dob--2{ width: 3.3rem; }
  .dob--4{ width: 4.9rem; }
}


/* Když je vybráno, ostatní kartičky zešednou */
.senti-tile--dim .senti-tile__img{
  opacity: .35;
  filter: grayscale(1);
}

/* nech vybranou jasnou i když má jiné efekty */
.senti-tile--active .senti-tile__img{
  opacity: 1;
  filter: none;
}

/* disabled (např. v dislike kroku) ať je ještě víc “mimo” */
.senti-tile--disabled .senti-tile__img{
  opacity: .25;
  filter: grayscale(1);
}

/* inline fit result in catalog card */
.senti-fitpeek{
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid rgba(0,0,0,.08);
}

.senti-fitpeek__row{
  display:flex;
  align-items:center;
  gap:10px;
  flex-wrap:wrap;
}

.senti-fitpeek__badge{
  display:inline-flex;
  align-items:center;
  gap:8px;
}

.senti-fitnum{
  width: 22px;
  height: 22px;
  border-radius: 999px;
  background:#000;
  color:#fff;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  font-size: 11px;
  font-weight: 700;
  line-height: 1;
}

.senti-fitlabel{
  font-size: 12px;
  font-weight: 600;
}

.senti-fitpeek__dots{
  display:inline-flex;
  align-items:center;
  gap:6px;
}

/* malé prázdné, větší plné */
.senti-dot{
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: rgba(0,0,0,.16);
}

.senti-dot.is-on{
  width: 9px;
  height: 9px;
  background:#000;
}

.senti-fitpeek__badge{
  font-size: 12px;
  font-weight: 600;
  line-height: 1;
  border: 1px solid rgba(0,0,0,.18);
  border-radius: 999px;
  padding: 6px 10px;
  background: #fff;
}


/* =========================
   SENTI – Pagination override
   ========================= */

/* wrapper (to tvoje <div style="border-top:...">) */
.senti-pager,
.senti-pagination,
nav[aria-label="Pagination Navigation"]{
  background: transparent !important;
  color: #111 !important;
}

/* Vypnout šedé pozadí a "obří" layouty */
nav[aria-label="Pagination Navigation"] .shadow-sm,
nav[aria-label="Pagination Navigation"] .bg-gray-50,
nav[aria-label="Pagination Navigation"] .bg-white,
nav[aria-label="Pagination Navigation"] .dark\:bg-gray-800{
  background: transparent !important;
  box-shadow: none !important;
}

/* Přinutit čísla, aby nebyla vertikálně */
nav[aria-label="Pagination Navigation"] .inline-flex,
nav[aria-label="Pagination Navigation"] .relative.z-0.inline-flex{
  display: inline-flex !important;
  flex-direction: row !important;
  align-items: center !important;
  flex-wrap: wrap !important;
  gap: 8px !important;
}

/* Zrušit -ml-px, které dělá slepování a někdy „schody“ */
nav[aria-label="Pagination Navigation"] .-ml-px{
  margin-left: 0 !important;
}

/* "Showing X to Y..." */
nav[aria-label="Pagination Navigation"] p{
  margin: 0 !important;
  font-size: 12px !important;
  opacity: .75 !important;
}

/* Stránkovací tlačítka: link + span */
nav[aria-label="Pagination Navigation"] a,
nav[aria-label="Pagination Navigation"] span[aria-current="page"] > span,
nav[aria-label="Pagination Navigation"] span[aria-disabled="true"] > span{
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;

  min-width: 38px;
  height: 34px;

  padding: 0 12px !important;
  border-radius: 999px !important;

  border: 1px solid rgba(0,0,0,.18) !important;
  background: #000 !important;
  color: #fff !important;

  font-size: 13px !important;
  font-weight: 600 !important;
  line-height: 1 !important;
  text-decoration: none !important;
  user-select: none;
}

/* Aktivní stránka – invert (bílá) */
nav[aria-label="Pagination Navigation"] span[aria-current="page"] > span{
  background: #fff !important;
  color: #000 !important;
  border-color: rgba(0,0,0,.22) !important;
}

/* Disabled Previous/Next */
nav[aria-label="Pagination Navigation"] span[aria-disabled="true"] > span{
  opacity: .35 !important;
  cursor: not-allowed !important;
}

/* Hover/Focus */
nav[aria-label="Pagination Navigation"] a:hover{
  opacity: .9 !important;
}
nav[aria-label="Pagination Navigation"] a:focus{
  outline: none !important;
  box-shadow: 0 0 0 4px rgba(0,0,0,.10) !important;
}

/* Ikony šipek – udělat bílé a normální velikost */
nav[aria-label="Pagination Navigation"] svg{
  width: 16px !important;
  height: 16px !important;
  color: currentColor !important;
}

/* Mobilní řádek (sm:hidden) – ať se to taky tváří jako SENTI */
nav[aria-label="Pagination Navigation"] .sm\:hidden a,
nav[aria-label="Pagination Navigation"] .sm\:hidden span{
  border-radius: 999px !important;
}

/* Volitelně: dotáhnout spacing celé lišty */
.senti-pager{
  border-top: 1px solid rgba(0,0,0,.08);
  padding: 12px 14px;
}




.senti-pagination__row{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  flex-wrap:wrap;
}
.senti-pagination__meta{
  font-size:12px;
  opacity:.75;
}
.senti-pagination__links{
  display:flex;
  align-items:center;
  gap:8px;
  flex-wrap:wrap;
}
.senti-page{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-width:38px;
  height:34px;
  padding:0 12px;
  border-radius:999px;
  border:1px solid rgba(0,0,0,.18);
  background:#000;
  color:#fff;
  font-size:13px;
  font-weight:600;
  text-decoration:none;
}
.senti-page:hover{ opacity:.9; }
.senti-page.is-current{
  background:#fff;
  color:#000;
  border-color:rgba(0,0,0,.22);
}
.senti-page.is-disabled{
  opacity:.35;
  cursor:not-allowed;
}



    /* POS – stejné jako perfumes */
    .senti-pos__bar{
      position: sticky; top: 0; z-index: 30;
      background: rgba(255,255,255,.86);
      backdrop-filter: blur(10px);
      padding: 14px 0 12px;
    }
    .senti-card{
      border: 1px solid rgba(0,0,0,.10);
      border-radius: 20px;
      background: #fff;
      overflow: hidden;
    }
    .senti-btn{
      border: 1px solid rgba(0,0,0,.12);
      border-radius: 16px;
      padding: 10px 14px;
      background: #fff;
      transition: transform .08s ease, background .15s ease, border-color .15s ease;
    }
    .senti-btn:hover{ background: rgba(0,0,0,.03); border-color: rgba(0,0,0,.18); }
    .senti-btn:active{ transform: scale(.98); }
    .senti-input{
      width: 100%;
      border: 1px solid rgba(0,0,0,.12);
      border-radius: 18px;
      padding: 12px 14px;
      font-size: 16px;
      outline: none;
      background: #fff;
    }
    .senti-input:focus{
      border-color: rgba(0,0,0,.26);
      box-shadow: 0 0 0 4px rgba(0,0,0,.06);
    }
    .senti-pill{
      display: inline-flex;
      align-items: center;
      padding: 5px 10px;
      border-radius: 999px;
      border: 1px solid rgba(0,0,0,.10);
      background: rgba(0,0,0,.02);
      font-size: 12px;
      color: rgba(0,0,0,.72);
      line-height: 1;
    }
    .senti-muted{ color: rgba(0,0,0,.52); }
    .senti-kicker{ letter-spacing: .18em; text-transform: uppercase; font-size: 11px; color: rgba(0,0,0,.45); }
    .senti-h1{ font-size: 22px; font-weight: 650; letter-spacing: -.02em; }
    @media (min-width: 640px){ .senti-h1{ font-size: 26px; } }
    .senti-grid{
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 12px;
    }
    @media (min-width: 768px){ .senti-grid{ grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 14px; } }
    @media (min-width: 1024px){ .senti-grid{ grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 14px; } }
    .senti-cover{
      aspect-ratio: 4 / 3;
      background: rgba(0,0,0,.03);
      display: flex; align-items: center; justify-content: center;
      overflow: hidden;
    }
    .senti-cover img{ width: 100%; height: 100%; object-fit: cover; transform: scale(1); transition: transform .22s ease; }
    a:hover .senti-cover img{ transform: scale(1.02); }

    /* pro "všechny tóny" chceme čtverec */
    .senti-cover--sq{ aspect-ratio: 1 / 1; }



  .senti-badge{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    width:44px;
    height:44px;
    border-radius:999px;
    background:#000;
    color:#fff;
    font-weight:800;
    font-size:12px;
    letter-spacing:.02em;
    line-height:1;
  }
  

.senti-chip{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding: 10px 12px;
  border-radius: 999px;
  border: 1px solid rgba(0,0,0,.12);
  background: #fff;
  font-size: 13px;
  line-height: 1;
}
.senti-chip--off{
  background: rgba(0,0,0,.03);
  color: rgba(0,0,0,.55);
}
.senti-chip__size{ font-weight: 650; }
.senti-chip__price{ font-weight: 650; }
.senti-chip__meta{ font-size: 12px; color: rgba(0,0,0,.55); }



/* === VARIANTS GRID === */
.variants-wrap{
  border:1px solid rgba(0,0,0,.10);
  border-radius:14px;
  padding:12px;
  background:#fff;
}

.variants-head{
  display:grid;
  grid-template-columns: 1.2fr .5fr 1.2fr .7fr .7fr .5fr 44px;
  gap:10px;
  padding:6px 4px 10px;
}

.vh{
  font-size:11px;
  letter-spacing:.18em;
  text-transform:uppercase;
  color: rgba(0,0,0,.45);
}

.variants-rows{
  display:grid;
  gap:10px;
}

.variant-row{
  display:grid;
  grid-template-columns: 1.2fr .5fr 1.2fr .7fr .7fr .5fr 44px;
  gap:10px;
  align-items:center;
  padding:10px 4px;
  border-top:1px solid rgba(0,0,0,.06);
}

.v-in{ width:100%; }
.v-in--xs{ max-width:140px; }
.v-in--sm{ max-width:180px; }

.v-check{
  display:flex;
  align-items:center;
  gap:8px;
  font-size:13px;
  color: rgba(0,0,0,.75);
  user-select:none;
}
.v-check input{ transform: translateY(1px); }

.v-del{
  padding:10px 0;
  width:44px;
  justify-content:center;
}

@media (max-width: 980px){
  .variants-head{ display:none; }
  .variant-row{
    grid-template-columns: 1fr;
    gap:8px;
    padding:12px 0;
  }
  .v-in--xs, .v-in--sm{ max-width:none; }
  .v-del{ width:auto; }
}



/* === Variant list (Public) === */
.senti-price-list{
  display:grid;
  gap:10px;
}
.senti-price-row{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
  padding:10px 12px;
  border:1px solid rgba(0,0,0,.10);
  border-radius:14px;
  background:#fff;
}
.senti-price-row__left{
  min-width:0;
}
.senti-price-size{
  font-weight:650;
  color: rgba(0,0,0,.86);
}
.senti-price-sub{
  margin-top:3px;
  font-size:12px;
  color: rgba(0,0,0,.55);
}
.senti-price-val{
  font-weight:650;
  color: rgba(0,0,0,.86);
  white-space:nowrap;
}
/* ============================================================
   PUBLIC PERFUME DETAIL — "Chanel / Dior" editorial polish
   Scoped by .public-perfume to avoid affecting Admin/POS.
   ============================================================ */

.public-perfume{
  --pp-radius: 24px;
  --pp-line: rgba(0,0,0,.10);
  --pp-soft: rgba(0,0,0,.04);
}

.public-perfume.senti-wrap{
  max-width: 980px;
}

.public-perfume .senti-card{
  border-radius: var(--pp-radius);
  border-color: var(--pp-line);
}

/* Hero */
.public-perfume .pp-hero{
  padding: 18px;
}

.public-perfume .pp-hero__grid{
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 18px;
  align-items: start;
}

@media (min-width: 640px){
  .public-perfume .pp-hero{ padding: 22px; }
  .public-perfume .pp-hero__grid{
    grid-template-columns: 220px 1fr;
    align-items: center;
  }
}

.public-perfume .pp-thumb{
  width: 160px;
  aspect-ratio: 1 / 1;
  border-radius: 22px;
  overflow: hidden;
  background: var(--pp-soft);
  border: 1px solid rgba(0,0,0,.06);
  display:flex;
  align-items:center;
  justify-content:center;
}

@media (min-width: 640px){
  .public-perfume .pp-thumb{ width: 220px; border-radius: 26px; }
}

.public-perfume .pp-thumb img{
  width:100%;
  height:100%;
  object-fit: cover;
  display:block;
}

.public-perfume .pp-kicker{
  letter-spacing: .22em;
  text-transform: uppercase;
  font-size: 11px;
  color: rgba(0,0,0,.48);
}

.public-perfume .pp-title{
  font-family: var(--serif);
  font-weight: 600;
  letter-spacing: -0.02em;
  font-size: 28px;
  line-height: 1.06;
  margin: 6px 0 0;
}

@media (min-width: 640px){
  .public-perfume .pp-title{ font-size: 36px; }
}

.public-perfume .pp-meta{
  margin-top: 14px;
  display:flex;
  flex-wrap:wrap;
  gap: 8px;
}

.public-perfume .pp-meta .senti-pill{
  padding: 7px 12px;
  font-size: 12.5px;
  background: rgba(0,0,0,.018);
}

/* Section titles & text */
.public-perfume .senti-block-title{
  font-family: var(--serif);
  font-weight: 600;
  letter-spacing: -0.01em;
  text-transform: none;
  font-size: 16px;
  color: rgba(0,0,0,.86);
  margin-bottom: 10px;
}

.public-perfume .senti-text{
  font-size: 16px;
  line-height: 1.7;
  color: rgba(0,0,0,.82);
}

/* Price list — more "lux" emphasis */
.public-perfume .senti-price-row{
  padding: 12px 14px;
  border-radius: 18px;
  border-color: rgba(0,0,0,.11);
}

.public-perfume .senti-price-size{
  font-size: 14px;
  letter-spacing: .02em;
}

.public-perfume .senti-price-val{
  font-family: var(--serif);
  font-size: 18px;
  letter-spacing: -0.01em;
}

.public-perfume .pp-cta{
  margin-top: 12px;
  display:flex;
  flex-wrap:wrap;
  gap: 10px;
}

/* Ingredients chips – 1 řádek, scroll */
.public-perfume .pp-notes{
  display:flex;
  gap:8px;
  flex-wrap:nowrap;
  overflow-x:auto;
  padding-bottom:6px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
}
.public-perfume .pp-note{
  flex: 0 0 auto;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(0,0,0,.10);
  background: rgba(0,0,0,.02);
  font-size: 13px;
  color: rgba(0,0,0,.78);
  white-space: nowrap;
}

.public-perfume .pp-note:hover{
  background: rgba(0,0,0,.03);
}

/* Slightly calmer grid spacing */
.public-perfume .senti-grid{
  gap: 14px;
  margin-top: 16px;
}


/* =========================================================
   PUBLIC PERFUME DETAIL — Dior/Chanel chic (layout fix)
   Scope: .public-perfume
   ========================================================= */

.public-perfume .senti-card{
  border: 1px solid rgba(0,0,0,.10);
  border-radius: 22px;
  background: #fff;
}

/* HERO (pokud už máš z dřívějška, klidně nech — tyhle jsou safe) */
.public-perfume .pp-hero{ padding:16px; }
.public-perfume .pp-hero__grid{
  display:flex;
  gap:16px;
  align-items:center; /* ✅ vertikální centrování */
}
.public-perfume .pp-thumb{
  width: 170px; height: 170px;
  border-radius: 22px;
  overflow:hidden;
  background: rgba(0,0,0,.03);
  border: 1px solid rgba(0,0,0,.10);
  box-shadow: 0 16px 40px rgba(0,0,0,.10);
  flex:0 0 auto;
}
.public-perfume .pp-thumb img{ width:100%; height:100%; object-fit:cover; }
@media (min-width: 768px){
  .public-perfume .pp-thumb{ width: 200px; height: 200px; }
}
.public-perfume .pp-kicker{
  letter-spacing:.26em;
  text-transform: uppercase;
  font-size: 11px;
  color: rgba(0,0,0,.48);
}
.public-perfume .pp-title{
  margin: 8px 0 0;
  font-size: 32px;
  font-weight: 760;
  letter-spacing: -.02em;
  line-height: 1.05;
}
@media (min-width: 768px){
  .public-perfume .pp-title{ font-size: 40px; }
}
.public-perfume .pp-meta{
  margin-top: 12px;
  display:flex;
  flex-wrap:wrap;
  gap:8px;
}
.public-perfume .senti-pill{
  display:inline-flex;
  align-items:center;
  padding: 7px 12px;
  border-radius: 999px;
  border: 1px solid rgba(0,0,0,.10);
  background: rgba(0,0,0,.02);
  font-size: 12px;
  color: rgba(0,0,0,.72);
  line-height: 1;
}

/* SECTION TITLES — víc “editorial” */
.public-perfume .pp-section-title{
  font-size: 12px;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: rgba(0,0,0,.52);
  margin-bottom: 10px;
}
.public-perfume .pp-text{
  font-size: 16px;
  line-height: 1.78;
  color: rgba(0,0,0,.82);
  white-space: pre-line;
}

/* INGREDIENTS ROW — full width, 1 řádek, scroll */
.public-perfume .pp-notes-row{ margin-top: 14px; padding: 14px 16px; }
.public-perfume .pp-notes{
  display:flex;
  gap:8px;
  flex-wrap:nowrap;
  overflow-x:auto;
  padding-bottom: 6px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
}
.public-perfume .pp-note{
  flex: 0 0 auto;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(0,0,0,.10);
  background: rgba(0,0,0,.02);
  font-size: 13px;
  color: rgba(0,0,0,.78);
  white-space: nowrap;
}

/* CONTENT GRID — VŽDY max 2 sloupce */
.public-perfume .pp-grid{
  display:grid;
  grid-template-columns: 1fr;
  gap: 14px;
  margin-top: 14px;
}
@media (min-width: 900px){
  .public-perfume .pp-grid{
    grid-template-columns: 1.15fr .85fr; /* více prostoru pro story */
    gap: 16px;
  }
}

/* PARAM ROWS */
.public-perfume .pp-rows > div{
  display:flex;
  justify-content:space-between;
  gap:14px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(0,0,0,.06);
}
.public-perfume .pp-rows > div:last-child{ border-bottom: 0; }
.public-perfume .pp-muted{ color: rgba(0,0,0,.55); }
.public-perfume .pp-strong{ font-weight: 720; color: rgba(0,0,0,.88); }

/* PRICES — chic list */
.public-perfume .pp-divider{
  margin: 14px 0;
  border-top: 1px solid rgba(0,0,0,.08);
}
.public-perfume .pp-price-list{ display:grid; gap:10px; }
.public-perfume .pp-price-row{
  display:flex;
  align-items:baseline;
  justify-content:space-between;
  gap:12px;
  padding: 12px 14px;
  border: 1px solid rgba(0,0,0,.10);
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 12px 28px rgba(0,0,0,.06);
}
.public-perfume .pp-price-size{
  font-weight: 760;
  letter-spacing: -.01em;
}
.public-perfume .pp-price-val{
  font-weight: 820;
  letter-spacing: -.01em;
}
.public-perfume .pp-cta{ margin-top: 12px; }



/* ===== POS Playlist layout ===== */
.pos-pl__grid{
  display:grid;
  grid-template-columns: 320px 1fr;
  gap:14px;
}

.pos-pl__aside{ min-width:0; }
.pos-pl__main{ min-width:0; }

/* Desktop list */
.pos-pl__list{
  display:flex;
  flex-direction:column;
  gap:8px;
  max-height: 70vh;
  overflow:auto;
  padding-right:6px;
}

/* Landscape small: horizontal scroller */
.pos-pl__row{
  display:none;
  gap:10px;
  overflow-x:auto;
  padding-bottom:6px;
  scroll-snap-type:x mandatory;
  -webkit-overflow-scrolling:touch;
}
.pos-pl__pill{
  scroll-snap-align:start;
  min-width: 240px;
  max-width: 300px;
  text-align:left;
  border:1px solid rgba(0,0,0,.10);
  border-radius:18px;
  padding:12px 12px;
  background:#fff;
  transition: transform .08s ease, border-color .15s ease, box-shadow .15s ease;
}
.pos-pl__pill:hover{ transform: translateY(-1px); }
.pos-pl__pill.is-active{
  border-color: rgba(0,0,0,.35);
  box-shadow: 0 12px 32px rgba(0,0,0,.08);
}

/* Labels inside playlist item */
.pos-pl__t-fr{ font-weight:900; line-height:1.12; font-size:14px; }
.pos-pl__t-cs{ margin-top:6px; font-size:12px; opacity:.72; letter-spacing:.06em; }

/* Portrait mobile: select */
.pos-pl__select{ display:none; }

/* Responsive rules */
@media (max-width: 900px){
  .pos-pl__grid{ grid-template-columns: 1fr; }
  .pos-pl__aside{ display:none; } /* levý panel pryč */
}

/* Mobile portrait -> roletka */
@media (max-width: 900px) and (orientation: portrait){
  .pos-pl__select{ display:block; margin-top:10px; }
  .pos-pl__row{ display:none; }
}

/* Mobile landscape -> horizontální row */
@media (max-width: 900px) and (orientation: landscape){
  .pos-pl__select{ display:none; }
  .pos-pl__row{ display:flex; margin-top:10px; }
}



    /* ===== Layout ===== */
    .pospl-grid{
      display:grid;
      grid-template-columns: 320px 1fr;
      gap:14px;
    }
    .pospl-aside{ min-width:0; }
    .pospl-main{ min-width:0; }

/* Playlist button: vždy čistě vlevo */

.pospl-list {padding-top: 10px}
.pospl-list .senti-btn{
  display:block !important;   /* zruší flex chování senti-btn */
  width:100%;
  text-align:left;
}

/* Vnitřní stack: vlevo, přes celou šířku */
/* Playlist buttons: allow 2 lines (FR + CZ) without clipping */
.pospl-list .senti-btn,
.pospl-row .pospl-pill{
  height: auto !important;
  min-height: unset !important;
  overflow: visible !important;
}

/* If senti-btn is flex globally, force top-left alignment for playlist */
.pospl-list .senti-btn{
  display: flex !important;              /* safer than block when senti-btn has internal layout */
  flex-direction: column !important;
  align-items: flex-start !important;
  justify-content: flex-start !important;
  gap: 6px;
  width: 100%;
  text-align: left;
  padding-top: 12px;                      /* give it room */
  padding-bottom: 12px;
}

/* Text stack (still ok to keep) */
.pospl-btnstack{
  width: 100%;
  display:flex;
  flex-direction:column;
  align-items:flex-start;
  justify-content:flex-start;
  gap:6px;
  min-width:0;
}

/* FR one line + CZ one line, both with ellipsis */
.pospl-item-fr,
.pospl-item-cs{
  width:100%;
  text-align:left;
  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis;
}

.pospl-item-cs {
	font-weight: normal;
	font-size: 13px;
}

    /* Desktop list */
    .pospl-list{
      display:flex;
      flex-direction:column;
      gap:8px;
      max-height: 70vh;
      overflow:auto;
      padding-right:6px;
    }
    
    .pospl-list button {
    	text-align: left;
    }

    /* Mobile portrait select */
    .pospl-select{ display:none; margin-top:10px; }
    .pospl-select select{
      width:100%;
      border:1px solid rgba(0,0,0,.12);
      border-radius: 16px;
      padding: 10px 12px;
      background:#fff;
      font-size:14px;
    }

    /* Mobile landscape row */
    .pospl-row{
      display:none;
      gap:10px;
      overflow-x:auto;
      padding-bottom:6px;
      margin-top:10px;
      scroll-snap-type: x mandatory;
      -webkit-overflow-scrolling: touch;
    }
    .pospl-pill{
      scroll-snap-align:start;
      min-width: 240px;
      max-width: 320px;
      text-align:left;
      border:1px solid rgba(0,0,0,.10);
      border-radius:18px;
      padding:12px 12px;
      background:#fff;
      transition: transform .08s ease, border-color .15s ease, box-shadow .15s ease;
    }
    .pospl-pill:hover{ transform: translateY(-1px); }
    .pospl-pill.is-active{
      border-color: rgba(0,0,0,.35);
      box-shadow: 0 12px 32px rgba(0,0,0,.08);
    }

    /* Responsive: collapse aside */
    @media (max-width: 900px){
      .pospl-grid{ grid-template-columns: 1fr; }
      .pospl-aside{ display:none; }
    }
    @media (max-width: 900px) and (orientation: portrait){
      .pospl-select{ display:block; }
      .pospl-row{ display:none; }
    }
    @media (max-width: 900px) and (orientation: landscape){
      .pospl-select{ display:none; }
      .pospl-row{ display:flex; }
    }

    /* ===== Player bar (public-like) ===== */
    .pospl-player{
      margin-top:10px;
      padding:10px;
      border:1px solid rgba(0,0,0,.10);
      border-radius:18px;
      background:#fff;
    }
    .pospl-playbtn{
      width:44px; height:44px;
      border-radius:16px;
      display:flex; align-items:center; justify-content:center;
      font-weight:900;
      border:1px solid rgba(0,0,0,.12);
      background:#fff;
      transition: transform .08s ease, border-color .15s ease;
    }
    .pospl-playbtn:hover{ transform: translateY(-1px); border-color: rgba(0,0,0,.25); }

    .pospl-range{
      width:100%;
      accent-color:#000;
    }
    .pospl-time{
      display:flex;
      justify-content:space-between;
      font-size:12px;
      opacity:.65;
      margin-top:4px;
      letter-spacing:.05em;
    }

    /* ===== Lyrics (match public feel) ===== */
    .pospl-lyrics{
      margin-top:10px;
      position: relative;
      max-height: 58vh;
      overflow:auto;
      padding: 12px 10px;
      border:1px solid rgba(0,0,0,.10);
      border-radius:18px;
      background: rgba(0,0,0,.02);

      /* Soft fade mask */
      -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 10%, black 90%, transparent 100%);
      mask-image: linear-gradient(to bottom, transparent 0%, black 10%, black 90%, transparent 100%);
      scroll-behavior: smooth;
    }

    /* blur overlays */
    .pospl-lyrics::before,
    .pospl-lyrics::after{
      content:"";
      position: sticky;
      left:0; right:0;
      height: 34px;
      pointer-events:none;
      z-index: 5;
      backdrop-filter: blur(10px);
    }
    .pospl-lyrics::before{
      top:0;
      background: linear-gradient(to bottom, rgba(255,255,255,.92), rgba(255,255,255,0));
    }
    .pospl-lyrics::after{
      bottom:0;
      background: linear-gradient(to top, rgba(255,255,255,.92), rgba(255,255,255,0));
    }

    .pospl-sec{
      border-radius: 16px;
      padding: 10px 10px;
      margin-bottom: 8px;
      transition: opacity .18s ease, transform .18s ease, background .18s ease;
      opacity: .34;
      transform: translateY(0);
    }
    .pospl-sec.is-active{
      opacity: 1;
      background: rgba(0,0,0,.05);
    }

    /* Public-like typography */
    .pospl-line{
      font-size: 15px;
      line-height: 1.58;
      color: rgba(0,0,0,.84);
      white-space: pre-wrap;
      word-break: break-word;
      overflow-wrap: anywhere;
      letter-spacing: .01em;
    }
    .pospl-gap{ height: 6px; }
    


  /* --- tiny button variant (safe even if senti-btn--sm doesn't exist) --- */
  .senti-btn--sm{ padding:8px 10px; border-radius: 14px; font-size: 13px; }

  .senti-listen-controls{
    margin-top: 12px;
    display:flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
  }
  .senti-listen-controls__sep{
    width: 1px; height: 18px;
    background: rgba(255,255,255,.18);
    display:inline-block;
    margin: 0 2px;
  }

  .senti-lyrics-card{
    padding:14px;
    border-radius:18px;
    min-width:0;
  }
  .senti-lyrics-topline{
    display:flex;
    gap:8px;
    align-items:center;
    margin:0;
  }

  /* Fade edges like a "wheel" */
  .lyrics-box{
    margin-top: 10px;
    position: relative;
    max-height: 62vh;
    overflow: auto;
    padding: 14px 12px;
    border-radius: 14px;
    background: rgba(0,0,0,.02);

    -webkit-mask-image: linear-gradient(to bottom,
      transparent 0%,
      black 10%,
      black 90%,
      transparent 100%);
    mask-image: linear-gradient(to bottom,
      transparent 0%,
      black 10%,
      black 90%,
      transparent 100%);
  }

  /* Sections */
  .lyr-sec{
    padding: 10px 10px;
    border-radius: 14px;
    transition: opacity .18s ease, transform .18s ease, background .18s ease, filter .18s ease;
    opacity: .38;
    transform: scale(.99);
  }
  .lyr-sec.is-active{
    opacity: 1;
    transform: scale(1);
    background: rgba(0,0,0,.04);
  }

  /* Heading like POS (clean, small) */
  .lyr-hd{
    display:block;
    margin: 0 0 8px;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
    font-size: 11px;
    color: rgba(0,0,0,.55);
  }

  /* Lines */
  .lyr-ln{
    margin: 0;
    font-size: 15px;
    line-height: 1.55;
    color: rgba(0,0,0,.82);
    white-space: pre-wrap;
    word-break: break-word;
    overflow-wrap: anywhere;
  }
  .lyr-gap{ height: 6px; }
  

/* POS lyrics wrapper stays */
.pospl-lyrics{
  margin-top:10px;
  position: relative;
  max-height: 58vh;
  overflow:auto;
  padding: 12px 10px;
  border:1px solid rgba(0,0,0,.10);
  border-radius:18px;
  background: rgba(0,0,0,.02);
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 10%, black 90%, transparent 100%);
  mask-image: linear-gradient(to bottom, transparent 0%, black 10%, black 90%, transparent 100%);
  scroll-behavior: smooth;
}
.pospl-lyrics::before,
.pospl-lyrics::after{
  content:"";
  position: sticky;
  left:0; right:0;
  height: 34px;
  pointer-events:none;
  z-index: 5;
  backdrop-filter: blur(10px);
}
.pospl-lyrics::before{
  top:0;
  background: linear-gradient(to bottom, rgba(255,255,255,.92), rgba(255,255,255,0));
}
.pospl-lyrics::after{
  bottom:0;
  background: linear-gradient(to top, rgba(255,255,255,.92), rgba(255,255,255,0));
}

/* Alias: public classes, scoped inside pospl-lyrics */
.pospl-lyrics .lyr-sec{
  border-radius: 16px;
  padding: 10px 10px;
  margin-bottom: 8px;
  transition: opacity .18s ease, transform .18s ease, background .18s ease;
  opacity: .34;
}
.pospl-lyrics .lyr-sec.is-active{
  opacity: 1;
  background: rgba(0,0,0,.05);
}
.pospl-lyrics .lyr-line{
  font-size: 15px;
  line-height: 1.58;
  color: rgba(0,0,0,.84);
  white-space: pre-wrap;
  word-break: break-word;
  overflow-wrap: anywhere;
  letter-spacing: .01em;
}
.pospl-lyrics .lyr-gap{ height: 6px;}


/* Step 8 (asociace): v landscape zobrazit 6 karet v řádku */
@media (orientation: landscape) and (min-width: 1024px){
  .senti-grid--col6{
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }
}


/* Step 8: obrázky asociací jako čtverec */
.senti-tile__img--square{
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 16px; /* nebo stejné jako tile */
  display: block;
}


  .vip-layout{
    display:grid;
    grid-template-columns: 320px minmax(0,1fr);
    gap:12px;
    align-items:start;
  }

  .vip-form-grid,
  .vip-pref-grid{
    display:grid;
    grid-template-columns: repeat(3, minmax(0,1fr));
    gap:12px;
  }

  .vip-saved-list{
    margin-top:10px;
    display:flex;
    flex-direction:column;
    gap:8px;
    max-height:520px;
    overflow:auto;
    padding-right:4px;
  }

  .vip-saved-mobile{
    display:none;
    margin-top:10px;
  }

  .vip-saved-mobile select{
    width:100%;
    padding:12px 14px;
    border-radius:14px;
    border:1px solid rgba(0,0,0,.12);
    background:#fff;
  }

  @media (max-width: 980px){
    .vip-layout{
      grid-template-columns: 1fr;
    }

    .vip-form-grid,
    .vip-pref-grid{
      grid-template-columns: 1fr 1fr;
    }
  }

  @media (max-width: 640px){
    .vip-form-grid,
    .vip-pref-grid{
      grid-template-columns: 1fr;
    }

    .vip-saved-desktop{
      display:none;
    }

    .vip-saved-mobile{
      display:block;
    }
  }

