/* ================================================
   pinkblush.cz — Bootstrap 5.3 Theme
   ================================================ */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,700;1,400&family=DM+Sans:wght@400;500;600&display=swap');

:root {
  --pb-pink:     #E8A4B8;
  --pb-pink-lt:  #F2C4CE;
  --pb-pink-dk:  #C97B8C;
  --pb-bg:       #FDF8F6;
  --pb-bg-soft:  #F9F0EE;
  --pb-text:     #2C1A1D;
  --pb-muted:    #7A5560;
  --pb-gold:     #C9A96E;
  --pb-border:   #EDD5DA;
  --pb-serif:    'Playfair Display', Georgia, serif;
  --pb-sans:     'DM Sans', system-ui, sans-serif;
}

/* ── Base ── */
body { font-family: var(--pb-sans); background: var(--pb-bg); color: var(--pb-text); font-size: 16px; padding-top: calc(36px + 72px); }
h1, h2, h3 { font-family: var(--pb-serif); }
a { color: var(--pb-pink-dk); }
a:hover { color: var(--pb-text); text-decoration: none; }

/* ================================================
   NAVBAR
   ================================================ */
#pb-header {
  background: rgba(253,248,246,.97) !important;
  border-bottom: 1px solid var(--pb-border);
  backdrop-filter: blur(10px);
  min-height: 72px;
}
.pb-logo {
  font-family: var(--pb-serif);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--pb-text) !important;
  letter-spacing: .01em;
  padding: 0;
}
.pb-logo span { color: var(--pb-pink-dk); }

.pb-nav-link {
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--pb-muted) !important;
  padding: 8px 14px !important;
  border-radius: 8px;
  transition: all .2s;
}
.pb-nav-link:hover { color: var(--pb-text) !important; background: var(--pb-bg-soft); }

.pb-lang-a, .pb-curr-a {
  font-size: .78rem; font-weight: 600;
  letter-spacing: .04em; color: var(--pb-muted);
}
.pb-lang-a.active { color: var(--pb-text); }
.pb-curr-a.active { color: var(--pb-gold); }
.pb-sep { color: var(--pb-border); font-size: .78rem; }

.pb-icon-btn {
  color: var(--pb-text);
  display: flex; align-items: center;
  transition: color .2s;
}
.pb-icon-btn:hover { color: var(--pb-pink-dk); }

.pb-cart-badge {
  position: absolute; top: -6px; right: -8px;
  background: var(--pb-pink-dk); color: #fff;
  font-size: .6rem; font-weight: 700;
  width: 16px; height: 16px; border-radius: 50%;
  display: flex !important; align-items: center; justify-content: center;
}

/* Custom toggler */
.pb-toggler {
  border: none; background: none; padding: 4px; box-shadow: none !important;
  display: flex; flex-direction: column; gap: 5px;
}
.pb-toggler span {
  display: block; width: 24px; height: 2px;
  background: var(--pb-text); border-radius: 2px; transition: .25s;
}
.pb-toggler[aria-expanded="true"] span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.pb-toggler[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.pb-toggler[aria-expanded="true"] span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* Mobile nav */
.navbar-collapse { padding: 16px 0; }
@media (max-width: 767px) {
  .navbar-collapse .nav-item { border-bottom: 1px solid var(--pb-border); }
  .pb-nav-link { padding: 14px 8px !important; border-radius: 0; }
  .navbar-collapse .d-flex { padding: 16px 8px; border-top: 1px solid var(--pb-border); flex-wrap: wrap; }
  .pb-lang, .pb-curr { display: flex !important; }
}

/* Toast */
.pb-toast {
  position: fixed; top: 80px; left: 50%; transform: translateX(-50%);
  z-index: 2000; padding: 12px 24px; border-radius: 10px;
  font-size: .9rem; font-weight: 500; white-space: nowrap;
  box-shadow: 0 8px 32px rgba(0,0,0,.12);
  opacity: 0; transition: opacity .3s; pointer-events: none;
}
.pb-toast.show { opacity: 1; pointer-events: auto; }
.pb-toast-ok  { background: #F0FDF4; border: 1px solid #BBF7D0; color: #166534; }
.pb-toast-err { background: #FFF1F2; border: 1px solid #FECDD3; color: #9F1239; }

/* ================================================
   BUTTONS
   ================================================ */
.pb-btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--pb-sans); font-weight: 600; font-size: 1rem;
  padding: 14px 28px; border-radius: 12px;
  border: none; cursor: pointer; text-decoration: none;
  transition: all .2s; white-space: nowrap; line-height: 1;
}
.pb-btn:hover { text-decoration: none; }
.pb-btn-primary { background: var(--pb-text); color: #fff; }
.pb-btn-primary:hover { background: var(--pb-pink-dk); color: #fff; transform: translateY(-2px); box-shadow: 0 8px 20px rgba(201,123,140,.4); }
.pb-btn-outline { background: transparent; color: var(--pb-text); border: 2px solid var(--pb-border); }
.pb-btn-outline:hover { border-color: var(--pb-pink-dk); color: var(--pb-pink-dk); }
.pb-btn-lg { padding: 16px 36px; font-size: 1.05rem; border-radius: 16px; }

/* ================================================
   HERO
   ================================================ */
.pb-hero {
  padding: 0;
  min-height: calc(100vh - 72px);
  overflow: hidden;
}
.pb-hero > .row {
  max-width: 1440px;
  margin-left: auto !important;
  margin-right: auto !important;
}
.pb-hero-content {
  display: flex; flex-direction: column; justify-content: center;
  padding: 80px 60px 80px 80px; height: 100%; min-height: calc(100vh - 72px);
}
@media (max-width: 767px) {
  .pb-hero-content {
    padding: 20px 24px 28px;
    min-height: auto;
  }
}

.pb-eyebrow {
  font-size: .8rem; font-weight: 600; letter-spacing: .18em;
  text-transform: uppercase; color: var(--pb-pink-dk); margin-bottom: 16px;
}
.pb-hero-content h1 {
  font-family: var(--pb-serif);
  font-size: clamp(2.2rem, 7vw, 4.2rem);
  font-weight: 700; line-height: 1.25;
  color: var(--pb-text); margin-bottom: 20px;
}
.pb-hero-content h1 em { font-style: italic; color: var(--pb-pink-dk); }
.pb-hero-desc {
  font-size: 1.1rem; color: var(--pb-muted); line-height: 1.75;
  max-width: 400px; margin-bottom: 15px;
}

.pb-notes-row { display: flex; gap: 28px; margin-bottom: 28px; flex-wrap: wrap; }
.pb-note-item { display: flex; flex-direction: column; gap: 3px; }
.pb-note-lbl { font-size: .72rem; text-transform: uppercase; letter-spacing: .12em; color: var(--pb-muted); font-weight: 600; }
.pb-note-val { font-size: .9rem; color: var(--pb-text); font-weight: 500; }

.pb-price-wrap { display: flex; align-items: baseline; gap: 12px; margin-bottom: 28px; }
.pb-czk { font-family: var(--pb-serif); font-size: 2.8rem; font-weight: 700; color: var(--pb-text); }
.pb-eur { font-size: 1.1rem; color: var(--pb-muted); }

.pb-cta-row { display: flex; gap: 14px; flex-wrap: wrap; }

/* Hero image */
.pb-hero-img-wrap {
  background: linear-gradient(145deg, var(--pb-pink-lt) 0%, var(--pb-bg-soft) 100%);
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
  min-height: calc(100vh - 72px);
}
@media (max-width: 767px) {
  .pb-hero-img-wrap { min-height: auto; }
}
.pb-hero-img-wrap::after {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 30% 70%, rgba(232,164,184,.35) 0%, transparent 65%);
}
.pb-hero-img-wrap img {
  width: 100%; max-width: 420px; position: relative; z-index: 1;
  filter: drop-shadow(0 24px 48px rgba(44,26,29,.22));

}
@keyframes pbFloat { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-14px)} }
.pb-circ {
  position: absolute; border-radius: 50%; pointer-events: none;
  border: 1px solid rgba(232,164,184,.4); width: 320px; height: 320px;
}
.pb-circ2 { width: 520px; height: 520px; border-color: rgba(232,164,184,.2); }

/* ================================================
   TRUST
   ================================================ */
.pb-trust { background: var(--pb-text); padding: 40px 0; }
.pb-trust-item { display: flex; align-items: center; gap: 14px; margin-bottom: 0; }
.pb-trust-ico { font-size: 1.8rem; flex-shrink: 0; }
.pb-trust-txt strong { display: block; font-size: .95rem; font-weight: 600; color: #fff; }
.pb-trust-txt small  { font-size: .82rem; color: rgba(255,255,255,.55); }
@media (max-width: 767px) {
  .pb-trust-item { margin-bottom: 24px; }
}

/* ================================================
   SECTIONS COMMON
   ================================================ */
.pb-sec-eyebrow {
  display: block; font-size: .78rem; font-weight: 600;
  letter-spacing: .18em; text-transform: uppercase;
  color: var(--pb-pink-dk); text-align: center; margin-bottom: 10px;
}
.pb-sec-title {
  font-family: var(--pb-serif); font-size: clamp(1.8rem, 4vw, 2.6rem);
  color: var(--pb-text); text-align: center; margin-bottom: 14px;
}
.pb-sec-desc {
  text-align: center; color: var(--pb-muted); font-size: 1rem;
  line-height: 1.75; max-width: 520px; margin: 0 auto 52px;
}

/* ================================================
   SCENT PYRAMID
   ================================================ */
.pb-scent-sec { padding: 96px 0; background: #fff; }
.pb-scent-card {
  background: var(--pb-bg); border: 1px solid var(--pb-border);
  border-radius: 20px; padding: 40px 28px; text-align: center;
  height: 100%; transition: all .25s; position: relative; overflow: hidden;
  margin-bottom: 24px;
}
.pb-scent-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--pb-pink), var(--pb-pink-dk));
  opacity: 0; transition: opacity .25s;
}
.pb-scent-card:hover { transform: translateY(-4px); box-shadow: 0 16px 48px rgba(44,26,29,.1); }
.pb-scent-card:hover::before { opacity: 1; }
.pb-scent-ico  { font-size: 2.8rem; margin-bottom: 14px; }
.pb-scent-type { font-size: .72rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--pb-pink-dk); margin-bottom: 8px; }
.pb-scent-card h3 { font-family: var(--pb-serif); font-size: 1.5rem; margin-bottom: 10px; color: var(--pb-text); }
.pb-scent-card p  { font-size: .92rem; color: var(--pb-muted); line-height: 1.65; margin: 0; }

/* ================================================
   PRODUCT DETAIL
   ================================================ */
.pb-prod-sec { padding: 96px 0; background: var(--pb-bg); }
.pb-prod-gallery { position: relative; }
.pb-prod-gallery img { width: 100%; border-radius: 20px; box-shadow: 0 16px 56px rgba(44,26,29,.14); }
.pb-prod-gallery-placeholder {
  background: linear-gradient(145deg, var(--pb-pink-lt), var(--pb-bg-soft));
  border-radius: 20px; min-height: 400px;
}
.pb-prod-badge {
  position: absolute; top: 20px; right: 20px;
  background: #fff; border: 1px solid var(--pb-border);
  border-radius: 50px; padding: 7px 16px;
  font-size: .8rem; font-weight: 600; color: var(--pb-text);
}
.pb-brand-lbl { font-size: .8rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: var(--pb-muted); margin-bottom: 8px; }
.pb-prod-info h2 { font-family: var(--pb-serif); font-size: clamp(1.8rem, 3vw, 2.4rem); color: var(--pb-text); margin-bottom: 6px; line-height: 1.15; }
.pb-prod-sub  { font-size: 1rem; color: var(--pb-muted); margin-bottom: 22px; }
.pb-chips { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 22px; }
.pb-chip { background: #fff; border: 1px solid var(--pb-border); border-radius: 50px; padding: 6px 16px; font-size: .84rem; color: var(--pb-muted); }
.pb-prod-desc { font-size: .95rem; color: var(--pb-muted); line-height: 1.8; border-left: 3px solid var(--pb-pink-lt); padding-left: 18px; margin-bottom: 26px; }
.pb-atc { display: flex; gap: 12px; align-items: center; margin-bottom: 18px; flex-wrap: wrap; }
.pb-qty {
  width: 70px; padding: 14px 10px; border: 2px solid var(--pb-border);
  border-radius: 12px; font-family: var(--pb-sans); font-size: 1rem;
  text-align: center; color: var(--pb-text); background: #fff;
}
.pb-qty:focus { outline: none; border-color: var(--pb-pink-dk); }
.pb-prod-meta { display: flex; gap: 16px; font-size: .84rem; color: var(--pb-muted); flex-wrap: wrap; }
.pb-prod-meta span::before { content: '✓  '; }

/* ================================================
   REVIEWS
   ================================================ */
.pb-reviews-sec { padding: 96px 0; background: #fff; }
.pb-review-card {
  background: var(--pb-bg); border: 1px solid var(--pb-border);
  border-radius: 20px; padding: 32px 24px; height: 100%; margin-bottom: 24px;
}
.pb-stars  { color: var(--pb-gold); font-size: 1.1rem; letter-spacing: 3px; margin-bottom: 14px; }
.pb-review-card p { font-size: .92rem; color: var(--pb-muted); line-height: 1.75; font-style: italic; margin-bottom: 18px; }
.pb-review-card strong { display: block; font-size: .86rem; color: var(--pb-text); }
.pb-review-card small { font-size: .78rem; color: var(--pb-muted); }

/* ================================================
   FOOTER
   ================================================ */
#pb-footer { background: var(--pb-text); color: rgba(255,255,255,.65); }
.pb-footer-logo { font-family: var(--pb-serif); font-size: 1.6rem; color: #fff; }
.pb-footer-logo span { color: var(--pb-pink); }
#pb-footer p { font-size: .9rem; line-height: 1.7; color: rgba(255,255,255,.6); }
#pb-footer h5 {
  font-family: var(--pb-sans); font-size: .76rem; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase;
  color: #fff; margin-bottom: 16px;
}
#pb-footer .list-unstyled li { margin-bottom: 10px;float: left; width: 50%; }
#pb-footer .list-unstyled a { font-size: .9rem; color: rgba(255,255,255,.55); transition: color .2s; }
#pb-footer .list-unstyled a:hover { color: var(--pb-pink-lt); }
.pb-footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1); padding: 22px 0;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 12px; font-size: .8rem;
}
.pb-pay-chips { display: flex; gap: 6px; flex-wrap: wrap; }
.pb-pay-chip { background: rgba(255,255,255,.1); border-radius: 6px; padding: 4px 10px; font-size: .76rem; color: rgba(255,255,255,.65); }

/* ================================================
   MINI-BAR
   ================================================ */
.pb-minibar {
  background: var(--pb-pink-dk); color: #fff;
  text-align: center; font-size: .82rem; font-weight: 500;
  padding: 9px 16px; letter-spacing: .03em;
  position: fixed; top: 0; left: 0; right: 0; z-index: 1031;
}
#pb-header { top: 36px !important; }
@media (max-width: 767px) {
  .pb-minibar { font-size: .72rem; padding: 7px 12px; }
  #pb-header { top: 33px !important; }
  body { padding-top: calc(33px + 60px); }
  #pb-footer .list-unstyled li { margin-bottom: 10px;float: left; width: 100%; }
  .pb-scent-card {
    padding: 10px 18px;
  }

}

/* ================================================
   HERO EXTRAS
   ================================================ */
.pb-hero-trust {
  font-size: .82rem; color: var(--pb-muted); margin-top: 14px; margin-bottom: 4px;
}
.pb-urgency {
  font-size: .8rem; color: var(--pb-pink-dk); font-weight: 600; margin: 0;
}

/* ================================================
   FOR WHOM
   ================================================ */
.pb-forwhom-sec { padding: 96px 0; background: var(--pb-bg); }
.pb-fw-card {
  background: #fff; border: 1px solid var(--pb-border);
  border-radius: 20px; padding: 36px 28px; height: 100%; margin-bottom: 24px;
  transition: all .25s;
}
.pb-fw-card:hover { transform: translateY(-3px); box-shadow: 0 12px 40px rgba(44,26,29,.09); }
.pb-fw-ico { font-size: 2.4rem; margin-bottom: 14px; }
.pb-fw-card h4 { font-family: var(--pb-serif); font-size: 1.25rem; color: var(--pb-text); margin-bottom: 12px; }
.pb-fw-card p  { font-size: .92rem; color: var(--pb-muted); line-height: 1.7; margin: 0; }
.pb-unisex-note {
  text-align: center; color: var(--pb-muted); font-size: .88rem;
  margin-top: 40px; max-width: 560px; margin-left: auto; margin-right: auto;
  border-top: 1px solid var(--pb-border); padding-top: 24px;
}

/* ================================================
   TIPS / JAK NOSIT
   ================================================ */
.pb-tips-sec { padding: 96px 0; background: #fff; }
.pb-tips-img { width: 100%; border-radius: 20px; box-shadow: 0 16px 56px rgba(44,26,29,.12); }
.pb-tips-list { list-style: none; padding: 0; margin: 24px 0 0; display: flex; flex-direction: column; gap: 16px; }
.pb-tips-list li {
  padding: 16px 20px; background: var(--pb-bg); border: 1px solid var(--pb-border);
  border-radius: 12px; font-size: .95rem; color: var(--pb-muted); line-height: 1.6;
  border-left: 3px solid var(--pb-pink);
}
.pb-tips-list li strong { color: var(--pb-text); }

/* ================================================
   GUARANTEE LIST
   ================================================ */
.pb-guarantee-list { display: flex; flex-direction: column; gap: 14px; margin-bottom: 8px; }
.pb-guarantee-item {
  display: flex; align-items: flex-start; gap: 14px;
  font-size: 1.1rem;
}
.pb-guarantee-item > div { display: flex; flex-direction: column; gap: 2px; }
.pb-guarantee-item strong { font-size: .95rem; color: var(--pb-text); font-weight: 600; }
.pb-guarantee-item span   { font-size: .82rem; color: var(--pb-muted); }

/* ================================================
   REVIEW CTA
   ================================================ */
.pb-review-cta {
  text-align: center; margin-top: 40px; font-size: .9rem; color: var(--pb-muted);
}

/* ================================================
   FAQ
   ================================================ */
.pb-faq-sec { padding: 96px 0; background: var(--pb-bg); }
.pb-faq-list { max-width: 760px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.pb-faq-item {
  background: #fff; border: 1px solid var(--pb-border);
  border-radius: 14px; overflow: hidden;
}
.pb-faq-q {
  width: 100%; background: none; border: none; cursor: pointer;
  display: flex; justify-content: space-between; align-items: center;
  padding: 20px 24px; font-family: var(--pb-sans); font-size: 1rem;
  font-weight: 600; color: var(--pb-text); text-align: left; gap: 12px;
  transition: background .2s;
}
.pb-faq-q:hover { background: var(--pb-bg); }
.pb-faq-q:not(.collapsed) { color: var(--pb-pink-dk); }
.pb-faq-arrow { font-size: 1.1rem; transition: transform .25s; flex-shrink: 0; }
.pb-faq-q:not(.collapsed) .pb-faq-arrow { transform: rotate(180deg); }
.pb-faq-a {
  padding: 0 24px 20px; font-size: .92rem;
  color: var(--pb-muted); line-height: 1.75; margin: 0;
}

/* ================================================
   FINAL CTA
   ================================================ */
.pb-final-cta {
  padding: 96px 0;
  background: linear-gradient(135deg, var(--pb-pink-lt) 0%, var(--pb-bg-soft) 100%);
}
.pb-final-cta h2 { font-family: var(--pb-serif); font-size: clamp(1.8rem, 4vw, 2.6rem); margin-bottom: 12px; }
.pb-final-cta p  { font-size: 1rem; color: var(--pb-muted); margin-bottom: 28px; }

/* ================================================
   STOCK BADGE
   ================================================ */
.pb-stock-badge {
  display: inline-flex; align-items: center; gap: 8px;
  display: none;
  background: #FFF5F7; border: 1px solid #FECDD3;
  border-radius: 50px; padding: 8px 16px;
  font-size: .85rem; color: var(--pb-text); margin-bottom: 20px;
}
.pb-stock-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: #ef4444; flex-shrink: 0;
  animation: pbPulse 1.5s ease-in-out infinite;
}
@keyframes pbPulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.5;transform:scale(1.4)} }
.pb-stock-updated { font-size: .75rem; color: var(--pb-muted); }

/* ================================================
   DUPE BOX
   ================================================ */
.pb-dupe-box {
  display: flex; align-items: flex-start; gap: 12px;
  background: #FFFBEB; border: 1px solid #FDE68A;
  border-radius: 12px; padding: 14px 18px;
  margin-bottom: 20px;
}
.pb-dupe-icon { font-size: 1.2rem; flex-shrink: 0; margin-top: 2px; }
.pb-dupe-box strong { display: block; font-size: .88rem; color: var(--pb-text); margin-bottom: 3px; }
.pb-dupe-box span   { font-size: .82rem; color: var(--pb-muted); }

/* ================================================
   VIRAL BADGE (on hero image)
   ================================================ */
.pb-viral-badge {
  position: absolute; bottom: 24px; left: 24px; z-index: 2;
  background: rgba(44,26,29,.85); color: #fff;
  border-radius: 50px; padding: 8px 18px;
  font-size: .82rem; font-weight: 600; letter-spacing: .02em;
  backdrop-filter: blur(8px);
}

/* ================================================
   TIKTOK SECTION
   ================================================ */
.pb-tiktok-sec { padding: 80px 0; background: var(--pb-text); }
.pb-tiktok-sec .pb-sec-eyebrow { color: var(--pb-pink); }
.pb-tiktok-sec .pb-sec-title   { color: #fff; }
.pb-tiktok-sec .pb-sec-desc    { color: rgba(255,255,255,.6); }
.pb-tiktok-card {
  background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.12);
  border-radius: 20px; padding: 32px 24px; height: 100%; margin-bottom: 24px;
  transition: all .25s;
}
.pb-tiktok-card:hover { background: rgba(255,255,255,.11); transform: translateY(-3px); }
.pb-tiktok-icon  { font-size: 2rem; margin-bottom: 14px; }
.pb-tiktok-quote { font-size: .92rem; color: rgba(255,255,255,.85); line-height: 1.7; font-style: italic; margin-bottom: 14px; }
.pb-tiktok-handle { font-size: .78rem; color: rgba(255,255,255,.45); font-weight: 600; }
.pb-tiktok-cta {
  text-align: center; margin-top: 40px;
  font-size: 1rem; color: rgba(255,255,255,.7);
}
.pb-tiktok-cta strong { color: var(--pb-pink); }

/* ================================================
   COMPARE BOX
   ================================================ */
.pb-compare-box {
  display: flex; align-items: center; justify-content: center;
  gap: 0; margin-top: 48px; flex-wrap: wrap;
  border: 1px solid var(--pb-border); border-radius: 20px; overflow: hidden;
}
.pb-compare-item {
  flex: 1; padding: 28px 24px; text-align: center; min-width: 200px;
}
.pb-compare-them { background: var(--pb-bg-soft); }
.pb-compare-us   { background: linear-gradient(135deg, #FFF0F4, #FFF8F9); }
.pb-compare-label { font-size: .8rem; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; color: var(--pb-muted); margin-bottom: 8px; }
.pb-compare-price {
  font-family: var(--pb-serif); font-size: 2rem; font-weight: 700;
  color: var(--pb-text); margin-bottom: 8px;
}
.pb-compare-us .pb-compare-price { color: var(--pb-pink-dk); }
.pb-compare-desc { font-size: .85rem; color: var(--pb-muted); }
.pb-compare-vs {
  padding: 0 20px; font-family: var(--pb-serif);
  font-size: 1.4rem; font-weight: 700; color: var(--pb-muted);
  background: #fff;
}

/* ================================================
   STICKY MOBILE CTA
   ================================================ */
.pb-sticky-cta {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 1020;
  background: #fff; border-top: 1px solid var(--pb-border);
  padding: 12px 20px; transform: translateY(100%);
  transition: transform .3s ease; box-shadow: 0 -4px 20px rgba(44,26,29,.1);
}
.pb-sticky-cta.visible { transform: translateY(0); }
.pb-sticky-inner {
  display: flex; align-items: center; justify-content: space-between;
  max-width: 480px; margin: 0 auto;
}
.pb-sticky-info { display: flex; flex-direction: column; gap: 2px; }
.pb-sticky-name  { font-size: .85rem; font-weight: 600; color: var(--pb-text); }
.pb-sticky-price { font-family: var(--pb-serif); font-size: 1.3rem; font-weight: 700; color: var(--pb-text); }
@media (min-width: 992px) { .pb-sticky-cta { display: none; } }

/* ================================================
   EXIT INTENT POPUP
   ================================================ */
.pb-popup-overlay {
  position: fixed; inset: 0; z-index: 2000;
  background: rgba(44,26,29,.6); backdrop-filter: blur(4px);
  display: none; align-items: center; justify-content: center;
  padding: 20px; opacity: 0; pointer-events: none;
  transition: opacity .3s;
}
/* .show třída zachována pro zpětnou kompatibilitu — JS nyní ovládá display */
.pb-popup-overlay.show { display: flex; opacity: 1; pointer-events: auto; }
.pb-popup {
  background: #fff; border-radius: 24px; padding: 40px 32px;
  max-width: 400px; width: 100%; text-align: center;
  position: relative; transform: scale(.94);
  transition: transform .3s;
  box-shadow: 0 24px 80px rgba(44,26,29,.25);
}
.pb-popup-overlay.show .pb-popup { transform: scale(1); }
.pb-popup-close {
  position: absolute; top: 16px; right: 16px;
  background: none; border: none; font-size: 1.1rem;
  color: var(--pb-muted); cursor: pointer; padding: 4px 8px;
}
.pb-popup-emoji { font-size: 3rem; margin-bottom: 12px; }
.pb-popup h3 { font-family: var(--pb-serif); font-size: 2rem; margin-bottom: 12px; }
.pb-popup p  { font-size: .95rem; color: var(--pb-muted); line-height: 1.65; margin-bottom: 8px; }
.pb-popup-sub { font-size: .85rem !important; }
.pb-popup .pb-btn { margin-top: 12px; font-size: 1rem; }
.pb-popup-skip {
  display: block; margin-top: 12px; background: none; border: none;
  font-size: .8rem; color: var(--pb-muted); cursor: pointer; text-decoration: underline;
}
.w-100 { width: 100%; justify-content: center; }

/* ── Flag switcher ── */
.pb-lang-flags { display:flex; gap:6px; align-items:center; }
.pb-flag-btn {
  font-size:1.3rem; line-height:1; text-decoration:none;
  opacity:.5; transition:opacity .2s; border-radius:4px;
}
.pb-flag-btn:hover, .pb-flag-btn.active { opacity:1; }
.pb-flag-btn.active { outline:2px solid var(--pb-pink-dk); outline-offset:2px; }

/* ── Stock LOW state ── */
.pb-stock-badge.pb-stock-low {
  background:#FFF1F2; border-color:#FECDD3;
}
.pb-stock-badge.pb-stock-low .pb-stock-dot { background:#dc2626; }

/* ── TikTok embed placeholders ── */
.pb-tiktok-embed-wrap {
  border-radius:16px; overflow:hidden;
  aspect-ratio:9/16; max-height:480px;
  background:rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.12);
  display:flex; align-items:center; justify-content:center;
}
.pb-tiktok-placeholder {
  text-align:center; color:rgba(255,255,255,.5);
  padding:20px;
}
.pb-tiktok-placeholder span { font-size:2.5rem; display:block; margin-bottom:10px; }
.pb-tiktok-placeholder p { font-size:.9rem; line-height:1.5; }
.pb-tiktok-placeholder small { font-size:.75rem; opacity:.6; }
.pb-tiktok-caption {
  margin-top:14px; font-size:.84rem;
  color:rgba(255,255,255,.65); line-height:1.6; font-style:italic;
}
.pb-tiktok-caption strong { color:var(--pb-pink-lt); font-style:normal; }

/* ================================================
   CART & CHECKOUT & ACCOUNT — shared page styles
   ================================================ */
.pb-page-main { padding-top: 0; min-height: 70vh; }

.pb-page-hero {
  background: var(--pb-bg-soft);
  border-bottom: 1px solid var(--pb-border);
  padding: 40px 0 28px;
  margin-bottom: 40px;
}
.pb-page-hero h1 {
  font-family: var(--pb-serif); font-size: clamp(1.6rem,4vw,2.4rem);
  color: var(--pb-text); margin-bottom: 8px;
}
.pb-breadcrumb { background: none; padding: 0; margin: 0; font-size: .85rem; }
.pb-breadcrumb .breadcrumb-item a { color: var(--pb-pink-dk); }
.pb-breadcrumb .breadcrumb-item.active { color: var(--pb-muted); }
.pb-breadcrumb .breadcrumb-item + .breadcrumb-item::before { color: var(--pb-border); }

.pb-cart-wrap { padding-bottom: 80px; }

/* Alerts */
.pb-alert {
  padding: 14px 20px; border-radius: 12px; margin-bottom: 20px;
  font-size: .9rem; font-weight: 500;
}
.pb-alert-info { background: #EFF6FF; border: 1px solid #BFDBFE; color: #1E40AF; }
.pb-alert-ok   { background: #F0FDF4; border: 1px solid #BBF7D0; color: #166534; }
.pb-alert-err  { background: #FFF1F2; border: 1px solid #FECDD3; color: #9F1239; }

/* ── Cart items ── */
.pb-cart-card {
  background: #fff; border: 1px solid var(--pb-border);
  border-radius: 20px; overflow: hidden; margin-bottom: 16px;
}
.pb-cart-item {
  display: grid;
  grid-template-columns: 80px 1fr 140px 100px 110px;
  gap: 16px; align-items: center;
  padding: 20px 24px;
  border-bottom: 1px solid var(--pb-border);
}
.pb-cart-item:last-child { border-bottom: none; }

.pb-cart-item-img img {
  width: 80px; height: 80px; object-fit: contain;
  border-radius: 12px; background: var(--pb-bg-soft);
}
.pb-cart-item-name {
  font-weight: 600; font-size: .95rem; color: var(--pb-text);
  display: block; margin-bottom: 4px;
}
.pb-cart-item-name:hover { color: var(--pb-pink-dk); }
.pb-cart-item-opt  { font-size: .8rem; color: var(--pb-muted); }
.pb-out-stock { font-size: .78rem; color: #ef4444; font-weight: 600; display: block; }
.pb-cart-item-price-mobile { display: none; }

.pb-qty-wrap { display: flex; align-items: center; gap: 6px; }
.pb-qty-field {
  width: 56px; padding: 8px; border: 1.5px solid var(--pb-border);
  border-radius: 8px; text-align: center; font-family: var(--pb-sans);
  font-size: .9rem; color: var(--pb-text);
}
.pb-qty-field:focus { outline: none; border-color: var(--pb-pink-dk); }
.pb-qty-btn {
  width: 32px; height: 32px; border-radius: 8px; border: 1.5px solid var(--pb-border);
  background: none; cursor: pointer; font-size: .9rem; color: var(--pb-muted);
  transition: all .2s; display: flex; align-items: center; justify-content: center;
}
.pb-qty-update:hover { border-color: var(--pb-pink-dk); color: var(--pb-pink-dk); }
.pb-qty-remove:hover { border-color: #ef4444; color: #ef4444; background: #FFF1F2; }

.pb-cart-item-price { font-size: .9rem; color: var(--pb-muted); text-align: right; }
.pb-cart-item-total { font-family: var(--pb-serif); font-size: 1.1rem; font-weight: 700; color: var(--pb-text); text-align: right; }

/* ── Order summary ── */
.pb-order-summary {
  background: #fff; border: 1px solid var(--pb-border);
  border-radius: 20px; padding: 28px; position: sticky; top: 120px;
}
.pb-order-summary h3 {
  font-family: var(--pb-serif); font-size: 1.3rem; margin-bottom: 20px; color: var(--pb-text);
}
.pb-summary-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 10px 0; border-bottom: 1px solid var(--pb-border);
  font-size: .9rem; color: var(--pb-muted);
}
.pb-summary-row:last-of-type { border-bottom: none; }
.pb-summary-total {
  font-weight: 700; font-size: 1rem; color: var(--pb-text);
  border-top: 2px solid var(--pb-border) !important;
  border-bottom: none !important; padding-top: 14px !important;
}
.pb-summary-total span:last-child {
  font-family: var(--pb-serif); font-size: 1.4rem;
}
.pb-summary-trust {
  display: flex; flex-direction: column; gap: 8px;
  margin-top: 20px; padding-top: 16px;
  border-top: 1px solid var(--pb-border);
  font-size: .8rem; color: var(--pb-muted);
}

/* Empty cart */
.pb-empty-cart {
  text-align: center; padding: 80px 24px;
}
.pb-empty-icon { font-size: 4rem; margin-bottom: 20px; }
.pb-empty-cart h2 { font-family: var(--pb-serif); font-size: 2rem; margin-bottom: 12px; }
.pb-empty-cart p  { color: var(--pb-muted); margin-bottom: 28px; }

/* Modules (kupón apod.) */
.pb-cart-modules { margin-top: 16px; }
.pb-cart-modules .panel { border: 1px solid var(--pb-border) !important; border-radius: 16px !important; overflow: hidden; box-shadow: none !important; margin-bottom: 12px; }
.pb-cart-modules .panel-heading { background: var(--pb-bg-soft) !important; border-bottom: 1px solid var(--pb-border) !important; padding: 16px 20px !important; }
.pb-cart-modules .panel-title { font-family: var(--pb-sans) !important; font-size: .9rem !important; font-weight: 600 !important; color: var(--pb-text) !important; }
.pb-cart-modules .panel-body { padding: 20px !important; }

/* ================================================
   CHECKOUT — OC3 panel overrides
   ================================================ */
.pb-checkout-wrap { padding-bottom: 80px; }
#checkout-checkout.container { padding-top: 40px; }
#checkout-checkout h1 {
  font-family: var(--pb-serif); font-size: clamp(1.6rem,4vw,2.2rem);
  color: var(--pb-text); margin-bottom: 28px;
}

/* Steps / panels */
#checkout-checkout .panel {
  border: 1px solid var(--pb-border) !important;
  border-radius: 16px !important;
  box-shadow: none !important;
  margin-bottom: 16px !important;
  overflow: hidden;
}
#checkout-checkout .panel-heading {
  background: var(--pb-bg-soft) !important;
  border-bottom: 1px solid var(--pb-border) !important;
  padding: 18px 24px !important;
}
#checkout-checkout .panel-title {
  font-family: var(--pb-sans) !important;
  font-size: 1rem !important; font-weight: 700 !important;
  color: var(--pb-text) !important;
}
#checkout-checkout .panel-title a { color: var(--pb-text) !important; }
#checkout-checkout .panel-body { padding: 28px 24px !important; }

/* Form inputs */
#checkout-checkout .form-control,
#checkout-checkout input[type="text"],
#checkout-checkout input[type="email"],
#checkout-checkout input[type="tel"],
#checkout-checkout input[type="password"],
#checkout-checkout select,
#checkout-checkout textarea {
  border: 1.5px solid var(--pb-border) !important;
  border-radius: 10px !important;
  padding: 11px 14px !important;
  font-family: var(--pb-sans) !important;
  font-size: .9rem !important;
  color: var(--pb-text) !important;
  background: #fff !important;
  box-shadow: none !important;
  height: auto !important;
  transition: border-color .2s !important;
}
#checkout-checkout .form-control:focus,
#checkout-checkout input:focus,
#checkout-checkout select:focus {
  border-color: var(--pb-pink-dk) !important;
  box-shadow: 0 0 0 3px rgba(201,123,140,.12) !important;
  outline: none !important;
}
#checkout-checkout label {
  font-size: .8rem !important; font-weight: 600 !important;
  letter-spacing: .04em !important; color: var(--pb-text) !important;
  margin-bottom: 6px !important; text-transform: uppercase !important;
}

/* Radio / checkbox */
#checkout-checkout input[type="radio"],
#checkout-checkout input[type="checkbox"] {
  accent-color: var(--pb-pink-dk) !important;
  width: 16px; height: 16px;
}

/* Buttons in checkout */
#checkout-checkout .btn-primary,
#checkout-checkout button[type="submit"] {
  background: var(--pb-text) !important;
  border-color: var(--pb-text) !important;
  border-radius: 12px !important;
  font-family: var(--pb-sans) !important;
  font-weight: 600 !important;
  font-size: .95rem !important;
  padding: 12px 28px !important;
  transition: all .2s !important;
}
#checkout-checkout .btn-primary:hover {
  background: var(--pb-pink-dk) !important;
  border-color: var(--pb-pink-dk) !important;
  transform: translateY(-1px) !important;
}
#checkout-checkout .btn-default {
  border: 1.5px solid var(--pb-border) !important;
  border-radius: 12px !important;
  color: var(--pb-text) !important;
  font-family: var(--pb-sans) !important;
  font-weight: 600 !important;
  padding: 12px 28px !important;
  background: transparent !important;
}
#checkout-checkout .btn-default:hover {
  border-color: var(--pb-pink-dk) !important;
  color: var(--pb-pink-dk) !important;
}

/* Shipping method list */
#checkout-checkout .radio label { font-size: .9rem !important; text-transform: none !important; font-weight: 400 !important; }

/* Alerts in checkout */
#checkout-checkout .alert { border-radius: 12px !important; border: none !important; }
#checkout-checkout .alert-danger  { background: #FFF1F2 !important; color: #9F1239 !important; }
#checkout-checkout .alert-success { background: #F0FDF4 !important; color: #166534 !important; }

/* Confirm step table */
#checkout-checkout .table { border-radius: 12px; overflow: hidden; }
#checkout-checkout .table-bordered { border: 1px solid var(--pb-border) !important; }
#checkout-checkout .table-bordered > tbody > tr > td,
#checkout-checkout .table-bordered > thead > tr > td {
  border-color: var(--pb-border) !important;
  padding: 14px 16px !important;
  font-size: .9rem !important;
}
#checkout-checkout .table-bordered > thead > tr > td { background: var(--pb-bg-soft) !important; font-weight: 600 !important; }

/* ================================================
   ACCOUNT — login / register
   ================================================ */
#account-login, #account-register, #account-account, #account-order {
  padding-top: 40px; padding-bottom: 80px;
}
#account-login h1, #account-register h1,
#account-account h1, #account-order h1 {
  font-family: var(--pb-serif); font-size: clamp(1.6rem,4vw,2.2rem); margin-bottom: 28px;
}
#account-login .well, #account-register .well {
  background: #fff !important; border: 1px solid var(--pb-border) !important;
  border-radius: 20px !important; box-shadow: none !important;
  padding: 32px !important;
}
#account-login .form-control,
#account-register .form-control {
  border: 1.5px solid var(--pb-border) !important;
  border-radius: 10px !important; padding: 11px 14px !important;
  font-size: .9rem !important; box-shadow: none !important; height: auto !important;
}
#account-login .form-control:focus,
#account-register .form-control:focus {
  border-color: var(--pb-pink-dk) !important;
  box-shadow: 0 0 0 3px rgba(201,123,140,.12) !important;
}
#account-login label, #account-register label {
  font-size: .8rem !important; font-weight: 600 !important;
  text-transform: uppercase !important; letter-spacing: .04em !important;
  margin-bottom: 6px !important;
}
#account-login .btn-primary, #account-register .btn-primary {
  background: var(--pb-text) !important; border-color: var(--pb-text) !important;
  border-radius: 12px !important; font-weight: 600 !important;
  padding: 12px 28px !important; transition: all .2s !important;
}
#account-login .btn-primary:hover, #account-register .btn-primary:hover {
  background: var(--pb-pink-dk) !important; border-color: var(--pb-pink-dk) !important;
}

/* ================================================
   RESPONSIVE — cart
   ================================================ */
@media (max-width: 767px) {
  .pb-cart-item {
    grid-template-columns: 64px 1fr;
    grid-template-rows: auto auto auto;
    gap: 8px; padding: 16px;
  }
  .pb-cart-item-img img { width: 64px; height: 64px; }
  .pb-cart-item-qty { grid-column: 1 / -1; }
  .pb-cart-item-price { display: none; }
  .pb-cart-item-total { grid-column: 2; text-align: left; }
  .pb-cart-item-price-mobile { display: block; font-size: .8rem; color: var(--pb-muted); margin-top: 4px; }
  .pb-order-summary { position: static; margin-top: 8px; }
}

/* ================================================
   ADD TO CART MODAL
   ================================================ */
.pb-atc-overlay {
  position: fixed; inset: 0; z-index: 3000;
  background: rgba(44,26,29,.55); backdrop-filter: blur(4px);
  display: flex; align-items: center; justify-content: center;
  padding: 20px; opacity: 0; pointer-events: none;
  transition: opacity .3s;
}
.pb-atc-overlay.show { opacity: 1; pointer-events: auto; }

.pb-atc-modal {
  background: #fff; border-radius: 24px; padding: 36px 32px;
  max-width: 420px; width: 100%; position: relative;
  transform: translateY(16px) scale(.97);
  transition: transform .3s;
  box-shadow: 0 24px 80px rgba(44,26,29,.2);
}
.pb-atc-overlay.show .pb-atc-modal { transform: translateY(0) scale(1); }

.pb-atc-close {
  position: absolute; top: 16px; right: 16px;
  background: var(--pb-bg-soft); border: none; border-radius: 50%;
  width: 32px; height: 32px; cursor: pointer; font-size: .9rem;
  color: var(--pb-muted); display: flex; align-items: center; justify-content: center;
  transition: background .2s;
}
.pb-atc-close:hover { background: var(--pb-border); }

.pb-atc-check {
  width: 52px; height: 52px; border-radius: 50%;
  background: #F0FDF4; border: 2px solid #BBF7D0;
  color: #16a34a; font-size: 1.4rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
}

.pb-atc-modal h3 {
  font-family: var(--pb-serif); font-size: 1.5rem;
  text-align: center; margin-bottom: 20px; color: var(--pb-text);
}

.pb-atc-product {
  display: flex; align-items: center; gap: 16px;
  background: var(--pb-bg-soft); border-radius: 14px;
  padding: 16px; margin-bottom: 24px;
}
.pb-atc-product img {
  width: 64px; height: 64px; object-fit: contain; flex-shrink: 0;
}
.pb-atc-product-name {
  font-weight: 600; font-size: .95rem; color: var(--pb-text); margin-bottom: 6px;
}
.pb-atc-product-price {
  font-family: var(--pb-serif); font-size: 1.3rem; font-weight: 700; color: var(--pb-text);
}
.pb-atc-product-price span { font-size: .9rem; color: var(--pb-muted); font-family: var(--pb-sans); font-weight: 400; }

.pb-atc-actions { display: flex; flex-direction: column; gap: 10px; }
.pb-atc-actions .pb-btn { justify-content: center; }

/* ================================================
   CART v2 — clean grid
   ================================================ */
.pb-cart-header {
  display: grid;
  grid-template-columns: 80px 1fr 160px 100px 110px;
  gap: 16px; padding: 14px 24px;
  font-size: .73rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: .08em; color: var(--pb-muted);
  border-bottom: 1px solid var(--pb-border);
}
.pb-ci {
  display: grid;
  grid-template-columns: 80px 1fr 160px 100px 110px;
  gap: 16px; align-items: center;
  padding: 20px 24px;
  border-bottom: 1px solid var(--pb-border);
}
.pb-ci:last-child { border-bottom: none; }
.pb-ci-img img {
  width: 80px; height: 80px; object-fit: contain;
  border-radius: 12px; background: var(--pb-bg-soft); display: block;
}
.pb-ci-name { font-weight: 600; font-size: .95rem; color: var(--pb-text); }
.pb-ci-name:hover { color: var(--pb-pink-dk); }
.pb-ci-nostock { font-size: .78rem; color: #ef4444; font-weight: 600; display: block; margin-top: 4px; }
.pb-ci-opt { font-size: .8rem; color: var(--pb-muted); margin-top: 3px; }
.pb-ci-price-m { font-size: .82rem; color: var(--pb-muted); margin-top: 6px; }
.pb-ci-price { font-size: .9rem; color: var(--pb-muted); }
.pb-ci-total { font-family: var(--pb-serif); font-size: 1.1rem; font-weight: 700; color: var(--pb-text); }

@media (max-width: 767px) {
  .pb-cart-header { display: none; }
  .pb-ci {
    grid-template-columns: 72px 1fr auto;
    grid-template-rows: auto auto;
    gap: 10px 12px; padding: 16px;
  }
  .pb-ci-img img { width: 72px; height: 72px; }
  .pb-ci-qty { grid-column: 1 / -1; }
  .pb-ci-total { grid-column: 2; font-size: 1rem; }
}

/* ================================================
   BOOTSTRAP 3/5 BRIDGE
   OC3 JS přidává .in pro otevřený collapse,
   BS5 CSS to nezná — musíme to doplnit
   ================================================ */
.collapse.in,
.panel-collapse.in { display: block !important; }
.collapse.in.fade  { opacity: 1; }

/* ================================================
   SUCCESS PAGE
   ================================================ */
.pb-success-page {
  min-height: 80vh; display: flex; align-items: center;
  padding: 60px 0 80px; position: relative; overflow: hidden;
}
.pb-success-card {
  background: #fff; border: 1px solid var(--pb-border);
  border-radius: 28px; padding: 52px 48px;
  max-width: 620px; margin: 0 auto; text-align: center;
  position: relative; z-index: 1;
  box-shadow: 0 8px 48px rgba(232,164,184,.15);
}
.pb-success-icon {
  width: 80px; height: 80px; border-radius: 50%;
  background: linear-gradient(135deg, #F0FDF4, #DCFCE7);
  border: 2px solid #BBF7D0; color: #16a34a;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 24px;
}
.pb-success-card h1 {
  font-family: var(--pb-serif); font-size: clamp(1.8rem, 4vw, 2.4rem);
  margin-bottom: 12px; color: var(--pb-text);
}
.pb-success-sub {
  color: var(--pb-muted); font-size: 1rem; margin-bottom: 36px;
  line-height: 1.6;
}

/* Steps */
.pb-success-steps {
  display: flex; flex-direction: column; gap: 16px;
  background: var(--pb-bg-soft); border-radius: 16px;
  padding: 24px; margin-bottom: 32px; text-align: left;
}
.pb-success-step {
  display: flex; align-items: flex-start; gap: 16px;
}
.pb-ss-num {
  width: 32px; height: 32px; border-radius: 50%; flex-shrink: 0;
  background: var(--pb-pink); color: var(--pb-text);
  font-weight: 700; font-size: .85rem;
  display: flex; align-items: center; justify-content: center;
}
.pb-ss-text strong {
  display: block; font-size: .9rem; font-weight: 700;
  color: var(--pb-text); margin-bottom: 2px;
}
.pb-ss-text span { font-size: .82rem; color: var(--pb-muted); }

/* Actions */
.pb-success-actions {
  display: flex; flex-direction: column; gap: 12px; margin-bottom: 32px;
}
.pb-success-actions .pb-btn { justify-content: center; }

/* Product reminder */
.pb-success-product {
  display: flex; align-items: center; gap: 16px;
  border-top: 1px solid var(--pb-border); padding-top: 24px; text-align: left;
}
.pb-success-product img {
  width: 60px; height: 60px; object-fit: contain; flex-shrink: 0;
}
.pb-sp-name { font-weight: 600; font-size: .9rem; margin-bottom: 4px; }
.pb-sp-note { font-size: .82rem; color: var(--pb-muted); }

/* Konfety */
.pb-confetti {
  position: absolute; inset: 0; pointer-events: none; overflow: hidden;
}
.pb-confetti span {
  position: absolute; width: 10px; height: 10px; border-radius: 2px;
  animation: pb-fall 4s ease-in infinite;
}
.pb-confetti span:nth-child(1) { left:10%; background:var(--pb-pink); animation-delay:0s; }
.pb-confetti span:nth-child(2) { left:25%; background:var(--pb-gold); animation-delay:.4s; border-radius:50%; }
.pb-confetti span:nth-child(3) { left:40%; background:var(--pb-pink-dk); animation-delay:.8s; }
.pb-confetti span:nth-child(4) { left:55%; background:var(--pb-pink); animation-delay:.2s; border-radius:50%; }
.pb-confetti span:nth-child(5) { left:70%; background:var(--pb-gold); animation-delay:1s; }
.pb-confetti span:nth-child(6) { left:80%; background:var(--pb-pink-dk); animation-delay:.6s; border-radius:50%; }
.pb-confetti span:nth-child(7) { left:15%; background:var(--pb-gold); animation-delay:1.2s; }
.pb-confetti span:nth-child(8) { left:90%; background:var(--pb-pink); animation-delay:.3s; border-radius:50%; }
@keyframes pb-fall {
  0%   { top: -10px; transform: rotate(0deg) translateX(0); opacity: 1; }
  100% { top: 100%; transform: rotate(360deg) translateX(30px); opacity: 0; }
}

@media (max-width: 575px) {
  .pb-success-card { padding: 32px 20px; }
  .pb-success-actions { flex-direction: column; }
  .pb-btn-lg {
    padding: 16px 20px;
  }
}

/* ================================================
   PRODUCT GALLERY
   ================================================ */
.pb-prod-gallery { position: relative; }

.pb-gallery-main {
  position: relative;
  background: var(--pb-bg-soft);
  border-radius: 24px; overflow: hidden;
  aspect-ratio: 1 / 1;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 12px;
}
.pb-gallery-main img {
  width: 100%; height: 100%;
  object-fit: contain; padding: 24px;
  transition: opacity .25s;
}
.pb-gallery-thumbs {
  display: flex; gap: 8px; flex-wrap: wrap;
}
.pb-gallery-thumb {
  width: 64px; height: 64px; border-radius: 10px;
  border: 2px solid var(--pb-border);
  background: var(--pb-bg-soft);
  overflow: hidden; cursor: pointer; padding: 0;
  transition: border-color .2s, transform .15s;
  flex-shrink: 0;
}
.pb-gallery-thumb img {
  width: 100%; height: 100%; object-fit: contain; padding: 4px;
}
.pb-gallery-thumb:hover { border-color: var(--pb-pink-dk); transform: scale(1.04); }
.pb-gallery-thumb.active { border-color: var(--pb-pink-dk); border-width: 2.5px; }

@media (max-width: 575px) {
  .pb-gallery-main { border-radius: 16px; }
  .pb-gallery-thumb { width: 52px; height: 52px; }
}

/* ================================================
   CHECKOUT / CART LANGUAGE BAR
   ================================================ */
.pb-checkout-langbar {
  background: var(--pb-bg-soft);
  border-bottom: 1px solid var(--pb-border);
  padding: 8px 0;
  /* Musí být pod fixním headerem (minibar 36px + navbar ~72px) */
  margin-top: calc(36px + 72px);
  position: relative; z-index: 10;
}
.pb-checkout-langbar .pb-curr-a {
  font-size: .82rem; font-weight: 600; color: var(--pb-muted);
  text-decoration: none; padding: 3px 8px; border-radius: 6px;
  transition: all .2s;
}
.pb-checkout-langbar .pb-curr-a:hover,
.pb-checkout-langbar .pb-curr-a.active {
  color: var(--pb-text); background: var(--pb-pink);
}
.pb-checkout-langbar .pb-sep { color: var(--pb-border); font-size: .8rem; }

/* Checkout/cart nemají minibar — compensate */
#checkout-checkout.container,
.pb-cart-wrap { margin-top: 0; }

/* ================================================
   MINIBAR REDESIGN — language + currency vždy viditelné
   ================================================ */
.pb-minibar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1040;
  height: 36px; background: var(--pb-text);
  display: flex; align-items: center;
}
.pb-minibar-inner {
  width: 100%; max-width: 100%;
  padding: 0 16px;
  display: flex; align-items: center; justify-content: space-between;
}
.pb-minibar-text {
  font-size: .72rem; color: rgba(255,255,255,.7); letter-spacing: .03em;
}
.pb-minibar-right {
  display: flex; align-items: center; gap: 6px; margin-left: auto;
}
/* Vlajky v minibaru */
.pb-minibar-right .pb-flag-btn {
  font-size: .95rem; padding: 2px 4px; border-radius: 4px;
  text-decoration: none; opacity: .65;
  transition: opacity .2s, background .2s;
  line-height: 1;
}
.pb-minibar-right .pb-flag-btn:hover,
.pb-minibar-right .pb-flag-btn.active { opacity: 1; background: rgba(255,255,255,.15); }
/* Měna v minibaru */
.pb-minibar-right .pb-curr-a {
  font-size: .72rem; font-weight: 700; letter-spacing: .06em;
  color: rgba(255,255,255,.65); text-decoration: none;
  padding: 2px 6px; border-radius: 4px;
  transition: all .2s;
}
.pb-minibar-right .pb-curr-a:hover,
.pb-minibar-right .pb-curr-a.active { color: #fff; background: rgba(255,255,255,.15); }
.pb-sep-mini { color: rgba(255,255,255,.3); font-size: .7rem; }

/* home.twig má svůj pb-minibar uvnitř page — skryjeme ho tam,
   teď je globálně v headeru */
.pb-hero ~ * .pb-minibar,
section.pb-minibar { display: none !important; }

/* Thumbnail strip — no horizontal scroll */
.pb-gallery-thumbs {
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.pb-gallery-thumbs::-webkit-scrollbar { display: none; }
.pb-gallery-thumb { scroll-snap-align: start; flex-shrink: 0; }

/* Odebrat duplicate minibar z checkout langbaru — teď je v hlavičce */
.pb-checkout-langbar { display: none; }

/* Button reset pro flag/currency tlačítka v minibaru */
button.pb-flag-btn,
button.pb-curr-a {
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
}

/* ===== DESIRE HOOK ===== */
.pb-desire-hook {
  background: linear-gradient(135deg, #FDF0F4 0%, #FDF8F6 100%);
  padding: 72px 0;
  text-align: center;
}
.pb-desire-text {
  font-size: 1.15rem;
  line-height: 1.9;
  max-width: 640px;
  margin: 0 auto 1.5rem;
}
.pb-desire-text em {
  font-style: italic;
  color: var(--pink-deep);
  font-weight: 500;
}

/* ===== SCENT NOTES ===== */
.pb-scent-notes {
  font-size: .82rem;
  color: var(--pink-deep);
  font-weight: 500;
  letter-spacing: .04em;
  margin-bottom: .5rem;
  text-transform: uppercase;
}
.pb-scent-card--featured {
  border: 2px solid var(--pink);
  background: linear-gradient(135deg, #FDF0F4 0%, #fff 100%);
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(232,164,184,.25);
}

/* ===== FOR WHOM LIST ===== */
.pb-for-whom-list {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
}
.pb-for-whom-list li {
  padding: .6rem 0;
  font-size: 1.05rem;
  border-bottom: 1px solid rgba(232,164,184,.2);
  color: var(--text);
}
.pb-for-whom-list li:last-child { border-bottom: none; }
.pb-anti-target {
  font-size: .9rem;
  color: #888;
  margin-top: 1.25rem;
  line-height: 1.7;
}

/* ===== TIPS VISUAL (nahrada tips sekce) ===== */
.pb-tips-visual {
  display: flex;
  flex-direction: column;
  gap: .75rem;
}
.pb-tip-card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: #fff;
  border: 1px solid rgba(232,164,184,.3);
  border-radius: 12px;
  padding: 1rem 1.25rem;
}
.pb-tip-ico {
  font-size: 1.4rem;
  flex-shrink: 0;
  margin-top: .1rem;
}
.pb-tip-card strong {
  display: block;
  color: var(--text);
  font-weight: 600;
  margin-bottom: .15rem;
}
.pb-tip-card span {
  font-size: .9rem;
  color: #666;
}

/* ===== REVIEWS REWRITE ===== */
.pb-review-card {
  background: #fff;
  border: 1px solid rgba(232,164,184,.3);
  border-radius: 16px;
  padding: 1.75rem;
  height: 100%;
  transition: box-shadow .2s;
}
.pb-review-card:hover { box-shadow: 0 6px 24px rgba(232,164,184,.2); }
.pb-review-card--featured {
  border-color: var(--pink);
  background: linear-gradient(135deg, #FDF0F4 0%, #fff 100%);
}
.pb-review-stars { font-size: 1rem; margin-bottom: .75rem; }
.pb-review-text {
  font-size: .97rem;
  line-height: 1.75;
  color: var(--text);
  font-style: italic;
  margin-bottom: 1rem;
}
.pb-review-meta {
  font-size: .85rem;
  color: #888;
}
.pb-review-meta strong { color: var(--text); }
.pb-review-invite {
  font-size: .9rem;
  color: #888;
}
.pb-review-invite a { color: var(--pink-deep); }

/* ===== OBJECTIONS ===== */
.pb-objections {
  padding: 80px 0;
  background: var(--bg);
}
.pb-objection-card {
  background: #fff;
  border: 1px solid rgba(232,164,184,.25);
  border-radius: 16px;
  padding: 1.5rem;
  height: 100%;
  transition: box-shadow .2s, border-color .2s;
}
.pb-objection-card:hover {
  box-shadow: 0 4px 20px rgba(232,164,184,.18);
  border-color: var(--pink);
}
.pb-objection-card h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: .75rem;
}
.pb-objection-card p {
  font-size: .95rem;
  color: #555;
  line-height: 1.75;
  margin: 0;
}
.pb-objection-card--guarantee {
  background: linear-gradient(135deg, #FDF0F4 0%, #fff 100%);
  border-color: var(--pink);
  text-align: center;
}
.pb-objection-card--guarantee h4 { font-size: 1.1rem; }

/* ===== MICROCOPY ===== */
.pb-microcopy {
  font-size: .83rem;
  color: #999;
  line-height: 1.6;
}

/* ===== DUPE SECTION - lepší cenový framing ===== */
.pb-compare-price--high {
  font-size: 1.4rem;
  font-weight: 700;
  color: #c0392b;
  text-decoration: line-through;
  opacity: .7;
}
.pb-compare-price--low {
  font-size: 2rem;
  font-weight: 800;
  color: var(--pink-deep);
}

/* ===== FINAL CTA - posílení ===== */
.pb-final-cta h2 {
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  margin-bottom: .75rem;
}
.pb-final-cta p {
  color: #888;
  font-size: .95rem;
  margin-bottom: 1.25rem;
}

/* ===== SEKCE — KONZISTENTNÍ MEZERY ===== */
.pb-hero          { padding: 0; }
.pb-trust         { padding: 28px 0; }
.pb-desire-hook   { padding: 80px 0; }
.pb-scent-section { padding: 88px 0; }
.pb-for-whom      { padding: 88px 0; background: #fff; }
.pb-reviews       { padding: 88px 0; background: var(--bg); }
.pb-dupe-section  { padding: 72px 0; background: #fff; }
.pb-prod-sec      { padding: 88px 0; background: var(--bg); }
.pb-objections    { padding: 88px 0; background: #fff; }
.pb-faq           { padding: 80px 0; background: var(--bg); }
.pb-final-cta     { padding: 88px 0; background: linear-gradient(135deg, #FDF0F4 0%, var(--bg) 100%); }

/* Oddělení sekcí stejného pozadí vizuální linkou */
.pb-reviews + .pb-dupe-section,
.pb-prod-sec + .pb-objections { border-top: 1px solid rgba(232,164,184,.15); }

/* ===== NAVBAR SWITCHERS ===== */
.pb-nav-switchers {
  display: flex;
  align-items: center;
  gap: 2px;
}
/* Flag buttons v navbaru — kompaktnější */
.pb-nav-switchers .pb-flag-btn {
  font-size: 1.15rem;
  background: none;
  border: none;
  padding: 4px 5px;
  border-radius: 6px;
  cursor: pointer;
  opacity: .55;
  transition: opacity .15s, background .15s;
  line-height: 1;
}
.pb-nav-switchers .pb-flag-btn:hover,
.pb-nav-switchers .pb-flag-btn.active {
  opacity: 1;
  background: rgba(232,164,184,.18);
}
/* Currency buttons v navbaru */
.pb-nav-switchers .pb-curr-a {
  font-size: .75rem;
  font-weight: 600;
  background: none;
  border: none;
  padding: 4px 6px;
  border-radius: 6px;
  color: #555;
  cursor: pointer;
  transition: color .15s, background .15s;
  letter-spacing: .03em;
}
.pb-nav-switchers .pb-curr-a:hover,
.pb-nav-switchers .pb-curr-a.active {
  color: var(--pink-deep);
  background: rgba(232,164,184,.18);
}
.pb-nav-switchers .pb-sep-mini {
  color: #ccc;
  font-size: .7rem;
}
/* Svislý oddělovač */
.pb-nav-divider {
  width: 1px;
  height: 20px;
  background: rgba(0,0,0,.12);
  margin: 0 4px;
}
/* Minibar — jen info text, vycentrovaný */
.pb-minibar-inner {
  justify-content: center;
}
.pb-minibar-right { display: none; } /* přesunuto do navbaru */

/* Mobile: switchers v navbaru vedle košíku */
@media (max-width: 767px) {
  .pb-nav-switchers .pb-flag-btn { font-size: 1rem; padding: 3px 4px; }
  .pb-nav-switchers .pb-curr-a   { font-size: .7rem; padding: 3px 5px; }
}

/* ===== COMPARE WRAP — nový layout ===== */
.pb-compare-wrap {
  display: flex;
  align-items: stretch;
  gap: 0;
  max-width: 820px;
  margin: 0 auto;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 8px 48px rgba(44,26,29,.1);
}

/* Sdílené styly obou sloupců */
.pb-compare-side {
  flex: 1;
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

/* Levá — konkurence: tlumená */
.pb-compare-side--theirs {
  background: #F7F3F1;
  border-right: 1px solid rgba(232,164,184,.25);
}
.pb-compare-side--theirs .pb-compare-eyebrow {
  color: #999;
}
.pb-compare-side--theirs .pb-compare-brands {
  color: #555;
}

/* Pravá — Pink Blush: žhavá */
.pb-compare-side--ours {
  background: linear-gradient(160deg, #FFF0F6 0%, #FFF8F4 100%);
  position: relative;
}

/* Badge "Naše volba" */
.pb-compare-badge-best {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: var(--pink);
  color: #fff;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 14px;
  align-self: flex-start;
}

/* Eyebrow + brand uvnitř sloupce */
.pb-compare-eyebrow {
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--pink-deep);
  margin-bottom: 4px;
}
.pb-compare-brands {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 20px;
}

/* Řádky s daty */
.pb-compare-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid rgba(0,0,0,.06);
  gap: 8px;
  font-size: .92rem;
}
.pb-compare-row:last-of-type { border-bottom: none; }

.pb-compare-tag {
  font-size: .78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .05em;
  color: #aaa;
  flex-shrink: 0;
}

/* Ceny */
.pb-compare-price-theirs {
  font-family: var(--font-serif, 'Playfair Display', serif);
  font-size: 1.1rem;
  font-weight: 700;
  color: #c0392b;
  text-decoration: line-through;
  opacity: .75;
}
.pb-compare-price-ours {
  font-family: var(--font-serif, 'Playfair Display', serif);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--pink-deep);
  line-height: 1;
}
.pb-compare-row--highlight {
  background: rgba(232,164,184,.12);
  border-radius: 8px;
  padding: 10px 8px;
  margin: 4px -8px;
}
.pb-compare-instock {
  color: #2e7d32;
  font-size: .85rem;
  font-weight: 500;
}

/* VS badge */
.pb-compare-vs-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  padding: 0 4px;
  z-index: 1;
}
.pb-compare-vs-badge {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--text);
  color: #fff;
  font-size: .85rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  letter-spacing: .05em;
  flex-shrink: 0;
  box-shadow: 0 2px 12px rgba(44,26,29,.2);
}

/* Tagline pod boxem */
.pb-compare-tagline {
  font-size: .95rem;
  color: #888;
  font-style: italic;
}

/* Mobile */
@media (max-width: 700px) {
  .pb-compare-wrap {
    flex-direction: column;
    border-radius: 20px;
  }
  .pb-compare-vs-wrap {
    padding: 12px 0;
    border-top: 1px solid rgba(232,164,184,.2);
    border-bottom: 1px solid rgba(232,164,184,.2);
  }
  .pb-compare-side--theirs { border-right: none; }
  .pb-compare-side { padding: 28px 24px; }
}

/* ===== FRAGRANTICA SEKCE ===== */
.pb-fragrantica {
  padding: 88px 0;
  background: #fff;
}

/* Highlight stat boxy */
.pb-frag-stat {
  border-radius: 16px;
  padding: 24px 20px;
  text-align: center;
  height: 100%;
}
.pb-frag-stat--gold {
  background: linear-gradient(135deg, #FDF7EE 0%, #FFF3D6 100%);
  border: 1.5px solid #C9A96E44;
}
.pb-frag-stat--pink {
  background: linear-gradient(135deg, #FDF0F4 0%, #FFF0F8 100%);
  border: 1.5px solid #E8A4B844;
}
.pb-frag-stat--soft {
  background: #F8F6F4;
  border: 1.5px solid #E8E0DC;
}
.pb-frag-num {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1.1;
  margin-bottom: 8px;
}
.pb-frag-stat--gold .pb-frag-num { color: #A07840; }
.pb-frag-stat--pink .pb-frag-num { color: var(--pink-deep); }
.pb-frag-label {
  font-size: .82rem;
  color: #666;
  line-height: 1.5;
}

/* Karty s bary */
.pb-frag-card {
  background: var(--bg);
  border: 1px solid rgba(232,164,184,.2);
  border-radius: 16px;
  padding: 24px;
  height: 100%;
}
.pb-frag-card--value {
  background: linear-gradient(135deg, #FFFBF0 0%, #FFF8F4 100%);
  border-color: rgba(201,169,110,.3);
}
.pb-frag-card-title {
  font-size: .85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .07em;
  color: var(--pink-deep);
  margin: 0 0 16px;
}

/* Řádky s bary */
.pb-frag-bar-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  font-size: .82rem;
  color: var(--text);
}
.pb-frag-bar-row--muted { opacity: .55; }
.pb-frag-bar-row > span:first-child {
  width: 110px;
  flex-shrink: 0;
  font-size: .8rem;
}
.pb-frag-bar {
  flex: 1;
  height: 8px;
  background: rgba(232,164,184,.15);
  border-radius: 99px;
  overflow: hidden;
}
.pb-frag-bar-fill {
  height: 100%;
  background: var(--pink);
  border-radius: 99px;
  transition: width .6s ease;
}
.pb-frag-bar-fill--gold   { background: var(--gold); }
.pb-frag-bar-fill--pink   { background: var(--pink-deep); }
.pb-frag-bar-fill--muted  { background: #D0C8C4; }
.pb-frag-votes {
  font-size: .75rem;
  color: #aaa;
  width: 28px;
  text-align: right;
  flex-shrink: 0;
}

/* Value note */
.pb-frag-value-note {
  margin: 12px 0 0;
  font-size: .8rem;
  font-weight: 700;
  color: var(--pink-deep);
}
.pb-frag-card--value .pb-frag-value-note { color: #A07840; }

/* Spacing fix pro novou sekci v sekvenci */
.pb-fragrantica { border-top: 1px solid rgba(232,164,184,.15); }

/* ===== REVIEW FORMULÁŘ ===== */
.pb-review-form-sec {
  padding: 80px 0;
  background: linear-gradient(135deg, #FDF0F4 0%, var(--bg) 100%);
}
.pb-rform-wrap {
  background: #fff;
  border: 1px solid rgba(232,164,184,.3);
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 4px 32px rgba(232,164,184,.12);
}

/* Label */
.pb-rform-label {
  display: block;
  font-size: .8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .07em;
  color: var(--pink-deep);
  margin-bottom: 8px;
}

/* Groups */
.pb-rform-group { margin-bottom: 20px; }
.pb-rform-hint {
  display: block;
  font-size: .75rem;
  color: #bbb;
  margin-top: 4px;
}

/* Input / Textarea */
.pb-rform-input,
.pb-rform-textarea {
  width: 100%;
  border: 1.5px solid rgba(232,164,184,.4);
  border-radius: 10px;
  padding: 12px 16px;
  font-family: inherit;
  font-size: .95rem;
  color: var(--text);
  background: var(--bg);
  transition: border-color .2s, box-shadow .2s;
  outline: none;
  resize: vertical;
}
.pb-rform-input:focus,
.pb-rform-textarea:focus {
  border-color: var(--pink-deep);
  box-shadow: 0 0 0 3px rgba(232,164,184,.2);
  background: #fff;
}
.pb-rform-textarea { min-height: 110px; }

/* Char counter */
.pb-rform-chars {
  text-align: right;
  font-size: .75rem;
  color: #ccc;
  margin-top: 4px;
}

/* Stars */
.pb-rform-stars-wrap {
  margin-bottom: 20px;
}
.pb-stars-select {
  display: flex;
  gap: 6px;
  margin-bottom: 6px;
}
.pb-star {
  font-size: 2rem;
  cursor: pointer;
  color: #DDD;
  transition: color .12s, transform .1s;
  line-height: 1;
  user-select: none;
}
.pb-star.hover    { color: #F5C842; transform: scale(1.1); }
.pb-star.selected { color: #F5C842; }

/* Error */
.pb-rform-error {
  background: #FFF0F0;
  border: 1px solid #FFCDD2;
  border-radius: 8px;
  padding: 10px 14px;
  font-size: .88rem;
  color: #C62828;
  margin-bottom: 16px;
}

/* Success */
.pb-rform-success {
  text-align: center;
  padding: 40px 20px;
}
.pb-rform-success-ico {
  font-size: 3rem;
  margin-bottom: 16px;
}
.pb-rform-success h3 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.6rem;
  color: var(--text);
  margin-bottom: 8px;
}
.pb-rform-success p {
  color: #666;
  font-size: .95rem;
  line-height: 1.7;
}

@media (max-width: 576px) {
  .pb-rform-wrap { padding: 28px 20px; }
  .pb-star { font-size: 1.7rem; }
}

/* ===== INFORMATION PAGE ===== */
.pb-info-page {
  min-height: 60vh;
  padding-bottom: 80px;
}
.pb-info-hero {
  background: linear-gradient(135deg, #FDF0F4 0%, var(--bg) 100%);
  padding: 60px 0 48px;
  border-bottom: 1px solid rgba(232,164,184,.2);
  margin-bottom: 56px;
}
.pb-info-breadcrumb {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: .8rem;
  margin-bottom: 20px;
  flex-wrap: wrap;
}
.pb-bc-link {
  color: #aaa;
  text-decoration: none;
  transition: color .15s;
}
.pb-bc-link:hover { color: var(--pink-deep); }
.pb-bc-sep { color: #ccc; }
.pb-bc-current { color: var(--pink-deep); font-weight: 600; }
.pb-info-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 400;
  color: var(--text);
  margin: 0 0 20px;
  line-height: 1.25;
}
.pb-info-accent {
  width: 48px;
  height: 3px;
  background: linear-gradient(to right, var(--pink), var(--pink-deep));
  border-radius: 2px;
}

/* Obsah stránky */
.pb-info-content {
  font-size: 1rem;
  line-height: 1.85;
  color: #444;
}
.pb-info-content h1,
.pb-info-content h2,
.pb-info-content h3 {
  font-family: 'Playfair Display', Georgia, serif;
  color: var(--text);
  font-weight: 400;
  margin-top: 2rem;
  margin-bottom: .75rem;
}
.pb-info-content h2 { font-size: 1.5rem; }
.pb-info-content h3 { font-size: 1.2rem; }
.pb-info-content p  { margin-bottom: 1.1rem; }
.pb-info-content a  { color: var(--pink-deep); text-decoration: underline; }
.pb-info-content ul,
.pb-info-content ol {
  padding-left: 1.4rem;
  margin-bottom: 1.1rem;
}
.pb-info-content li { margin-bottom: .4rem; }
.pb-info-content strong { color: var(--text); font-weight: 600; }
.pb-info-content hr {
  border: none;
  border-top: 1px solid rgba(232,164,184,.3);
  margin: 2rem 0;
}
.pb-info-content table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 1.5rem;
  font-size: .9rem;
}
.pb-info-content th {
  background: #FDF0F4;
  color: var(--pink-deep);
  font-weight: 600;
  padding: 10px 14px;
  text-align: left;
  border-bottom: 2px solid rgba(232,164,184,.3);
}
.pb-info-content td {
  padding: 10px 14px;
  border-bottom: 1px solid rgba(232,164,184,.15);
}

/* Zpět tlačítko */
.pb-info-back {
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid rgba(232,164,184,.2);
}

/* ===== CART PAGE — přeložené stringy ===== */
/* lang_code přidán do cart controlleru — překlady v cart.twig */

/* ===== SOCIAL BUTTONS (footer) ===== */
.pb-footer-social {
  display: flex;
  gap: 10px;
  margin-top: 16px;
}
.pb-social-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(255,255,255,.08);
  color: rgba(255,255,255,.6);
  border: 1px solid rgba(255,255,255,.12);
  transition: background .2s, color .2s, border-color .2s;
  text-decoration: none;
}
.pb-social-btn:hover {
  background: var(--pink);
  color: #fff;
  border-color: var(--pink);
}
.pb-footer-tel {
  color: rgba(255,255,255,.7) !important;
  font-size: .88rem;
  text-decoration: none;
}
.pb-footer-tel:hover { color: var(--pink) !important; }

/* ===== MOBILE OVERFLOW + RESPONSIVE IMAGE FIX ===== */

/* Zabránit horizontálnímu scrollu */
html, body {
  overflow-x: hidden;
  max-width: 100%;
}
* { box-sizing: border-box; }

/* Všechny obrázky responsivní */
img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Hero sekce — nepřetékat na mobilu */
.pb-hero .row { overflow: hidden; }
.pb-hero-img-wrap {
  overflow: hidden;
  max-width: 100%;
}
.pb-hero-img-wrap img {
  max-width: 100%;
  width: 65%;
}
@media (max-width: 767px) {
  .pb-hero-img-wrap img {
    width: 100%;
    max-width: 320px;
    margin: 0 auto;
  }
  /* Hero — obrázek nepřetéká kontejner */
  .pb-hero .col-12 {
    overflow: hidden;
    max-width: 100vw;
  }
}

/* Gallery */
.pb-gallery-img,
.pb-gallery-main img,
.pb-gallery-thumb img {
  max-width: 100%;
  width: 100%;
}

/* Compare box na mobilu */
@media (max-width: 700px) {
  .pb-compare-side {
    max-width: 100%;
    overflow: hidden;
  }
}

/* ===== POPUP — MOBILE FIX ===== */

/* Overlay: fixed přes celý viewport, scroll pokud obsah přetéká */
.pb-popup-overlay {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  bottom: 0 !important;
  width: 100% !important;
  height: 100% !important;
  z-index: 9999 !important;
  align-items: flex-start;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  padding: 16px;
}

/* Popup box — na mobilu plná šířka, menší padding */
@media (max-width: 576px) {
  .pb-popup-overlay {
    padding: 12px;
    align-items: flex-start;
    padding-top: max(16px, env(safe-area-inset-top));
  }
  .pb-popup {
    padding: 28px 20px 24px;
    border-radius: 16px;
    max-width: 100%;
    width: 100%;
    margin: auto 0;
  }
  .pb-popup h3 { font-size: 1.5rem; }
  .pb-popup-emoji { font-size: 2.4rem; }
}

/* ATC modal — stejný fix */
.pb-atc-overlay {
  position: fixed !important;
  top: 0 !important; left: 0 !important;
  right: 0 !important; bottom: 0 !important;
  width: 100% !important; height: 100% !important;
  z-index: 9998 !important;
  align-items: flex-end;
  overflow: hidden;
}
@media (max-width: 576px) {
  .pb-atc-modal {
    border-radius: 20px 20px 0 0;
    max-width: 100%;
    width: 100%;
  }
}

/* ===== FORCE RESPONSIVE IMAGES — OVERRIDE VŠE ===== */
img,
img.pb-hero-img,
img.pb-gallery-img,
#pb-hero-img,
#pb-gallery-main,
.pb-gallery-thumb img,
.pb-hero-img-wrap img,
.pb-gallery img {
  max-width: 100% !important;
  height: auto !important;
  display: block !important;
}

/* Wrapper obrázku galerie — nesmí přetékat */
.pb-gallery,
.pb-gallery-wrap,
.col-lg-5 .pb-gallery {
  max-width: 100%;
  overflow: hidden;
}

/* Hero img — mobile */
@media (max-width: 767px) {
  #pb-hero-img {
    max-width: 440px !important;
    width: 100% !important;
    margin: 0 auto !important;
  }
}



/* ===== MOBILE NAVBAR — jeden řádek ===== */

/* Navbar nesmí zalamovat */
#pb-header .container-fluid {
  flex-wrap: nowrap !important;
  align-items: center;
}

/* Mobile controls: všechny ikony + switchers na jednom řádku */
.pb-mobile-controls {
  flex-shrink: 0;
  flex-wrap: nowrap;
  gap: 2px !important;
}

/* Kompaktní switchers na mobilu */
.pb-nav-switchers--compact .pb-flag-btn {
  font-size: .95rem !important;
  padding: 3px 3px !important;
}
.pb-nav-switchers--compact .pb-curr-a {
  font-size: .8rem !important;
  padding: 3px 8px !important;
}
.pb-nav-switchers--compact .pb-sep-mini {
  display: none; /* skrýt lomítko — šetří místo */
}


/* Icon buttons na mobilu menší */
@media (max-width: 767px) {
  .pb-icon-btn {
    width: 32px;
    height: 32px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .pb-toggler {
    width: 32px !important;
    height: 32px !important;
    padding: 4px !important;
    margin-left: 2px;
  }
  /* Logo trochu menší */
  .pb-logo { font-size: 1.5rem !important; }
}

/* ===== STICKY CTA — prostor pro footer ===== */

/* Když je sticky viditelná, přidat padding na spodek stránky */
body.pb-has-sticky {
  padding-bottom: 72px;
}

/* Footer — extra prostor když sticky visible */
#pb-footer {
  padding-bottom: calc(80px + env(safe-area-inset-bottom, 0px));
}

/* Sticky výška fixní + safe area na iPhone */
.pb-sticky-cta {
  padding-bottom: calc(12px + env(safe-area-inset-bottom, 0px));
}

/* Sticky CTA skrytá na desktopu */
@media (min-width: 992px) {
  .pb-sticky-cta { display: none !important; }
  body { padding-bottom: 0 !important; }
  #pb-footer { padding-bottom: 0; }
}

/* ===== COMPARE — VS + NAŠE VOLBA FIX ===== */
.pb-compare-vs-wrap {
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 6px;
  z-index: 2;
  flex-shrink: 0;
}
.pb-compare-vs-badge {
  width: 44px !important;
  height: 44px !important;
  border-radius: 50% !important;
  background: #2C1A1D !important;
  color: #fff !important;
  font-size: .82rem !important;
  font-weight: 800 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  letter-spacing: .05em !important;
  flex-shrink: 0 !important;
  box-shadow: 0 2px 12px rgba(44,26,29,.3) !important;
  border: 2px solid #fff !important;
}
.pb-compare-badge-best {
  display: inline-flex !important;
  align-items: center !important;
  gap: 4px !important;
  background: #C97B8C !important;
  color: #fff !important;
  font-size: .72rem !important;
  font-weight: 700 !important;
  letter-spacing: .06em !important;
  text-transform: uppercase !important;
  padding: 5px 12px !important;
  border-radius: 20px !important;
  margin-bottom: 14px !important;
  align-self: flex-start !important;
}

/* ===== CONTACT PAGE ===== */
.pb-contact-page { min-height: 70vh; padding-bottom: 80px; }

.pb-contact-hero {
  background: linear-gradient(135deg, #FDF0F4 0%, #FDF8F6 100%);
  padding: 60px 0 48px;
  border-bottom: 1px solid rgba(232,164,184,.2);
  margin-bottom: 56px;
}
.pb-contact-hero-content {
  display: flex;
  gap: 48px;
  align-items: flex-start;
  flex-wrap: wrap;
}
.pb-contact-hero-content > div:first-child { flex: 1; min-width: 260px; }
.pb-contact-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 400;
  color: #2C1A1D;
  margin: 0 0 12px;
}
.pb-contact-subtitle {
  font-size: 1rem;
  color: #666;
  line-height: 1.7;
  max-width: 480px;
  margin: 0;
}

/* Trust list */
.pb-contact-trust-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex-shrink: 0;
  min-width: 220px;
}
.pb-ct-item {
  font-size: .88rem;
  color: #555;
  display: flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  border: 1px solid rgba(232,164,184,.25);
  border-radius: 10px;
  padding: 10px 14px;
}

/* Contact body */
.pb-contact-body { padding-bottom: 40px; }

/* Contact cards */
.pb-contact-card {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: #fff;
  border: 1px solid rgba(232,164,184,.25);
  border-radius: 14px;
  padding: 16px 18px;
  margin-bottom: 12px;
}
.pb-contact-card-icon { font-size: 1.3rem; flex-shrink: 0; line-height: 1.4; }
.pb-contact-card-label {
  font-size: .75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: #C97B8C;
  margin-bottom: 3px;
}
.pb-contact-card-val {
  font-size: .95rem;
  color: #2C1A1D;
  font-weight: 500;
  text-decoration: none;
  display: block;
}
a.pb-contact-card-val:hover { color: #C97B8C; }
.pb-contact-card-note {
  font-size: .78rem;
  color: #aaa;
  margin-top: 3px;
}
.pb-contact-address-card address {
  margin: 0;
  font-style: normal;
  line-height: 1.6;
}
.pb-contact-tel {
  font-size: 1.15rem !important;
  font-weight: 600 !important;
}

/* Social v kontaktu */
.pb-contact-social {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 8px;
}
.pb-contact-social-label {
  font-size: .78rem;
  color: #aaa;
  margin-left: 4px;
}
.pb-contact-social .pb-social-btn {
  background: rgba(232,164,184,.12);
  color: #C97B8C;
  border-color: rgba(232,164,184,.3);
}
.pb-contact-social .pb-social-btn:hover {
  background: #C97B8C;
  color: #fff;
}

/* Contact form */
.pb-contact-form-wrap {
  background: #fff;
  border: 1px solid rgba(232,164,184,.2);
  border-radius: 20px;
  padding: 40px 36px;
  box-shadow: 0 8px 40px rgba(44,26,29,.07);
}
.pb-contact-form-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.7rem;
  font-weight: 400;
  color: #2C1A1D;
  margin: 0 0 8px;
}
.pb-contact-form-sub {
  font-size: .88rem;
  color: #888;
  margin: 0 0 28px;
  line-height: 1.6;
}

/* Form fields */
.pb-form-group { margin-bottom: 20px; }
.pb-form-label {
  display: block;
  font-size: .82rem;
  font-weight: 600;
  color: #444;
  margin-bottom: 6px;
}
.pb-required { color: #C97B8C; }
.pb-form-input {
  width: 100%;
  border: 1.5px solid rgba(232,164,184,.35);
  border-radius: 10px;
  padding: 11px 14px;
  font-size: .95rem;
  color: #2C1A1D;
  background: #fdfafa;
  transition: border-color .2s, box-shadow .2s;
  outline: none;
  font-family: 'DM Sans', sans-serif;
  box-sizing: border-box;
}
.pb-form-input:focus {
  border-color: #C97B8C;
  box-shadow: 0 0 0 3px rgba(201,123,140,.12);
  background: #fff;
}
.pb-form-input--error { border-color: #e74c3c !important; }
.pb-form-error { font-size: .78rem; color: #e74c3c; margin-top: 4px; }
.pb-form-textarea { resize: vertical; min-height: 140px; }
.pb-btn-full { width: 100%; justify-content: center; }

/* Success state */
.pb-contact-success {
  text-align: center;
  padding: 40px 20px;
}
.pb-contact-success-emoji { font-size: 3.5rem; margin-bottom: 16px; }
.pb-contact-success h3 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.6rem;
  font-weight: 400;
  color: #2C1A1D;
  margin-bottom: 8px;
}
.pb-contact-success p { color: #888; font-size: .95rem; }

/* Alert */
.pb-contact-alert {
  background: #fdf0f0;
  border: 1px solid #f5c6cb;
  border-radius: 10px;
  padding: 12px 16px;
  font-size: .88rem;
  color: #c0392b;
  margin-bottom: 20px;
}

/* GDPR note */
.pb-contact-gdpr {
  font-size: .72rem;
  color: #bbb;
  text-align: center;
  margin-top: 12px;
  line-height: 1.5;
}

/* Mobile */
@media (max-width: 767px) {
  .pb-contact-hero { padding: 40px 0 32px; }
  .pb-contact-hero-content { gap: 24px; }
  .pb-contact-trust-list { display: none; } /* skrýt na mobilu — šetří místo */
  .pb-contact-form-wrap { padding: 28px 20px; border-radius: 16px; }
}

/* ===== AUTH PAGES (login + register) ===== */
.pb-auth-page {
  min-height: 80vh;
  padding: 32px 0 80px;
  background: linear-gradient(160deg, #FDF0F4 0%, #FDF8F6 50%, #fff 100%);
}

/* Grid: form + benefits side by side */
.pb-auth-grid {
  display: grid;
  grid-template-columns: 480px 1fr;
  gap: 32px;
  align-items: start;
  max-width: 900px;
  margin: 24px auto 0;
}
.pb-auth-grid--register {
  grid-template-columns: 1fr 320px;
  max-width: 960px;
}

/* Auth card */
.pb-auth-card--main {
  background: #fff;
  border: 1px solid rgba(232,164,184,.22);
  border-radius: 22px;
  padding: 44px 40px 36px;
  box-shadow: 0 8px 48px rgba(44,26,29,.08);
}
.pb-auth-card-logo {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.35rem;
  color: #2C1A1D;
  margin-bottom: 24px;
  letter-spacing: -.01em;
}
.pb-auth-card-logo span { color: #C97B8C; }
.pb-auth-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.9rem;
  font-weight: 400;
  color: #2C1A1D;
  margin: 0 0 8px;
}
.pb-auth-sub {
  font-size: .9rem;
  color: #999;
  margin: 0 0 28px;
}

/* Form layout */
.pb-auth-form .pb-form-group { margin-bottom: 18px; }
.pb-auth-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

/* Forgot password link inline */
.pb-form-label {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}
.pb-auth-forgot {
  font-size: .75rem;
  color: #C97B8C;
  text-decoration: none;
  font-weight: 400;
}
.pb-auth-forgot:hover { text-decoration: underline; }

/* Divider */
.pb-auth-divider {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 20px 0 16px;
  color: #ddd;
  font-size: .8rem;
}
.pb-auth-divider::before,
.pb-auth-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: rgba(232,164,184,.3);
}

.pb-auth-register-hint {
  text-align: center;
  font-size: .88rem;
  color: #aaa;
}
.pb-auth-link {
  color: #C97B8C;
  text-decoration: none;
  font-weight: 600;
}
.pb-auth-link:hover { text-decoration: underline; }

/* Alert */
.pb-auth-alert {
  max-width: 960px;
  margin: 0 auto 16px;
  border-radius: 12px;
  padding: 13px 18px;
  font-size: .88rem;
}
.pb-auth-alert--ok { background: #f0faf5; border: 1px solid #a8dfc0; color: #2e7d4f; }
.pb-auth-alert--err { background: #fdf0f0; border: 1px solid #f5c6cb; color: #c0392b; }

/* Benefits panel */
.pb-auth-benefits {
  background: #fff;
  border: 1px solid rgba(232,164,184,.18);
  border-radius: 20px;
  padding: 32px 28px;
  box-shadow: 0 4px 24px rgba(44,26,29,.05);
}
.pb-auth-benefits-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.15rem;
  font-weight: 400;
  color: #2C1A1D;
  margin: 0 0 20px;
}
.pb-auth-benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
}
.pb-auth-benefit-icon {
  font-size: 1.2rem;
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  background: linear-gradient(135deg, #FDF0F4, #FDF8F6);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .95rem;
}
.pb-auth-benefit-item strong {
  display: block;
  font-size: .85rem;
  font-weight: 600;
  color: #2C1A1D;
  margin-bottom: 1px;
}
.pb-auth-benefit-item span {
  font-size: .78rem;
  color: #aaa;
}

/* Product preview na register stránce */
.pb-auth-product-preview {
  text-align: center;
  background: linear-gradient(135deg, #FDF0F4, #fff);
  border-radius: 16px;
  padding: 28px 20px 20px;
  border: 1px solid rgba(232,164,184,.25);
}
.pb-auth-product-emoji { font-size: 2.5rem; margin-bottom: 8px; }
.pb-auth-product-name {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1rem;
  color: #2C1A1D;
}
.pb-auth-product-price {
  font-size: 1.4rem;
  font-weight: 700;
  color: #C97B8C;
  margin-top: 4px;
}

/* Agree checkbox */
.pb-auth-agree { margin-top: 4px; }
.pb-auth-agree-label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: .82rem;
  color: #777;
  cursor: pointer;
  line-height: 1.5;
}
.pb-auth-checkbox {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  margin-top: 2px;
  accent-color: #C97B8C;
  cursor: pointer;
}

/* Mobile */
@media (max-width: 767px) {
  .pb-auth-grid,
  .pb-auth-grid--register {
    grid-template-columns: 1fr;
    max-width: 100%;
  }
  .pb-auth-benefits { order: -1; } /* benefits nahoře na mobilu */
  .pb-auth-grid--register .pb-auth-benefits { order: 2; } /* register: form nahoře */
  .pb-auth-card--main { padding: 28px 20px; border-radius: 16px; }
  .pb-auth-row { grid-template-columns: 1fr; gap: 0; }
}

/* ===== NAVBAR COLLAPSE FIX — pod headerem, ne vedle ===== */

/* Container může zalamovat */
#pb-header .container-fluid {
  flex-wrap: wrap !important;
  align-items: center;
}

/* Řádek 1 vždy celá šířka */
.pb-navbar-row1 {
  flex-wrap: nowrap;
  min-width: 0;
}

/* Collapse: celá šířka = jde pod řádek 1 */
#pb-header .navbar-collapse {
  flex-basis: 100%;
  width: 100%;
}

/* Mobile nav styly v collapse */
.pb-mobile-nav {
  padding: 8px 0 12px;
  border-top: 1px solid rgba(232,164,184,.2);
  margin-top: 8px;
  width: 100%;
}
.pb-mobile-nav .nav-item {
  border-bottom: 1px solid rgba(232,164,184,.12);
}
.pb-mobile-nav .pb-nav-link {
  padding: 12px 4px !important;
  font-size: .95rem;
}

/* Přepsat starý nowrap fix */
#pb-header .container-fluid.flex-wrap { flex-wrap: wrap !important; }

/* ===== PŘEŠKRTNUTÉ CENY ===== */
.pb-price-old,
.pb-compare-price-was,
.pb-sticky-old {
  text-decoration: line-through;
  color: #bbb;
  font-size: .85em;
  font-weight: 400;
  margin-right: 4px;
}
.pb-compare-price-was {
  display: block;
  font-size: .9rem;
  margin-bottom: 2px;
}
.pb-price-save {
  display: inline-flex;
  align-items: center;
  background: #e74c3c;
  color: #fff;
  font-size: .72rem;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 20px;
  margin-left: 8px;
  vertical-align: middle;
  letter-spacing: .04em;
}
.pb-sticky-old {
  font-size: .8rem;
  margin-right: 2px;
}

/* ===== CENA — zvětšit hlavní cenu ===== */
.pb-price-main {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 2.4rem !important;
  font-weight: 700;
  color: #2C1A1D;
  line-height: 1;
}
.pb-price-wrap {
  align-items: center !important;
  gap: 10px;
  flex-wrap: wrap;
}
.pb-price-old {
  font-size: 1.1rem !important;
}
.pb-price-save {
  font-size: .78rem !important;
  padding: 4px 10px !important;
}
@media (max-width: 576px) {
  .pb-price-main { font-size: 2rem !important; }
}

/* Přeškrtnutá cena uvnitř tlačítka */
.pb-btn del.pb-btn-old,
button del.pb-btn-old,
a del.pb-btn-old {
  text-decoration: line-through;
  opacity: .55;
  font-size: .82em;
  font-weight: 400;
  margin-right: 2px;
}

/* ===== ATC MODAL — vycentrovat ===== */
.pb-atc-overlay {
  align-items: center !important;
  justify-content: center !important;
  padding: 20px !important;
}
.pb-atc-modal {
  border-radius: 20px !important;
  max-width: 420px;
  width: 100%;
  transform: scale(.94) !important;
  transition: transform .25s !important;
}
.pb-atc-overlay.show .pb-atc-modal {
  transform: scale(1) !important;
}
@media (max-width: 576px) {
  .pb-atc-modal {
    border-radius: 18px !important;
    max-width: 100% !important;
  }
}

/* ===== CHECKOUT STEP PROGRESS BAR ===== */
.pb-checkout-steps {
  background: #fff;
  border-bottom: 1px solid rgba(232,164,184,.2);
  padding: 20px 0;
  margin-bottom: 32px;
}
.pb-steps-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  max-width: 600px;
  margin: 0 auto;
}
.pb-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
  opacity: .4;
  transition: opacity .3s;
}
.pb-step--active { opacity: 1; }
.pb-step--done   { opacity: .75; }
.pb-step-circle {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 2px solid #ddd;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: .9rem;
  color: #bbb;
  transition: all .3s;
}
.pb-step--active .pb-step-circle {
  background: #C97B8C;
  border-color: #C97B8C;
  color: #fff;
  box-shadow: 0 4px 16px rgba(201,123,140,.35);
}
.pb-step--done .pb-step-circle {
  background: #f0faf5;
  border-color: #a8dfc0;
  color: #2e7d4f;
  font-size: .8rem;
}
.pb-step--done .pb-step-circle::before { content: '✓'; }
.pb-step--done .pb-step-circle { font-size: 0; }
.pb-step--done .pb-step-circle::before { font-size: .9rem; }
.pb-step-label {
  font-size: .72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: #bbb;
  white-space: nowrap;
}
.pb-step--active .pb-step-label { color: #C97B8C; }
.pb-step--done .pb-step-label   { color: #2e7d4f; }
.pb-step-line {
  flex: 1;
  height: 2px;
  background: #eee;
  min-width: 24px;
  max-width: 80px;
  margin-bottom: 24px;
}
.pb-step-line--done { background: #a8dfc0; }

/* JS aktualizuje aktivní krok přes data atribut na #checkout-checkout */
@media (max-width: 480px) {
  .pb-step-label { font-size: .62rem; letter-spacing: .03em; }
  .pb-step-circle { width: 30px; height: 30px; font-size: .8rem; }
  .pb-step-line { min-width: 12px; }
}

/* ===== FAST CHECKOUT ===== */
.pb-fast-checkout {
  background: #FDF8F6;
  min-height: 100vh;
  padding: 32px 0 80px;
}
.pb-fast-header { text-align: center; margin-bottom: 32px; }
.pb-fast-back {
  display: inline-block;
  font-size: .83rem;
  color: #aaa;
  text-decoration: none;
  margin-bottom: 12px;
}
.pb-fast-back:hover { color: #C97B8C; }
.pb-fast-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 400;
  color: #2C1A1D;
  margin: 0 0 14px;
}
.pb-fast-trust {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  font-size: .78rem;
  color: #888;
}

/* Grid */
.pb-fast-grid {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 28px;
  align-items: start;
}

/* Sections */
.pb-fast-section {
  background: #fff;
  border: 1px solid rgba(232,164,184,.2);
  border-radius: 18px;
  padding: 28px;
  margin-bottom: 16px;
}
.pb-fast-sec-title {
  font-size: 1rem;
  font-weight: 700;
  color: #2C1A1D;
  margin: 0 0 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.pb-fast-sec-num {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #C97B8C;
  color: #fff;
  font-size: .82rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.pb-fast-row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

/* Shipping option */
.pb-fast-shipping-option {
  display: flex;
  align-items: center;
  gap: 14px;
  border: 1.5px solid rgba(232,164,184,.3);
  border-radius: 12px;
  padding: 14px 16px;
  background: #fdf8f6;
}
.pb-fast-shipping-option--selected {
  border-color: #C97B8C;
  background: #fdf0f4;
}
.pb-fast-radio-circle {
  width: 20px; height: 20px;
  border-radius: 50%;
  border: 2px solid #ddd;
  flex-shrink: 0;
}
.pb-fast-radio-circle--on {
  border-color: #C97B8C;
  background: radial-gradient(circle at center, #C97B8C 40%, transparent 41%);
}
.pb-fast-option-info { flex: 1; }
.pb-fast-option-name { font-weight: 600; font-size: .9rem; display: block; }
.pb-fast-option-note { font-size: .75rem; color: #aaa; }
.pb-fast-option-price { font-weight: 700; color: #2C1A1D; font-size: .95rem; }

/* Payment options */
.pb-fast-pay-option { display: block; cursor: pointer; margin-bottom: 10px; }
.pb-pay-radio { display: none; }
.pb-fast-pay-card {
  display: flex;
  align-items: center;
  gap: 14px;
  border: 1.5px solid rgba(232,164,184,.25);
  border-radius: 12px;
  padding: 14px 16px;
  transition: border-color .2s, background .2s;
}
.pb-pay-radio:checked + .pb-fast-pay-card {
  border-color: #C97B8C;
  background: #fdf0f4;
  box-shadow: 0 0 0 3px rgba(201,123,140,.1);
}
.pb-pay-icons { font-size: 1.3rem; flex-shrink: 0; }
.pb-pay-info { flex: 1; }
.pb-pay-info strong { display: block; font-size: .9rem; color: #2C1A1D; }
.pb-pay-info span { font-size: .75rem; color: #aaa; }
.pb-pay-extra { color: #e74c3c; font-size: .78rem; font-weight: 600; }
.pb-pay-badge { font-size: .65rem; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; padding: 3px 8px; border-radius: 20px; flex-shrink: 0; }
.pb-pay-badge--rec { background: #e8f8ef; color: #2e7d4f; }

/* Submit */
.pb-fast-section--submit { padding: 24px 28px; }
.pb-fast-agree { margin-bottom: 16px; }
.pb-fast-submit { padding: 16px !important; font-size: 1.05rem !important; }
.pb-fast-submit:disabled { opacity: .7; cursor: not-allowed; }
.pb-fast-submit-note { font-size: .73rem; color: #bbb; text-align: center; margin-top: 10px; }

/* Error */
.pb-fast-error {
  background: #fdf0f0;
  border: 1px solid #f5c6cb;
  border-radius: 12px;
  padding: 14px 18px;
  color: #c0392b;
  font-size: .88rem;
  margin-bottom: 20px;
}

/* Summary (right) */
.pb-fast-summary {
  background: #fff;
  border: 1px solid rgba(232,164,184,.2);
  border-radius: 18px;
  padding: 28px;
  position: sticky;
  top: 120px;
}
.pb-fast-summary-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.1rem;
  font-weight: 400;
  color: #2C1A1D;
  margin: 0 0 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(232,164,184,.2);
}
.pb-fast-product {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(232,164,184,.12);
}
.pb-fast-prod-img {
  width: 56px;
  height: 56px;
  border-radius: 10px;
  background: #FDF0F4;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.5rem;
  overflow: hidden;
}
.pb-fast-prod-img img { width: 100%; height: 100%; object-fit: cover; }
.pb-fast-prod-info { flex: 1; }
.pb-fast-prod-name { font-size: .82rem; font-weight: 600; color: #2C1A1D; line-height: 1.4; }
.pb-fast-prod-qty  { font-size: .75rem; color: #aaa; margin-top: 2px; }
.pb-fast-prod-price { font-size: .9rem; font-weight: 700; color: #2C1A1D; flex-shrink: 0; }
.pb-fast-summary-line {
  display: flex;
  justify-content: space-between;
  font-size: .85rem;
  color: #777;
  margin-bottom: 8px;
}
.pb-fast-summary-total {
  display: flex;
  justify-content: space-between;
  font-size: 1.2rem;
  font-weight: 700;
  color: #2C1A1D;
  margin-top: 12px;
  padding-top: 14px;
  border-top: 2px solid rgba(232,164,184,.3);
}
.pb-fast-summary-trust {
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid rgba(232,164,184,.15);
}
.pb-fast-summary-trust div {
  font-size: .75rem;
  color: #aaa;
  margin-bottom: 5px;
}

/* Mobile */
@media (max-width: 900px) {
  .pb-fast-grid { grid-template-columns: 1fr; }
  .pb-fast-right { order: -1; }
  .pb-fast-summary { position: static; }
}
@media (max-width: 576px) {
  .pb-fast-section { padding: 20px 16px; border-radius: 14px; }
  .pb-fast-row-2 { grid-template-columns: 1fr; gap: 0; }
}

/* ===== ZÁSILKOVNA WIDGET ===== */
.pb-fast-ship-label { display: block; cursor: pointer; }
.pb-zas-picker {
  margin: 12px 0 4px 0;
  padding: 12px 16px;
  background: #fdf8f6;
  border-radius: 10px;
  border: 1px dashed rgba(201,123,140,.3);
}
.pb-zas-pick-btn {
  background: transparent;
  border: 2px solid #C97B8C;
  color: #C97B8C;
  border-radius: 8px;
  padding: 9px 18px;
  font-size: .86rem;
  font-weight: 600;
  cursor: pointer;
  transition: all .2s;
  width: 100%;
}
.pb-zas-pick-btn:hover { background: #C97B8C; color: #fff; }
.pb-zas-selected {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.pb-zas-check { color: #2e7d4f; font-size: 1.1rem; font-weight: 700; }
.pb-zas-selected span:nth-child(2) { flex: 1; font-size: .86rem; font-weight: 600; color: #2C1A1D; }
.pb-zas-change {
  background: transparent;
  border: 1px solid #ddd;
  border-radius: 6px;
  padding: 4px 10px;
  font-size: .75rem;
  cursor: pointer;
  color: #888;
}

/* ===== FAST CHECKOUT – shipping card fix ===== */
.pb-fast-ship-card {
  display: flex;
  align-items: center;
  gap: 14px;
  border: 1.5px solid rgba(232,164,184,.25);
  border-radius: 12px;
  padding: 14px 16px;
  cursor: pointer;
  transition: border-color .2s, background .2s;
  user-select: none;
}
.pb-fast-ship-card--active {
  border-color: #C97B8C;
  background: #fdf0f4;
}
.pb-fast-ship-radio {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 2px solid #ddd;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color .2s;
}
.pb-fast-ship-card--active .pb-fast-ship-radio { border-color: #C97B8C; }
.pb-fast-ship-radio-inner {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #C97B8C;
  opacity: 0;
  transition: opacity .2s;
}
.pb-fast-ship-card--active .pb-fast-ship-radio-inner { opacity: 1; }

/* Submit button stavy */
.pb-fast-submit--inactive {
  background: #e0e0e0 !important;
  color: #aaa !important;
  box-shadow: none !important;
  cursor: default;
}
.pb-fast-submit--inactive:hover {
  background: #e0e0e0 !important;
  transform: none !important;
}
.pb-fast-submit--ready {
  background: linear-gradient(135deg, #C97B8C, #E8A4B8) !important;
  color: #fff !important;
  box-shadow: 0 8px 30px rgba(201,123,140,.45) !important;
  animation: pb-pulse-btn 2s ease-in-out infinite;
}
@keyframes pb-pulse-btn {
  0%, 100% { box-shadow: 0 8px 30px rgba(201,123,140,.45); }
  50%       { box-shadow: 0 8px 40px rgba(201,123,140,.7); }
}

/* Country select */
select.pb-form-input {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23C97B8C' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
  cursor: pointer;
}

/* ===== DOPLŇKY 2026-03-10 ===== */

/* Language text buttons */
.pb-lang-btn { font-family:var(--pb-sans);font-size:.78rem;font-weight:600;letter-spacing:.05em;color:var(--pb-muted);background:none;border:none;padding:4px 5px;border-radius:6px;cursor:pointer;transition:color .2s;line-height:1; }
.pb-lang-btn:hover { color:var(--pb-text); }
.pb-lang-btn.active { color:var(--pb-text);font-weight:700; }
.pb-sep-nav { font-size:.7rem;color:var(--pb-border);margin:0 1px; }

/* Video slider */
.pb-vslider-section { padding:64px 0 40px;background:#fff9fb; }
.pb-vslider-wrap { position:relative;display:flex;align-items:center;gap:8px; }
.pb-vslider-outer { overflow:hidden;flex:1;border-radius:12px; }
.pb-vslider-track { display:flex;gap:16px;transition:transform .4s cubic-bezier(.4,0,.2,1);will-change:transform; }
.pb-vcard { flex:0 0 calc(33.333% - 11px);min-width:0; }
.pb-vthumb { position:relative;display:block;width:100%;padding-top:56.25%;background:#111;border-radius:10px;overflow:hidden;cursor:pointer; }
.pb-vthumb-img { position:absolute;inset:0;width:100%;height:100%;object-fit:cover;transition:opacity .2s;max-width:none!important; }
.pb-vthumb:hover .pb-vthumb-img { opacity:.85; }
.pb-vthumb iframe { position:absolute;inset:0;width:100%;height:100%;border:none; }
.pb-vplay { position:absolute;inset:0;display:flex;align-items:center;justify-content:center;pointer-events:none;transition:transform .15s; }
.pb-vthumb:hover .pb-vplay { transform:scale(1.1); }
.pb-vcard-title { font-size:.9rem;font-weight:500;color:#333;margin:10px 2px 0;line-height:1.4;display:-webkit-box;-webkit-line-clamp:2;-webkit-box-orient:vertical;overflow:hidden; }
.pb-vslider-arrow { flex-shrink:0;width:38px;height:38px;border-radius:50%;border:1.5px solid var(--pb-border);background:#fff;font-size:1.4rem;line-height:1;cursor:pointer;display:flex;align-items:center;justify-content:center;transition:background .15s,border-color .15s;color:var(--pb-text);z-index:1; }
.pb-vslider-arrow:hover { background:var(--pb-pink);border-color:var(--pb-pink);color:#fff; }
.pb-vslider-arrow:disabled { opacity:.3;pointer-events:none; }
@media(max-width:768px){.pb-vcard{flex:0 0 calc(50% - 8px);}}
@media(max-width:480px){.pb-vcard{flex:0 0 85%;}.pb-vslider-arrow{width:30px;height:30px;font-size:1.1rem;}}

/* Photo strip */
.pb-photo-strip{display:flex;height:320px;overflow-x:auto;overflow-y:hidden;scrollbar-width:none;}
.pb-photo-strip::-webkit-scrollbar{display:none;}
.pb-strip-item{position:relative;flex:1 0 16.666%;min-width:200px;overflow:hidden;cursor:zoom-in;}
.pb-strip-item img{width:100%;height:100%;object-fit:cover;object-position:center;transition:transform .4s ease;display:block!important;max-width:none!important;}
.pb-strip-overlay{position:absolute;inset:0;background:rgba(20,8,12,.45);transition:opacity .3s ease;}
.pb-strip-zoom{position:absolute;inset:0;display:flex;align-items:center;justify-content:center;opacity:0;transition:opacity .25s ease;pointer-events:none;}
.pb-strip-item:hover .pb-strip-overlay{opacity:0;}
.pb-strip-item:hover .pb-strip-zoom{opacity:1;}
.pb-strip-item:hover img{transform:scale(1.06);}
@media(max-width:768px){.pb-photo-strip{display:grid;grid-template-columns:repeat(3,1fr);height:auto;overflow:visible;}.pb-strip-item{flex:none;min-width:0;aspect-ratio:1/1;}.pb-strip-overlay,.pb-strip-zoom{display:none;}}

/* Lightbox */
.pb-lightbox{display:none;position:fixed;inset:0;background:rgba(10,4,6,.92);z-index:9999;align-items:center;justify-content:center;}
.pb-lightbox.open{display:flex;}
.pb-lb-inner{max-width:90vw;max-height:88vh;display:flex;align-items:center;justify-content:center;}
.pb-lb-inner img{max-width:90vw!important;max-height:88vh!important;width:auto!important;height:auto!important;object-fit:contain;border-radius:8px;box-shadow:0 8px 48px rgba(0,0,0,.6);display:block!important;}
.pb-lb-close,.pb-lb-prev,.pb-lb-next{position:fixed;background:rgba(255,255,255,.12);border:none;border-radius:50%;color:#fff;cursor:pointer;transition:background .2s;line-height:1;z-index:10000;}
.pb-lb-close:hover,.pb-lb-prev:hover,.pb-lb-next:hover{background:rgba(255,255,255,.28);}
.pb-lb-close{top:20px;right:20px;width:40px;height:40px;font-size:1rem;}
.pb-lb-prev,.pb-lb-next{top:50%;transform:translateY(-50%);width:48px;height:48px;font-size:1.8rem;}
.pb-lb-prev{left:16px;}.pb-lb-next{right:16px;}
.pb-lb-counter{position:fixed;bottom:20px;left:50%;transform:translateX(-50%);color:rgba(255,255,255,.6);font-size:.85rem;}

/* Share widget */
.pb-share-widget{display:none;}
@media(max-width:767px){.pb-share-widget{bottom:120px;left:12px;}#supportBox-iframe{bottom:100px!important;}}
.pb-share-toggle{display:flex;align-items:center;gap:7px;background:var(--pb-pink-dk);color:#fff;border:none;border-radius:24px;padding:10px 18px;font-size:.85rem;font-weight:600;cursor:pointer;box-shadow:0 4px 16px rgba(194,24,91,.35);transition:transform .15s,box-shadow .15s;}
.pb-share-toggle:hover{transform:translateY(-2px);box-shadow:0 6px 20px rgba(194,24,91,.45);}
.pb-share-menu{display:flex;flex-direction:column;gap:6px;opacity:0;pointer-events:none;transform:translateY(8px) scale(.96);transition:opacity .2s,transform .2s;}
.pb-share-menu.open{opacity:1;pointer-events:auto;transform:translateY(0) scale(1);}
.pb-share-btn{display:flex;align-items:center;gap:9px;padding:9px 16px;border-radius:20px;font-size:.82rem;font-weight:600;color:#fff;text-decoration:none;border:none;cursor:pointer;white-space:nowrap;box-shadow:0 2px 10px rgba(0,0,0,.15);transition:transform .12s,filter .12s;}
.pb-share-btn:hover{transform:translateX(3px);filter:brightness(1.1);color:#fff;}
.pb-share-wa{background:#25D366;}.pb-share-fb{background:#1877F2;}.pb-share-x{background:#000;}.pb-share-copy{background:#555;}

/* Hide EUR on mobile — removed (show everywhere) */
/* Fast checkout right column */
.pb-fast-right{align-self:start;}
.pb-fast-grid{position:relative;}

/* #pb-hero-img — desktop 640px, mobil viz @media 767px níže */
#pb-hero-img { max-width: 640px !important; width: 100% !important; height: auto !important; display: block !important; }


/* #pb-hero-img — MOBILE OVERRIDE (musí být poslední) */
@media (max-width: 767px) {
  #pb-hero-img { max-width: 440px !important; width: 100% !important; }
}

@media (max-width: 468px) {
  #pb-hero-img {
    max-width: 240px !important;
  }
}

/* ================================================
   PINKBLUSH — desktop CRO polish
   ================================================ */
.pb-risk-card {
  background: linear-gradient(135deg, rgba(255,255,255,.92), rgba(249,240,238,.96));
  border: 1px solid rgba(201,123,140,.24);
  border-radius: 20px;
  padding: 18px 20px;
  box-shadow: 0 18px 45px rgba(44,26,29,.08);
  max-width: 560px;
}
.pb-risk-card-top {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 8px;
}
.pb-risk-badge {
  display: inline-flex;
  align-items: center;
  background: var(--pb-text);
  color: #fff;
  border-radius: 999px;
  padding: 6px 12px;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
}
.pb-risk-note {
  color: var(--pb-pink-dk);
  font-weight: 700;
  font-size: .95rem;
}
.pb-risk-card p {
  margin: 0;
  color: var(--pb-text);
  line-height: 1.65;
  font-size: .98rem;
}
.pb-hero-floating-card {
  position: absolute;
  left: 34px;
  bottom: 34px;
  z-index: 2;
  max-width: 360px;
  background: rgba(255,255,255,.93);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(201,123,140,.22);
  border-radius: 22px;
  box-shadow: 0 20px 50px rgba(44,26,29,.12);
  padding: 18px 20px;
}
.pb-hero-floating-card strong {
  display: block;
  color: var(--pb-text);
  font-size: 1rem;
  margin-bottom: 6px;
}
.pb-hero-floating-card span {
  display: block;
  color: var(--pb-muted);
  font-size: .92rem;
  line-height: 1.55;
}
.pb-trust-item--highlight {
  background: linear-gradient(135deg, rgba(255,255,255,.08), rgba(232,164,184,.12));
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 20px;
  padding: 18px 20px;
  min-height: 100%;
}
.pb-trust-item--highlight .pb-trust-ico { font-size: 2rem; }
.pb-trust-item--highlight .pb-trust-txt strong { font-size: 1.02rem; }
.pb-trust-item--highlight .pb-trust-txt small { color: rgba(255,255,255,.78); }
.pb-safe-box {
  display: grid;
  grid-template-columns: 62px 1fr;
  gap: 18px;
  background: linear-gradient(135deg, rgba(255,255,255,.9), rgba(249,240,238,.95));
  border: 1px solid rgba(201,123,140,.22);
  border-radius: 24px;
  padding: 22px 24px;
  box-shadow: 0 18px 45px rgba(44,26,29,.07);
}
.pb-safe-box-icon {
  width: 62px;
  height: 62px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  background: rgba(232,164,184,.18);
}
.pb-safe-box strong {
  display: block;
  font-size: 1.08rem;
  margin-bottom: 6px;
  color: var(--pb-text);
}
.pb-safe-box p {
  margin: 0;
  color: var(--pb-muted);
  line-height: 1.7;
}
@media (min-width: 992px) {
  .pb-hero > .row {
    align-items: stretch;
  }
  .pb-hero-content {
    padding: 96px 72px 92px 96px;
  }
  .pb-hero-content h1 {
    font-size: clamp(3rem, 4.1vw, 4.6rem);
    line-height: 1.14;
    margin-bottom: 18px;
  }
  .pb-hero-desc {
    max-width: 560px;
    font-size: 1.1rem;
    margin-bottom: 20px;
  }
  .pb-hero-img-wrap {
    padding: 72px 60px;
    background: linear-gradient(145deg, #efd0d8 0%, #fcf3ef 100%);
  }
  .pb-hero-img-wrap img,
  #pb-hero-img {
    max-width: 560px !important;
    width: 100% !important;
    border-radius: 28px;
    box-shadow: 0 34px 80px rgba(44,26,29,.18);
    filter: none;
  }
  .pb-trust {
    padding: 26px 0;
  }
  .pb-trust .row {
    align-items: stretch;
  }
  .pb-trust-item {
    height: 100%;
  }
  .pb-prod-sec .row {
    align-items: start !important;
  }
  .pb-gallery {
    position: sticky;
    top: 120px;
  }
  .pb-gallery-img {
    border-radius: 28px;
    box-shadow: 0 26px 65px rgba(44,26,29,.12);
    overflow: hidden;
  }
}
@media (max-width: 991px) {
  .pb-risk-card {
    padding: 16px 16px;
    border-radius: 18px;
  }
  .pb-safe-box {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 18px;
  }
  .pb-safe-box-icon {
    width: 52px;
    height: 52px;
    border-radius: 16px;
  }
}

.pb-photo-full {
  width: 100%;
  overflow: hidden;
  border-radius: 24px;
}

.pb-photo-full img {
  display: block;
  width: 100%;
  height: 420px;
  object-fit: cover;
}
.pb-final-cta {
  padding: 72px 0;
  background: #fdf7f8;
}

.pb-final-cta-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  background: #fff;
  border: 1px solid #f0dadd;
  border-radius: 28px;
  padding: 32px;
  overflow: hidden;
}

.pb-final-cta-image img {
  display: block;
  width: 100%;
  height: 100%;
  max-height: 460px;
  object-fit: cover;
  border-radius: 22px;
}

.pb-final-cta-content h2 {
  margin-bottom: 14px;
}

.pb-final-cta-content p {
  max-width: 520px;
  margin: 0 auto 20px;
}

.pb-final-cta-trust {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 22px;
}

.pb-final-cta-trust span {
  padding: 10px 14px;
  border: 1px solid #ead3d8;
  border-radius: 999px;
  background: #fff8fa;
  font-size: 14px;
}

@media (max-width: 991px) {
  .pb-final-cta-inner {
    grid-template-columns: 1fr;
    padding: 20px;
  }

  .pb-final-cta-image img {
    max-height: 320px;
  }

  .pb-final-cta-content {
    text-align: center;
  }
}

.pb-prod-sec {
  padding: 90px 0;
  background: #fcf7f7;
}

.pb-prod-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
  gap: 56px;
  align-items: center;
}

.pb-prod-media {
  position: relative;
}

.pb-prod-image {
  display: block;
  width: 100%;
  border-radius: 32px;
  object-fit: cover;
  box-shadow: 0 30px 60px rgba(60, 25, 35, 0.08);
}

.pb-prod-content {
  max-width: 680px;
}

.pb-risk-box {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  padding: 22px 24px;
  margin: 28px 0 26px;
  border: 1px solid #efd9de;
  border-radius: 24px;
  background: linear-gradient(180deg, #fffafa 0%, #fff4f6 100%);
}

.pb-risk-icon {
  flex: 0 0 56px;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
  background: #f8e8ec;
  font-size: 28px;
}

.pb-risk-box strong {
  display: block;
  margin-bottom: 6px;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.25;
}

.pb-risk-box p {
  margin: 0;
  font-size: 16px;
  line-height: 1.7;
  color: #6c4d56;
}

.pb-benefits-mini {
  display: grid;
  gap: 16px;
  margin-bottom: 28px;
}

.pb-benefit-mini {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.pb-benefit-mini > span {
  font-size: 20px;
  line-height: 1;
  margin-top: 4px;
}

.pb-benefit-mini strong {
  display: block;
  font-size: 19px;
  font-weight: 700;
  color: #2d1520;
}

.pb-benefit-mini small {
  display: block;
  margin-top: 3px;
  font-size: 15px;
  color: #7b5b64;
}

.pb-price-row {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin: 10px 0 20px;
}

.pb-stock-badge {
  white-space: nowrap;
}

.pb-microcopy {
  margin: 14px 0 0;
  font-size: 14px;
  color: #7b5b64;
  text-align: center;
}

@media (max-width: 991.98px) {
  .pb-prod-sec {
    padding: 56px 0;
  }

  .pb-prod-card {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .pb-prod-content {
    max-width: none;
  }

  .pb-risk-box {
    padding: 18px;
    border-radius: 20px;
  }

  .pb-risk-box strong {
    font-size: 20px;
  }

  .pb-price-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
}
@media (min-width: 992px) {
  .pb-prod-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .pb-prod-sub {
    text-align: center;
  }

  .pb-benefits-mini {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    width: 100%;
    margin: 28px 0 30px;
  }

  .pb-benefit-mini {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 10px;
    padding: 18px 14px;
    background: #fff8fa;
    border: 1px solid #efd9de;
    border-radius: 20px;
    min-height: 140px;
    justify-content: center;
  }

  .pb-benefit-mini > span {
    font-size: 24px;
    margin-top: 0;
  }

  .pb-benefit-mini strong {
    font-size: 18px;
    line-height: 1.3;
  }

  .pb-benefit-mini small {
    margin-top: 4px;
    font-size: 14px;
    line-height: 1.5;
  }

  .pb-price-row {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin: 12px 0 22px;
    width: 100%;
  }

  .pb-price-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    width: 100%;
    text-align: center;
  }

  .pb-stock-badge {
    display: none;
    justify-content: center;
    align-items: center;
    white-space: nowrap;
  }

  .pb-btn.w-100 {
    max-width: 660px;
  }

  .pb-risk-box {
    width: 100%;
    margin-top: 28px;
  }
}
@media (max-width: 991.98px) {
  .pb-prod-sec {
    padding: 44px 0;
  }

  .pb-prod-card {
    display: flex;
    flex-direction: column;
    gap: 22px;
  }

  .pb-prod-image {
    border-radius: 22px;
  }

  .pb-prod-content {
    text-align: center;
  }

  .pb-sec-title {
    font-size: 42px;
    line-height: 1.08;
    margin-bottom: 12px;
  }

  .pb-prod-sub {
    font-size: 16px;
    line-height: 1.5;
    margin-bottom: 20px;
    text-align: center;
  }

  .pb-benefits-mini {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    margin: 20px 0 24px;
  }

  .pb-benefit-mini {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    text-align: left;
    padding: 12px 14px;
    background: #fff8fa;
    border: 1px solid #efd9de;
    border-radius: 16px;
    min-height: auto;
  }

  .pb-benefit-mini > span {
    font-size: 20px;
    line-height: 1;
    margin-top: 2px;
    flex: 0 0 22px;
  }

  .pb-benefit-mini strong {
    font-size: 17px;
    line-height: 1.3;
    display: block;
  }

  .pb-benefit-mini small {
    display: block;
    margin-top: 3px;
    font-size: 14px;
    line-height: 1.45;
    color: #7b5b64;
  }

  .pb-price-row {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    margin: 10px 0 18px;
  }

  .pb-price-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    text-align: center;
  }

  .pb-price-old {
    font-size: 16px;
  }

  .pb-price-main {
    font-size: 34px;
    line-height: 1;
  }

  .pb-price-save {
    font-size: 14px;
    padding: 6px 10px;
    border-radius: 999px;
  }

  .pb-stock-badge {
    justify-content: center;
    font-size: 14px;
  }

  .pb-btn.pb-btn-lg {
    min-height: 54px;
    font-size: 18px;
    border-radius: 16px;
  }

  .pb-risk-box {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    text-align: left;
    padding: 16px;
    margin: 20px 0 0;
    border-radius: 18px;
  }

  .pb-risk-icon {
    width: 44px;
    height: 44px;
    flex: 0 0 44px;
    font-size: 22px;
    border-radius: 14px;
  }

  .pb-risk-box strong {
    font-size: 18px;
    line-height: 1.35;
    margin-bottom: 6px;
    display: block;
  }

  .pb-risk-box p {
    font-size: 14px;
    line-height: 1.55;
    margin: 0;
  }
}
.pb-sticky-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 999;
  padding: 10px 12px calc(10px + env(safe-area-inset-bottom));
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-top: 1px solid #ead7dc;
  transform: translateY(110%);
  transition: transform .25s ease;
}

.pb-sticky-cta.visible {
  transform: translateY(0);
}

.pb-sticky-inner {
  max-width: 720px;
  margin: 0 auto;
  background: #fff;
  border: 1px solid #efd9de;
  border-radius: 18px;
  box-shadow: 0 10px 30px rgba(45, 21, 32, 0.08);
  padding: 10px 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.pb-sticky-info {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.pb-sticky-name {
  font-size: 15px;
  font-weight: 700;
  line-height: 1.2;
  color: #2d1520;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.pb-sticky-meta {
  margin-top: 2px;
  font-size: 12px;
  line-height: 1.35;
  color: #8b6670;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.pb-sticky-price-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 4px;
}

.pb-sticky-old {
  font-size: 13px;
  color: #b9a7ad;
  text-decoration: line-through;
}

.pb-sticky-price {
  font-size: 24px;
  font-weight: 700;
  line-height: 1;
  color: #2d1520;
}

.pb-sticky-btn {
  flex: 0 0 auto;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 14px;
  white-space: nowrap;
}

@media (max-width: 480px) {
  .pb-sticky-inner {
    padding: 10px;
    gap: 10px;
  }

  .pb-sticky-name {
    font-size: 14px;
  }

  .pb-sticky-meta {
    font-size: 11px;
  }

  .pb-sticky-price {
    font-size: 22px;
  }

  .pb-sticky-btn {
    min-height: 46px;
    padding: 0 14px;
    font-size: 15px;
  }
}
.pb-info-page {
  background: linear-gradient(180deg, #fffafb 0%, #fcf7f8 100%);
}

.pb-info-hero {
  padding: 56px 0 40px;
  border-bottom: 1px solid #f0dde1;
}

.pb-info-breadcrumb {
  margin-bottom: 28px;
  font-size: 13px;
  color: #9c7a84;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.pb-bc-link {
  color: #9c7a84;
  text-decoration: none;
}

.pb-bc-link:hover {
  color: #2d1520;
}

.pb-bc-sep {
  margin: 0 8px;
  color: #ccb2b8;
}

.pb-bc-current {
  color: #2d1520;
}

.pb-info-hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, .9fr);
  gap: 48px;
  align-items: center;
}

.pb-info-eyebrow {
  display: inline-block;
  margin-bottom: 14px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: #c98695;
}

.pb-info-title {
  margin: 0 0 16px;
  font-size: clamp(42px, 5vw, 72px);
  line-height: .98;
  color: #2d1520;
}

.pb-info-perex {
  max-width: 620px;
  margin: 0;
  font-size: 18px;
  line-height: 1.7;
  color: #7b5b64;
}

.pb-info-hero-media img {
  display: block;
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: 32px;
  box-shadow: 0 24px 60px rgba(45, 21, 32, 0.08);
}

.pb-info-body {
  padding: 56px 0 90px;
}

.pb-info-card {
  background: #fff;
  border: 1px solid #efdde1;
  border-radius: 32px;
  box-shadow: 0 18px 50px rgba(45, 21, 32, 0.04);
  padding: 44px 48px;
}

.pb-info-content {
  color: #5f434c;
  font-size: 18px;
  line-height: 1.9;
}

.pb-info-content > *:first-child {
  margin-top: 0 !important;
}

.pb-info-content > *:last-child {
  margin-bottom: 0 !important;
}

.pb-info-content h2,
.pb-info-content h3,
.pb-info-content h4 {
  color: #2d1520;
  line-height: 1.2;
  margin-top: 40px;
  margin-bottom: 14px;
}

.pb-info-content h2 {
  font-size: 38px;
}

.pb-info-content h3 {
  font-size: 30px;
}

.pb-info-content h4 {
  font-size: 24px;
}

.pb-info-content p {
  margin: 0 0 18px;
}

.pb-info-content ul,
.pb-info-content ol {
  margin: 0 0 22px 0;
  padding-left: 22px;
}

.pb-info-content li {
  margin-bottom: 10px;
}

.pb-info-content a {
  color: #ba7183;
  text-decoration: underline;
  text-decoration-color: rgba(186, 113, 131, .35);
  text-underline-offset: 3px;
}

.pb-info-content a:hover {
  color: #2d1520;
  text-decoration-color: rgba(45, 21, 32, .35);
}

.pb-info-content strong {
  color: #2d1520;
}

.pb-info-content blockquote {
  margin: 28px 0;
  padding: 22px 24px;
  border-left: 4px solid #d9a8b4;
  background: #fff8fa;
  border-radius: 18px;
  color: #5f434c;
}

.pb-info-content hr {
  border: 0;
  border-top: 1px solid #f0dde1;
  margin: 32px 0;
}

.pb-info-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 24px 0;
  overflow: hidden;
  border-radius: 18px;
  background: #fffafb;
}

.pb-info-content th,
.pb-info-content td {
  padding: 14px 16px;
  border: 1px solid #f0dde1;
  text-align: left;
}

.pb-info-content th {
  color: #2d1520;
  background: #fff3f6;
}

.pb-info-back {
  margin-top: 36px;
  padding-top: 28px;
  border-top: 1px solid #f1dfe3;
}

.pb-info-back-btn {
  min-height: 50px;
  padding: 0 20px;
  border-radius: 16px;
}

@media (max-width: 991.98px) {
  .pb-info-hero {
    padding: 34px 0 26px;
  }

  .pb-info-hero-inner {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .pb-info-title {
    font-size: 42px;
    line-height: 1.02;
  }

  .pb-info-perex {
    font-size: 16px;
    line-height: 1.65;
  }

  .pb-info-hero-media img {
    height: 260px;
    border-radius: 22px;
  }

  .pb-info-body {
    padding: 32px 0 54px;
  }

  .pb-info-card {
    padding: 24px 18px;
    border-radius: 22px;
  }

  .pb-info-content {
    font-size: 16px;
    line-height: 1.8;
  }

  .pb-info-content h2 {
    font-size: 28px;
  }

  .pb-info-content h3 {
    font-size: 24px;
  }

  .pb-info-content h4 {
    font-size: 20px;
  }

  .pb-info-back {
    margin-top: 28px;
    padding-top: 22px;
  }
}
.pb-table-wrap {
  margin: 18px 0 28px;
  overflow-x: auto;
  border: 1px solid #efdde1;
  border-radius: 20px;
  background: #fff;
}

.pb-legal-table {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
}

.pb-legal-table th,
.pb-legal-table td {
  padding: 14px 16px;
  border-bottom: 1px solid #f1e3e6;
  text-align: left;
  vertical-align: top;
  font-size: 15px;
  line-height: 1.65;
  color: #5f434c;
}

.pb-legal-table th {
  background: #fff8fa;
  color: #2d1520;
  font-weight: 700;
}

.pb-legal-table tbody tr:last-child td {
  border-bottom: 0;
}
html {
  scroll-behavior: smooth;
}

.pb-legal-page {
  padding: 48px 0 80px;
  background: linear-gradient(180deg, #fffafb 0%, #fcf7f8 100%);
}

.pb-legal-hero {
  max-width: 760px;
  margin: 0 auto 32px;
  text-align: center;
}

.pb-legal-hero h1 {
  margin: 0 0 10px;
  font-size: clamp(38px, 5vw, 62px);
  line-height: 1.02;
  color: #2d1520;
}

.pb-legal-hero p {
  margin: 0;
  font-size: 17px;
  line-height: 1.7;
  color: #8a6973;
}

.pb-legal-content {
  max-width: 920px;
  margin: 0 auto;
  padding: 38px 34px;
  background: #fff;
  border: 1px solid #efdde1;
  border-radius: 28px;
  box-shadow: 0 18px 50px rgba(45, 21, 32, 0.04);
  color: #5f434c;
}

.pb-legal-toc {
  margin-bottom: 28px;
  padding: 22px 24px;
  background: #fff8fa;
  border: 1px solid #efdde1;
  border-radius: 22px;
}

.pb-legal-toc h2 {
  margin: 0 0 12px;
  font-size: 22px;
  color: #2d1520;
}

.pb-legal-toc ol {
  margin: 0;
  padding-left: 20px;
  columns: 2;
  column-gap: 32px;
}

.pb-legal-toc li {
  margin-bottom: 8px;
  break-inside: avoid;
}

.pb-legal-toc a {
  color: #7d5560;
  text-decoration: none;
}

.pb-legal-toc a:hover {
  color: #2d1520;
  text-decoration: underline;
}

.pb-legal-note {
  margin: 0 0 28px;
  color: #8a6973;
  font-size: 15px;
  line-height: 1.75;
}

.pb-legal-content h2,
.pb-legal-content h3 {
  scroll-margin-top: 110px;
}

.pb-legal-content h2 {
  margin: 38px 0 14px;
  font-size: 32px;
  line-height: 1.15;
  color: #2d1520;
}

.pb-legal-content h3 {
  margin: 24px 0 10px;
  font-size: 22px;
  line-height: 1.25;
  color: #2d1520;
}

.pb-legal-content p {
  margin: 0 0 16px;
  font-size: 17px;
  line-height: 1.85;
}

.pb-legal-content ul,
.pb-legal-content ol {
  margin: 0 0 18px;
  padding-left: 22px;
}

.pb-legal-content li {
  margin-bottom: 8px;
  line-height: 1.75;
}

.pb-legal-content a {
  color: #ba7183;
  text-decoration: underline;
  text-decoration-color: rgba(186, 113, 131, .35);
  text-underline-offset: 3px;
}

.pb-legal-content a:hover {
  color: #2d1520;
  text-decoration-color: rgba(45, 21, 32, .35);
}

.pb-legal-content strong {
  color: #2d1520;
}

.pb-legal-box {
  margin: 18px 0 28px;
  padding: 22px 24px;
  border: 1px solid #efdde1;
  border-radius: 20px;
  background: #fff8fa;
}

.pb-legal-box p:last-child,
.pb-legal-box ul:last-child {
  margin-bottom: 0;
}

.pb-legal-meta {
  margin-top: 28px;
  color: #7c5c66;
}

@media (max-width: 991.98px) {
  .pb-legal-page {
    padding: 28px 0 54px;
  }

  .pb-legal-hero {
    margin-bottom: 22px;
    text-align: left;
  }

  .pb-legal-hero h1 {
    font-size: 40px;
  }

  .pb-legal-hero p {
    font-size: 16px;
    line-height: 1.6;
  }

  .pb-legal-content {
    padding: 24px 18px;
    border-radius: 20px;
  }

  .pb-legal-toc {
    padding: 18px 16px;
    border-radius: 16px;
  }

  .pb-legal-toc ol {
    columns: 1;
  }

  .pb-legal-content h2 {
    font-size: 27px;
    scroll-margin-top: 90px;
  }

  .pb-legal-content h3 {
    font-size: 20px;
    scroll-margin-top: 90px;
  }

  .pb-legal-content p,
  .pb-legal-content li {
    font-size: 16px;
    line-height: 1.75;
  }

  .pb-legal-box {
    padding: 18px 16px;
    border-radius: 16px;
  }
}
.pb-info-page {
  background: linear-gradient(180deg, #fffafb 0%, #fcf7f8 100%);
}

.pb-info-top {
  padding: 22px 0 10px;
}

.pb-info-breadcrumb {
  font-size: 12px;
  color: #9c7a84;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.pb-bc-link {
  color: #9c7a84;
  text-decoration: none;
}

.pb-bc-link:hover {
  color: #2d1520;
}

.pb-bc-sep {
  margin: 0 8px;
  color: #ccb2b8;
}

.pb-bc-current {
  color: #2d1520;
}

.pb-info-body {
  padding: 12px 0 72px;
}

.pb-info-content {
  max-width: 980px;
  margin: 0 auto;
}

.pb-info-back {
  max-width: 980px;
  margin: 28px auto 0;
  padding-top: 22px;
  border-top: 1px solid #f1dfe3;
}

.pb-info-back-btn {
  min-height: 48px;
  padding: 0 18px;
  border-radius: 16px;
}

@media (max-width: 991.98px) {
  .pb-info-top {
    padding: 16px 0 8px;
  }

  .pb-info-body {
    padding: 8px 0 48px;
  }

  .pb-info-back {
    margin-top: 22px;
    padding-top: 18px;
  }
}
.pb-contact-page {
  background: linear-gradient(180deg, #fffafb 0%, #fcf7f8 100%);
}

.pb-contact-hero {
  padding: 34px 0 26px;
  border-bottom: 1px solid #f0dde1;
}

.pb-contact-hero-content {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, .9fr);
  gap: 32px;
  align-items: start;
}

.pb-contact-title {
  margin: 0 0 14px;
  font-size: clamp(40px, 5vw, 68px);
  line-height: 1.02;
  color: #2d1520;
}

.pb-contact-subtitle {
  max-width: 700px;
  margin: 0;
  font-size: 18px;
  line-height: 1.75;
  color: #7b5b64;
}

.pb-contact-trust-list {
  display: grid;
  gap: 12px;
}

.pb-ct-item {
  padding: 14px 16px;
  background: #fff8fa;
  border: 1px solid #efdde1;
  border-radius: 18px;
  color: #5f434c;
  line-height: 1.55;
}

.pb-contact-body {
  padding: 38px 0 72px;
}

.pb-contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) 340px;
  gap: 28px;
  align-items: start;
}

.pb-contact-box {
  margin-bottom: 22px;
}

.pb-contact-box h2 {
  margin: 0 0 10px;
  font-size: 34px;
  color: #2d1520;
}

.pb-contact-box p {
  margin: 0;
  font-size: 17px;
  line-height: 1.75;
  color: #6f4f59;
}

.pb-contact-cards {
  display: grid;
  gap: 18px;
}

.pb-contact-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 22px;
  background: #fff;
  border: 1px solid #efdde1;
  border-radius: 24px;
  box-shadow: 0 14px 40px rgba(45, 21, 32, 0.04);
  text-decoration: none;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.pb-contact-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 46px rgba(45, 21, 32, 0.07);
  border-color: #e4c4cc;
}

.pb-contact-card-icon {
  width: 48px;
  height: 48px;
  flex: 0 0 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  background: #fff3f6;
  font-size: 22px;
}

.pb-contact-card-label {
  margin-bottom: 4px;
  font-size: 14px;
  color: #9b7781;
  text-transform: uppercase;
  letter-spacing: .04em;
}

.pb-contact-card-val {
  font-size: 22px;
  line-height: 1.25;
  color: #2d1520;
}

.pb-contact-card-note {
  margin-top: 6px;
  font-size: 15px;
  line-height: 1.6;
  color: #6f4f59;
}

.pb-contact-side {
  display: grid;
  gap: 18px;
}

.pb-contact-side-card {
  padding: 22px;
  background: #fff8fa;
  border: 1px solid #efdde1;
  border-radius: 24px;
}

.pb-contact-side-card h3 {
  margin: 0 0 12px;
  font-size: 22px;
  color: #2d1520;
}

.pb-contact-side-card p,
.pb-contact-side-card address,
.pb-contact-side-card li {
  font-size: 16px;
  line-height: 1.75;
  color: #5f434c;
}

.pb-contact-side-card address {
  margin: 0;
  font-style: normal;
}

.pb-contact-side-card ul {
  margin: 0;
  padding-left: 18px;
}

@media (max-width: 991.98px) {
  .pb-contact-hero-content {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .pb-contact-title {
    font-size: 42px;
  }

  .pb-contact-subtitle {
    font-size: 16px;
    line-height: 1.65;
  }

  .pb-contact-body {
    padding: 28px 0 48px;
  }

  .pb-contact-grid {
    grid-template-columns: 1fr;
  }

  .pb-contact-box h2 {
    font-size: 28px;
  }

  .pb-contact-card {
    padding: 18px;
    border-radius: 20px;
  }

  .pb-contact-card-val {
    font-size: 18px;
  }

  .pb-contact-side-card {
    padding: 18px;
    border-radius: 20px;
  }
}
.pb-fast-product{
  display:grid;
  grid-template-columns:56px minmax(0,1fr) auto;
  gap:14px;
  align-items:center;
}

.pb-fast-prod-img{
  width:56px;
  height:56px;
  border-radius:14px;
  overflow:hidden;
  background:#fff3f6;
}

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

.pb-fast-prod-info{
  min-width:0;
}

.pb-fast-prod-name{
  margin-bottom:10px;
  line-height:1.4;
}

.pb-fast-prod-controls{
  display:flex;
  align-items:center;
  gap:10px;
  flex-wrap:nowrap;
}

.pb-qty-btn{
  width:34px;
  height:34px;
  border:1px solid #ead3d8;
  border-radius:10px;
  background:#fff;
  color:#2d1520;
  font-size:18px;
  line-height:1;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  cursor:pointer;
  transition:all .2s ease;
}

.pb-qty-btn:hover{
  background:#f9eef1;
  border-color:#dcb8c1;
}

.pb-fast-prod-qty{
  min-width:18px;
  text-align:center;
  font-size:15px;
  font-weight:600;
  color:#2d1520;
}

.pb-remove-btn{
  border:0;
  background:transparent;
  padding:0;
  margin-left:2px;
  width:22px;
  height:22px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  cursor:pointer;
  color:#d85b6a;
  font-size:20px;
  line-height:1;
  box-shadow:none;
}

.pb-remove-btn:hover{
  color:#b93f4e;
  background:transparent;
}

.pb-fast-prod-price{
  white-space:nowrap;
  font-weight:700;
  color:#2d1520;
}
.pb-popup-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: rgba(33, 18, 24, 0.58);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  opacity: 0;
  pointer-events: none;
  transition: opacity .28s ease;
}

.pb-popup {
  position: relative;
  width: 100%;
  max-width: 460px;
  padding: 34px 30px 26px;
  border-radius: 30px;
  background: linear-gradient(180deg, #fffdfd 0%, #fff8fa 100%);
  border: 1px solid #efd9de;
  box-shadow: 0 24px 80px rgba(35, 18, 25, 0.22);
  text-align: center;
  transform: translateY(12px) scale(.98);
  transition: transform .28s ease;
}

.pb-popup-overlay[style*="display: flex"] .pb-popup {
  transform: translateY(0) scale(1);
}

.pb-popup-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 34px;
  height: 34px;
  border: 0;
  background: transparent;
  color: #9c7680;
  font-size: 22px;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border-radius: 999px;
  transition: background .2s ease, color .2s ease;
}

.pb-popup-close:hover {
  background: rgba(201, 123, 140, 0.08);
  color: #7d5560;
}

.pb-popup-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0 14px;
  margin-bottom: 18px;
  border-radius: 999px;
  background: #fff1f4;
  border: 1px solid #edd3da;
  color: #b66d7f;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .02em;
}

.pb-popup h3 {
  margin: 0 0 14px;
  font-size: clamp(34px, 5vw, 52px);
  line-height: 1.02;
  color: #2d1520;
}

.pb-popup-text {
  margin: 0 auto 18px;
  max-width: 360px;
  font-size: 18px;
  line-height: 1.7;
  color: #6f4f59;
}

.pb-popup-stock {
  margin: 0 0 18px;
  font-size: 15px;
  line-height: 1.5;
  color: #8a6973;
}

.pb-popup-stock strong {
  color: #2d1520;
  font-weight: 700;
}

.pb-popup-trust {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin: 0 0 22px;
}

.pb-popup-trust span {
  padding: 9px 12px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid #ead3d8;
  font-size: 13px;
  line-height: 1.2;
  color: #7b5b64;
}

.pb-popup-cta {
  width: 100%;
  justify-content: center;
  min-height: 58px;
  border-radius: 18px;
  font-size: 18px;
  margin-top: 0;
}

.pb-popup-skip {
  margin-top: 14px;
  border: 0;
  background: transparent;
  color: #8f6a74;
  font-size: 15px;
  text-decoration: underline;
  text-decoration-color: rgba(143, 106, 116, 0.35);
  text-underline-offset: 3px;
  cursor: pointer;
}

.pb-popup-skip:hover {
  color: #2d1520;
}

@media (max-width: 575.98px) {
  .pb-popup-overlay {
    padding: 14px;
  }

  .pb-popup {
    padding: 28px 20px 22px;
    border-radius: 24px;
  }

  .pb-popup h3 {
    font-size: 42px;
  }

  .pb-popup-text {
    font-size: 16px;
    line-height: 1.65;
  }

  .pb-popup-cta {
    min-height: 54px;
    font-size: 17px;
  }

  .pb-popup-trust {
    gap: 8px;
  }

  .pb-popup-trust span {
    font-size: 12px;
  }
}