/* =============================================================================
   Panda Roz — design system
   ============================================================================= */

:root {
  --pr-rose: #c45c7a;
  --pr-rose-dark: #9e3f5c;
  --pr-rose-soft: #f7e6eb;
  --pr-rose-glow: #fdf2f5;
  --pr-ink: #2a2430;
  /* Mai închis pentru contrast AA pe cream (Lighthouse a11y) */
  --pr-ink-soft: #4a4352;
  --pr-cream: #faf6f3;
  --pr-sand: #f0e8e2;
  --pr-white: #ffffff;
  --pr-line: #e8ddd6;
  --pr-gold: #c9a227;
  --pr-img-bg: #f3eee9;
  --pr-card-radius: 16px;
  --pr-btn-radius: 10px;
  --pr-card-shadow: 0 8px 28px rgba(42, 36, 48, 0.05);
  --pr-card-shadow-hover: 0 14px 36px rgba(42, 36, 48, 0.1);
  --pr-radius: 16px;
  --pr-radius-sm: 10px;
  --pr-shadow: 0 10px 36px rgba(42, 36, 48, 0.08);
  --pr-shadow-lg: 0 20px 56px rgba(42, 36, 48, 0.12);
  --pr-max: 1180px;
  --pr-gutter: 1rem;
  --pr-font: "DM Sans", system-ui, sans-serif;
  --pr-display: "Fraunces", Georgia, serif;
  --pr-gradient-hero: linear-gradient(145deg, #2a2430 0%, #4a3540 45%, #6b3f52 100%);
  --pr-gradient-rose: linear-gradient(90deg, #c45c7a 0%, #e07a9a 100%);
  --pr-rose-rgb: 196, 92, 122;
  --pr-gold-rgb: 201, 162, 39;
  --pr-companion: #ffd60a;
  --pr-companion-rgb: 255, 214, 10;
  --pr-ink-rgb: 42, 36, 48;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--pr-font);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--pr-ink);
  background:
    radial-gradient(ellipse 80% 50% at 10% -10%, rgba(var(--pr-rose-rgb), 0.12), transparent 55%),
    radial-gradient(ellipse 60% 40% at 100% 0%, rgba(var(--pr-gold-rgb), 0.08), transparent 50%),
    var(--pr-cream);
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--pr-rose);
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover {
  color: var(--pr-rose-dark);
}

.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.pr-container {
  width: min(100% - (var(--pr-gutter) * 2), var(--pr-max));
  margin-inline: auto;
  padding-inline: 0;
  box-sizing: border-box;
}

/* Desktop: aceeași margine — topbar + meniu + conținut (home, etc.) */
@media (min-width: 1024px) {
  :root {
    --pr-page-inline: clamp(1.75rem, 4vw, 3rem);
    /* .pr-container folosește --pr-gutter → aliniat cu topbar/meniu/PDP */
    --pr-gutter: var(--pr-page-inline);
  }

  .pr-topbar,
  .pr-header {
    padding-left: var(--pr-page-inline);
    padding-right: var(--pr-page-inline);
    box-sizing: border-box;
  }

  .pr-topbar > .pr-container,
  .pr-header > .pr-container,
  .pr-topbar .pr-container.pr-topbar__inner,
  .pr-header .pr-container.pr-header__inner {
    width: 100% !important;
    max-width: var(--pr-max) !important;
    margin-inline: auto !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
    box-sizing: border-box !important;
  }

  /* Home: fără padding-inline extra pe hero (dublă margine vs restul) */
  .pr-hero--home .pr-hero__grid {
    padding-inline: 0;
  }
}

@media (max-width: 767px) {
  :root {
    --pr-gutter: 1.1rem;
  }

  html,
  body {
    overflow-x: clip;
    max-width: 100%;
  }

  .pr-container {
    width: 100% !important;
    max-width: 100% !important;
    margin-inline: 0 !important;
    padding-left: max(var(--pr-gutter), env(safe-area-inset-left, 0px)) !important;
    padding-right: max(var(--pr-gutter), env(safe-area-inset-right, 0px)) !important;
    box-sizing: border-box !important;
  }

  /* Doar vertical — fără padding-inline (nu anula gutter-ul) */
  .pr-section {
    padding-top: 1.35rem !important;
    padding-bottom: 2.5rem !important;
  }

  /* overflow pe header taie drawer-ul — lăsăm visible */
  .pr-header {
    overflow: visible !important;
  }

  .pr-topbar,
  .pr-main,
  main.pr-main,
  #page {
    overflow-x: clip;
    max-width: 100%;
  }
}

.pr-section {
  padding-top: 2.5rem;
  padding-bottom: 3.5rem;
}

/* Topbar — mockup: livrare | slogan | telefon + email */
.pr-topbar {
  background: var(--pr-gradient-rose);
  color: rgba(255, 255, 255, 0.95);
  font-size: 0.8rem;
  font-weight: 600;
}

.pr-topbar__inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 0.45rem 1.25rem;
  padding: 0.5rem 0;
  min-width: 0;
}

.pr-topbar__ship,
.pr-topbar__tagline,
.pr-topbar__contacts,
.pr-topbar__phone,
.pr-topbar__email {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  min-width: 0;
  max-width: 100%;
  line-height: 1.35;
}

.pr-topbar__tagline {
  justify-content: center;
  flex: 1 1 auto;
  text-align: center;
  opacity: 0.98;
}

.pr-topbar__contacts {
  gap: 0.85rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.pr-topbar__icon {
  flex-shrink: 0;
  opacity: 0.95;
}

.pr-topbar a {
  color: #fff;
  text-decoration: none;
}

.pr-topbar a:hover {
  color: #ffe4ec;
}

/* Anunț site — plutitor sub bara de meniu (cookie rămâne jos) */
.pr-announce {
  position: fixed;
  left: 0.85rem;
  right: 0.85rem;
  top: 6.85rem;
  bottom: auto;
  z-index: 190;
  padding: 0;
  pointer-events: none;
  opacity: 1;
  transform: none;
  box-sizing: border-box;
}

.pr-announce[hidden] {
  display: none !important;
}

.pr-announce:not(.is-visible) {
  opacity: 0;
  transform: translateY(-10px);
  transition: opacity 0.28s ease, transform 0.28s ease;
}

.pr-announce.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.pr-announce.is-visible .pr-announce__panel {
  pointer-events: auto;
}

.pr-announce__panel {
  display: flex;
  align-items: center;
  gap: 0.95rem;
  max-width: 920px;
  margin: 0 auto;
  padding: 1.05rem 1.2rem 1.05rem 1.1rem;
  border: 2px solid #f0a8c0;
  border-radius: 20px;
  background:
    radial-gradient(ellipse 80% 120% at 0% 50%, rgba(255, 182, 205, 0.55) 0%, transparent 55%),
    linear-gradient(135deg, #fff8fb 0%, #ffe9f2 42%, #fff4e8 100%);
  box-shadow:
    0 14px 40px rgba(var(--pr-rose-rgb), 0.26),
    0 0 0 1px rgba(255, 255, 255, 0.7) inset;
  box-sizing: border-box;
}

.pr-announce__emoji {
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  width: 3.1rem;
  height: 3.1rem;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.85);
  box-shadow: 0 6px 16px rgba(var(--pr-rose-rgb), 0.16);
  font-size: 1.75rem;
  line-height: 1;
}

.pr-announce__content {
  flex: 1 1 auto;
  min-width: 0;
}

.pr-announce__label {
  display: inline-block;
  margin: 0 0 0.2rem;
  padding: 0.15rem 0.55rem;
  border-radius: 999px;
  background: var(--pr-rose, #c4466e);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  line-height: 1.3;
}

.pr-announce__text {
  margin: 0;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.45;
  color: var(--pr-ink, #2a2430);
}

.pr-announce__close {
  flex: 0 0 auto;
  align-self: flex-start;
  width: 2.15rem;
  height: 2.15rem;
  margin: -0.15rem -0.2rem 0 0;
  padding: 0;
  border: 0;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.75);
  color: var(--pr-ink-soft, #5c5366);
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
}

.pr-announce__close:hover {
  color: var(--pr-rose, #c4466e);
  background: #fff;
}

/*
 * Header sticky. Fără backdrop-filter pe același element cu drawer-ul:
 * backdrop-filter creează containing block → position:fixed e tăiat la înălțimea barei
 * („meniul arată doar Magazin / ca și cum intră undeva”).
 */
.pr-header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: rgba(250, 246, 243, 0.98);
  border-bottom: 1px solid var(--pr-line);
  overflow: visible;
}

.pr-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem 0.75rem;
  padding: 0.75rem 0;
  min-width: 0;
  max-width: 100%;
}

/* Hamburger — doar mobil */
.pr-nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  margin: 0;
  padding: 0;
  border: 1px solid var(--pr-line);
  border-radius: 50%;
  background: var(--pr-white);
  color: var(--pr-ink);
  cursor: pointer;
}

.pr-nav-toggle__bars {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 18px;
}

.pr-nav-toggle__bars span {
  display: block;
  height: 2px;
  width: 100%;
  border-radius: 2px;
  background: currentColor;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.pr-nav-toggle[aria-expanded="true"] .pr-nav-toggle__bars span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.pr-nav-toggle[aria-expanded="true"] .pr-nav-toggle__bars span:nth-child(2) {
  opacity: 0;
}

.pr-nav-toggle[aria-expanded="true"] .pr-nav-toggle__bars span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.pr-nav-backdrop {
  display: none;
}

.pr-logo {
  font-family: var(--pr-display);
  font-weight: 700;
  font-size: 1.35rem;
  color: var(--pr-ink);
  letter-spacing: -0.02em;
  text-decoration: none;
  min-width: 0;
}

.pr-logo em {
  font-style: normal;
  color: var(--pr-rose);
}

.pr-logo .custom-logo-link img,
.pr-logo img {
  max-height: 48px;
  width: auto;
}

.pr-header__nav--desktop {
  display: none;
}

.pr-header__nav--drawer {
  display: none;
}

.pr-menu {
  display: flex;
  gap: 0.55rem 0.85rem;
  list-style: none;
  margin: 0;
  padding: 0;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
}

.pr-menu > li {
  position: relative;
  padding-bottom: 0;
}

.pr-menu a {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--pr-ink-soft);
  white-space: nowrap;
}

.pr-menu a:hover,
.pr-menu .current-menu-item > a {
  color: var(--pr-rose);
}

.pr-menu .sub-menu {
  display: none;
  list-style: none;
  margin: 0;
  padding: 0;
}

.pr-menu .sub-menu a {
  display: block;
  padding: 0.4rem 0.55rem;
  border-radius: 8px;
  font-size: 0.84rem;
  line-height: 1.3;
  white-space: normal;
}

.pr-menu .sub-menu a:hover {
  background: var(--pr-rose-glow);
  color: var(--pr-rose-dark);
}

/* Desktop: submeniu lat (mega), ~3–4 coloane → max ~6 rânduri, fără scroll */
@media (min-width: 768px) {
  .pr-header__nav--desktop .pr-menu .sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 520px;
    max-width: min(760px, 92vw);
    max-height: none;
    overflow: visible;
    padding: 0.75rem 0.85rem 0.7rem;
    background: var(--pr-white);
    border: 1px solid var(--pr-line);
    border-radius: 14px;
    box-shadow: 0 16px 40px rgba(42, 36, 48, 0.12);
    z-index: 220;
    box-sizing: border-box;
  }

  .pr-header__nav--desktop .pr-menu .sub-menu::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: -0.75rem;
    height: 0.75rem;
  }

  .pr-header__nav--desktop .pr-menu > li:hover > .sub-menu,
  .pr-header__nav--desktop .pr-menu > li:focus-within > .sub-menu,
  .pr-header__nav--desktop .pr-menu > li.pr-menu--open > .sub-menu {
    display: grid;
    grid-template-columns: repeat(3, minmax(150px, 1fr));
    grid-auto-rows: minmax(2.15rem, auto);
    gap: 0.1rem 0.65rem;
    align-content: start;
  }

  .pr-header__nav--desktop .pr-menu > li:last-child > .sub-menu,
  .pr-header__nav--desktop .pr-menu > li.menu-item-has-children:nth-last-child(-n+2) > .sub-menu {
    left: auto;
    right: 0;
  }
}

@media (min-width: 1100px) {
  .pr-header__nav--desktop .pr-menu {
    gap: 0.45rem 0.75rem;
  }

  .pr-header__nav--desktop .pr-menu > li:hover > .sub-menu,
  .pr-header__nav--desktop .pr-menu > li:focus-within > .sub-menu,
  .pr-header__nav--desktop .pr-menu > li.pr-menu--open > .sub-menu {
    grid-template-columns: repeat(4, minmax(140px, 1fr));
    min-width: 640px;
    max-width: min(820px, 94vw);
  }
}

@media (min-width: 1280px) {
  .pr-header__nav--desktop .pr-menu > li:hover > .sub-menu,
  .pr-header__nav--desktop .pr-menu > li:focus-within > .sub-menu,
  .pr-header__nav--desktop .pr-menu > li.pr-menu--open > .sub-menu {
    grid-template-columns: repeat(4, minmax(155px, 1fr));
    min-width: 680px;
    max-width: min(880px, 94vw);
  }
}

.pr-header__actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.pr-wishlist-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--pr-white);
  border: 1px solid var(--pr-line);
  color: var(--pr-ink);
  transition: border-color 0.2s, color 0.2s;
}

.pr-wishlist-link:hover {
  border-color: var(--pr-rose);
  color: var(--pr-rose);
}

.pr-wishlist-count {
  position: absolute;
  top: -4px;
  right: -4px;
  min-width: 1.25rem;
  height: 1.25rem;
  padding: 0 0.3rem;
  border-radius: 999px;
  background: var(--pr-ink);
  color: var(--pr-white);
  font-size: 0.7rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.pr-wishlist-count.is-empty {
  display: none;
}

.pr-search--bar {
  display: none;
}

.pr-search--drawer {
  display: none;
}

.pr-search-open {
  display: none;
}

.pr-account-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--pr-white);
  border: 1px solid var(--pr-line);
  color: var(--pr-ink);
  transition: border-color 0.2s, color 0.2s;
}

.pr-account-link:hover {
  border-color: var(--pr-rose);
  color: var(--pr-rose);
}

.pr-search input[type="search"] {
  width: 160px;
  padding: 0.5rem 0.85rem;
  border: 1px solid var(--pr-line);
  border-radius: 999px;
  background: var(--pr-white);
  font: inherit;
  font-size: 0.875rem;
  color: var(--pr-ink);
}

.pr-search input[type="search"]:focus {
  outline: 2px solid var(--pr-rose-soft);
  border-color: var(--pr-rose);
}

.pr-search__submit {
  display: none;
}

.pr-nav-account {
  display: none;
}

.pr-cart-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  padding: 0;
  border-radius: 50%;
  background: var(--pr-white);
  border: 1px solid var(--pr-line);
  color: var(--pr-ink);
  cursor: pointer;
  font: inherit;
  transition: border-color 0.2s, transform 0.2s;
}

.pr-cart-link:hover {
  border-color: var(--pr-rose);
  color: var(--pr-rose);
  transform: translateY(-1px);
}

.pr-cart-link svg {
  width: 22px;
  height: 22px;
}

.pr-cart-count {
  position: absolute;
  top: -2px;
  right: -2px;
  min-width: 1.25rem;
  height: 1.25rem;
  padding: 0 0.3rem;
  border-radius: 999px;
  background: var(--pr-gradient-rose);
  color: var(--pr-white);
  font-size: 0.7rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.pr-cart-count.is-empty {
  display: none;
}

.pr-cart-link--pulse {
  animation: pr-cart-pulse 0.45s ease;
}

@keyframes pr-cart-pulse {
  0% { transform: scale(1); }
  40% { transform: scale(1.08); }
  100% { transform: scale(1); }
}

@media (min-width: 768px) {
  .pr-header__nav--desktop {
    display: block;
    position: static;
    flex: 1 1 auto;
    min-width: 0;
  }

  .pr-header__nav--drawer,
  .pr-nav-toggle,
  .pr-nav-backdrop,
  .pr-search-open,
  .pr-search--drawer,
  .pr-nav-account,
  .pr-nav-drawer__head {
    display: none !important;
  }

  .pr-search--bar {
    display: block;
  }

  .pr-header__nav--desktop .pr-menu {
    flex-direction: row;
    justify-content: center;
    gap: 0.55rem 1rem;
  }

  .pr-header__nav--desktop .pr-menu > li > a {
    font-size: 1rem;
    font-weight: 700;
  }

  .pr-header__nav--desktop .pr-menu .sub-menu a {
    font-size: 0.9rem;
  }
}

/* Mobil: drawer meniu + aceleași margini ca restul site-ului */
@media (max-width: 767px) {
  .pr-topbar {
    font-size: 0.72rem;
  }

  .pr-topbar__inner {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
    gap: 0.35rem;
    padding: 0.5rem 0;
  }

  .pr-topbar__ship,
  .pr-topbar__tagline,
  .pr-topbar__contacts {
    justify-content: center;
    flex-wrap: wrap;
  }

  .pr-topbar__tagline {
    order: -1;
    opacity: 0.95;
  }

  .pr-announce {
    left: 0.65rem;
    right: 0.65rem;
    top: 7.75rem;
  }

  .pr-announce__panel {
    align-items: flex-start;
    gap: 0.75rem;
    padding: 1rem 1.05rem;
    border-radius: 16px;
  }

  .pr-announce__emoji {
    width: 2.65rem;
    height: 2.65rem;
    font-size: 1.45rem;
    border-radius: 12px;
  }

  .pr-announce__text {
    font-size: 0.95rem;
  }

  .pr-nav-toggle {
    display: inline-flex;
    order: -1;
    width: 34px;
    height: 34px;
    flex-shrink: 0;
  }

  .pr-logo {
    flex: 1 1 0;
    min-width: 0;
    max-width: 28%;
    font-size: 1.05rem;
    overflow: hidden;
  }

  .pr-logo .custom-logo-link,
  .pr-logo .custom-logo-link img,
  .pr-logo img {
    display: block;
    max-width: 100%;
    max-height: 32px;
    width: auto;
    height: auto;
    object-fit: contain;
  }

  .pr-header__inner {
    gap: 0.3rem;
    padding: 0.55rem 0;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }

  .pr-header .pr-container.pr-header__inner {
    padding-left: max(0.85rem, env(safe-area-inset-left, 0px)) !important;
    padding-right: max(0.85rem, env(safe-area-inset-right, 0px)) !important;
  }

  .pr-header__actions {
    display: flex;
    flex: 0 0 auto;
    flex-shrink: 0;
    align-items: center;
    justify-content: flex-end;
    gap: 0.15rem;
    min-width: 0;
    max-width: calc(100% - 2.5rem);
  }

  /* Cont + favorite vizibile pe mobil */
  .pr-header__actions .pr-account-link,
  .pr-header__actions .pr-wishlist-link {
    display: inline-flex;
  }

  .pr-cart-link,
  .pr-search-open,
  .pr-account-link,
  .pr-wishlist-link {
    width: 34px;
    height: 34px;
    flex-shrink: 0;
  }

  .pr-cart-count,
  .pr-wishlist-count {
    top: -1px;
    right: -1px;
    min-width: 1.05rem;
    height: 1.05rem;
    font-size: 0.62rem;
  }

  .pr-search--bar {
    display: none !important;
  }

  .pr-search-open {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    margin: 0;
    padding: 0;
    border: 1px solid var(--pr-line);
    border-radius: 50%;
    background: var(--pr-white);
    color: var(--pr-ink);
    cursor: pointer;
  }

  .pr-search-open:hover {
    border-color: var(--pr-rose);
    color: var(--pr-rose);
  }

  .pr-search--drawer {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 0.45rem;
    margin: 1.15rem 0 0;
    padding-top: 1rem;
    border-top: 1px solid var(--pr-line);
  }

  .pr-search--drawer input[type="search"] {
    width: 100%;
    min-height: 44px;
    border-radius: 12px;
  }

  .pr-search--drawer .pr-search__submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    padding: 0 0.9rem;
    border: 0;
    border-radius: 12px;
    background: var(--pr-rose);
    color: #fff;
    font: inherit;
    font-size: 0.85rem;
    font-weight: 700;
    cursor: pointer;
  }

  .pr-nav-drawer__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    margin: 0 0 0.85rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid var(--pr-line);
  }

  .pr-nav-drawer__title {
    font-family: var(--pr-display);
    font-size: 1.2rem;
    color: var(--pr-ink);
  }

  .pr-nav-drawer__close {
    width: 36px;
    height: 36px;
    border: 1px solid var(--pr-line);
    border-radius: 50%;
    background: var(--pr-white);
    color: var(--pr-ink);
    font-size: 1.35rem;
    line-height: 1;
    cursor: pointer;
  }

  .pr-nav-account {
    display: block;
    margin-top: 0.85rem;
    padding: 0.75rem 0.35rem 0;
    border-top: 1px solid var(--pr-line);
    font-weight: 700;
    font-size: 1rem;
    color: var(--pr-ink);
  }

  .pr-nav-account + .pr-nav-account {
    margin-top: 0;
    padding-top: 0.55rem;
    border-top: 0;
  }

  .pr-nav-account:hover {
    color: var(--pr-rose);
  }

  .pr-header__nav--desktop {
    display: none !important;
  }

  .pr-header__nav--drawer {
    display: block;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: auto;
    z-index: 320;
    width: min(88vw, 320px);
    max-width: 100%;
    height: 100vh;
    height: 100dvh;
    margin: 0;
    padding: calc(1.1rem + env(safe-area-inset-top, 0px))
      max(1.1rem, env(safe-area-inset-right, 0px))
      calc(1.5rem + env(safe-area-inset-bottom, 0px))
      1.1rem;
    background: var(--pr-white);
    border-left: 1px solid var(--pr-line);
    box-shadow: -12px 0 40px rgba(42, 36, 48, 0.14);
    transform: translateX(105%);
    transition: transform 0.28s ease;
    overflow-x: hidden;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    visibility: hidden;
    pointer-events: none;
  }

  body.pr-nav-open .pr-header__nav--drawer {
    transform: translateX(0);
    visibility: visible;
    pointer-events: auto;
  }

  body.pr-nav-open {
    overflow: hidden;
  }

  .pr-nav-backdrop {
    display: block;
    position: fixed;
    inset: 0;
    z-index: 310;
    background: rgba(42, 36, 48, 0.45);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.25s ease, visibility 0.25s ease;
  }

  .pr-nav-backdrop:not([hidden]) {
    opacity: 1;
    visibility: visible;
  }

  .pr-menu {
    flex-direction: column;
    align-items: stretch;
    gap: 0.1rem;
  }

  .pr-menu > li {
    width: 100%;
  }

  .pr-menu > li > a {
    display: block;
    padding: 0.8rem 0.35rem;
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--pr-ink);
  }

  /* Rând: link + săgeată dropdown */
  .pr-header__nav--drawer .pr-menu > li.menu-item-has-children {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    column-gap: 0.15rem;
  }

  .pr-header__nav--drawer .pr-menu > li.menu-item-has-children > a {
    grid-column: 1;
  }

  .pr-menu__toggle {
    grid-column: 2;
    grid-row: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    margin: 0;
    padding: 0;
    border: 0;
    border-radius: 8px;
    background: transparent;
    color: var(--pr-ink-soft);
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
  }

  .pr-menu__toggle:hover,
  .pr-menu__toggle:focus-visible {
    color: var(--pr-rose);
    background: var(--pr-rose-glow);
  }

  .pr-menu__toggle-icon {
    display: block;
    width: 0.55rem;
    height: 0.55rem;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(45deg);
    transition: transform 0.2s ease;
  }

  .pr-menu > li.pr-menu--open > .pr-menu__toggle .pr-menu__toggle-icon {
    transform: rotate(-135deg);
  }

  /* Submeniuri: ascunse până la tap pe săgeată */
  .pr-header__nav .pr-menu .sub-menu {
    position: static !important;
    display: none !important;
    grid-column: 1 / -1;
    gap: 0.05rem;
    min-width: 0;
    margin: 0 0 0.35rem;
    padding: 0 0 0.35rem 0.85rem;
    border: 0 !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    background: transparent !important;
  }

  .pr-header__nav .pr-menu > li.pr-menu--open > .sub-menu {
    display: grid !important;
  }

  .pr-header__nav .pr-menu .sub-menu::before {
    display: none !important;
  }

  .pr-header__nav .pr-menu .sub-menu a {
    padding: 0.5rem 0.35rem;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--pr-ink-soft);
  }

  .pr-menu .sub-menu a {
    padding: 0.45rem 0.35rem;
    font-size: 0.92rem;
  }
}

/* Buttons */
.pr-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--pr-font);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 0.8rem 1.55rem;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
}

.pr-btn--primary {
  background: var(--pr-gradient-rose);
  color: var(--pr-white);
  box-shadow: 0 6px 24px rgba(var(--pr-rose-rgb), 0.35);
}

.pr-btn--primary:hover {
  transform: translateY(-2px);
  color: var(--pr-white);
  box-shadow: 0 10px 32px rgba(var(--pr-rose-rgb), 0.45);
}

.pr-btn--ghost {
  background: transparent;
  color: var(--pr-white);
  border: 2px solid rgba(255, 255, 255, 0.4);
}

.pr-btn--ghost:hover {
  border-color: var(--pr-white);
  color: var(--pr-white);
}

.pr-btn--outline {
  background: var(--pr-white);
  color: var(--pr-ink);
  border: 1px solid var(--pr-line);
}

.pr-btn--outline:hover {
  border-color: var(--pr-rose);
  color: var(--pr-rose);
}

/* Hero */
.pr-hero {
  position: relative;
  min-height: min(88vh, 720px);
  display: flex;
  align-items: flex-end;
  padding: 5rem 0 4rem;
  background: var(--pr-gradient-hero);
  color: var(--pr-white);
  /* clip doar pe X — overflow:hidden tăia descenderii titlului */
  overflow-x: clip;
  overflow-y: visible;
}

.pr-hero--home {
  align-items: center;
  min-height: min(92vh, 780px);
  padding: 5.5rem 0 3.5rem;
}

.pr-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 78% 18%, rgba(var(--pr-rose-rgb), 0.5), transparent 42%),
    radial-gradient(circle at 18% 78%, rgba(201, 162, 39, 0.2), transparent 38%),
    radial-gradient(ellipse 90% 60% at 50% 100%, rgba(0, 0, 0, 0.22), transparent 55%);
  pointer-events: none;
}

.pr-hero__atmosphere {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.pr-hero__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(2px);
}

.pr-hero__orb--a {
  width: min(58vw, 440px);
  height: min(58vw, 440px);
  right: -8%;
  top: 6%;
  background: radial-gradient(circle, rgba(240, 184, 200, 0.32), transparent 68%);
  animation: pr-glow-drift 10s ease-in-out infinite alternate;
}

.pr-hero__orb--b {
  width: min(42vw, 280px);
  height: min(42vw, 280px);
  left: -6%;
  bottom: 8%;
  background: radial-gradient(circle, rgba(201, 162, 39, 0.18), transparent 70%);
  animation: pr-glow-drift 12s ease-in-out infinite alternate-reverse;
}

.pr-hero__grain {
  position: absolute;
  inset: 0;
  opacity: 0.07;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 180px;
  mix-blend-mode: soft-light;
}

.pr-hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 2.5rem;
  align-items: center;
  /* NU width:100% — anula gutter-ul .pr-container și liptea de margini */
  width: min(100% - (var(--pr-gutter) * 2), var(--pr-max));
  max-width: var(--pr-max);
  margin-inline: auto;
  box-sizing: border-box;
}

.pr-hero__copy {
  max-width: 36rem;
  position: relative;
  z-index: 3;
  min-width: 0;
}

/* Mobil: hero centrat — pozele sub text, fără overlap */
@media (max-width: 899px) {
  .pr-hero--home .pr-hero__grid {
    justify-items: center;
    text-align: center;
    gap: 1.75rem;
  }

  .pr-hero--home .pr-hero__copy {
    max-width: 22rem;
    margin-inline: auto;
    padding-left: 0;
    z-index: 3;
  }

  .pr-hero--home .pr-hero__lead {
    margin-inline: auto;
  }

  .pr-hero--home .pr-hero__cta {
    justify-content: center;
  }

  .pr-hero--home .pr-hero__stage {
    z-index: 1;
    width: min(100%, 300px);
    height: min(48vw, 240px);
    overflow: visible;
  }
}

.pr-hero__eyebrow {
  margin: 0 0 0.85rem;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(240, 184, 200, 0.95);
  animation: pr-fade-up 0.65s ease;
}

.pr-hero__brand {
  font-family: var(--pr-display);
  font-size: clamp(2.5rem, 5.5vw, 3.65rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.035em;
  margin: 0 0 1.1rem;
  animation: pr-fade-up 0.7s ease 0.06s;
  overflow-wrap: anywhere;
  word-break: break-word;
  max-width: 100%;
}

.pr-hero__brand em {
  font-style: italic;
  color: #f0b8c8;
}

.pr-hero__lead {
  font-size: clamp(1.05rem, 2.2vw, 1.22rem);
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.9);
  margin: 0 0 1.85rem;
  max-width: 30rem;
  animation: pr-fade-up 0.7s ease 0.14s;
}

.pr-hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  animation: pr-fade-up 0.7s ease 0.24s;
}

.pr-hero .pr-btn--primary {
  box-shadow: 0 10px 28px rgba(var(--pr-rose-rgb), 0.35);
}

.pr-hero .pr-btn--ghost {
  border-color: rgba(255, 255, 255, 0.45);
  color: #fff;
}

.pr-hero .pr-btn--ghost:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

.pr-hero__stage {
  position: relative;
  z-index: 1;
  height: min(52vw, 340px);
  max-width: 420px;
  margin-inline: auto;
  animation: pr-fade-up 0.85s ease 0.18s;
  /* visible: overflow:hidden tăia umbrele + colțurile → pozele „intrau” în fundal */
  overflow: visible;
  isolation: isolate;
}

.pr-hero__shot {
  position: absolute;
  margin: 0;
  overflow: hidden;
  border-radius: 22px;
  border: 2px solid rgba(255, 255, 255, 0.42);
  background: #1a1018;
  box-shadow:
    0 0 0 1px rgba(0, 0, 0, 0.35),
    0 14px 36px rgba(0, 0, 0, 0.55);
}

.pr-hero__shot img,
.pr-hero__shot .pr-pillar__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.pr-hero__shot--1 {
  width: 56%;
  height: 76%;
  left: 4%;
  top: 10%;
  z-index: 2;
  transform: rotate(-6deg);
  animation: pr-shot-float 7s ease-in-out infinite alternate;
}

.pr-hero__shot--2 {
  width: 48%;
  height: 60%;
  right: 2%;
  top: 2%;
  z-index: 1;
  transform: rotate(8deg);
  animation: pr-shot-float 8.5s ease-in-out infinite alternate-reverse;
}

.pr-hero__shot--3 {
  width: 44%;
  height: 52%;
  right: 14%;
  bottom: 2%;
  z-index: 3;
  transform: rotate(3deg);
  animation: pr-shot-float 6.5s ease-in-out infinite alternate;
}

/* Desktop: grid 50/50, fără overlap text/poze — margini = --pr-gutter pe .pr-container */
@media (min-width: 900px) {
  .pr-hero--home .pr-hero__grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    column-gap: clamp(1.75rem, 3.5vw, 3rem);
    row-gap: 2.5rem;
    align-items: center;
    padding-inline: 0;
    box-sizing: border-box;
  }

  .pr-hero--home .pr-hero__copy {
    position: relative;
    z-index: 3;
    width: auto;
    max-width: 34rem;
    margin: 0;
    padding: 0 1rem 0 0;
    min-width: 0;
  }

  .pr-hero--home .pr-hero__brand {
    font-size: clamp(2.35rem, 4.2vw, 3.4rem);
  }

  .pr-hero--home .pr-hero__stage {
    position: relative;
    z-index: 1;
    translate: none;
    top: auto;
    right: auto;
    width: 100%;
    max-width: 380px;
    height: 360px;
    margin: 0 0 0 auto;
    justify-self: end;
    pointer-events: auto;
    overflow: visible;
  }

  .pr-hero--home .pr-hero__shot--1 {
    left: 10%;
    width: 52%;
  }
}

@keyframes pr-fade-up {
  from {
    transform: translateY(10px);
  }
  to {
    transform: translateY(0);
  }
}

@keyframes pr-glow-drift {
  from {
    transform: translate(0, 0) scale(1);
  }
  to {
    transform: translate(-6%, 4%) scale(1.08);
  }
}

@keyframes pr-shot-float {
  from {
    translate: 0 0;
  }
  to {
    translate: 0 -10px;
  }
}

@keyframes pr-pillar-in {
  from {
    transform: translateY(12px);
  }
  to {
    transform: translateY(0);
  }
}

/* Section heads */
.pr-section-head {
  margin-bottom: 1.85rem;
  max-width: 36rem;
}

.pr-section-head--row {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem 1.5rem;
  max-width: none;
}

.pr-section-head__kicker {
  margin: 0 0 0.45rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--pr-rose);
}

.pr-section-head__title {
  font-family: var(--pr-display);
  font-size: clamp(1.85rem, 3.4vw, 2.5rem);
  margin: 0 0 0.45rem;
  letter-spacing: -0.025em;
  color: var(--pr-ink);
}

.pr-section-head__lead {
  margin: 0;
  color: var(--pr-ink-soft);
  font-size: 1.02rem;
}

/* Home steps strip */
.pr-home-steps {
  margin-top: -1.5rem;
  position: relative;
  z-index: 2;
  padding: 0 0 0.5rem;
}

.pr-home-steps__inner {
  padding: 1.15rem 1.35rem;
  border-radius: calc(var(--pr-radius) + 2px);
  background: var(--pr-white);
  border: 1px solid var(--pr-line);
  box-shadow: var(--pr-shadow);
}

.pr-home-steps__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.85rem;
}

.pr-home-steps__list > li {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
}

.pr-home-steps__num {
  font-family: var(--pr-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--pr-rose);
  letter-spacing: -0.02em;
  min-width: 1.75rem;
}

.pr-home-steps__label {
  font-weight: 600;
  color: var(--pr-ink);
  font-size: 0.98rem;
}

@media (min-width: 768px) {
  .pr-home-steps__list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.25rem;
  }

  .pr-home-steps__list > li:not(:last-child) {
    border-right: 1px solid var(--pr-line);
    padding-right: 1.25rem;
  }
}

/* Pillars — categorii cheie */
.pr-pillars {
  padding: 3.25rem 0 2.5rem;
}

.pr-pillars__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.pr-pillars__grid > li {
  animation: pr-pillar-in 0.55s ease;
  animation-delay: var(--pr-stagger, 0s);
}

.pr-pillar {
  display: flex;
  flex-direction: column;
  min-height: 180px;
  height: 100%;
  border-radius: calc(var(--pr-radius) + 2px);
  overflow: hidden;
  color: var(--pr-ink);
  text-decoration: none;
  position: relative;
  isolation: isolate;
  transition: transform 0.32s ease, box-shadow 0.32s ease;
}

.pr-pillar::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 35%, rgba(20, 14, 22, 0.72) 100%);
  z-index: 0;
  pointer-events: none;
}

.pr-pillar:hover {
  transform: translateY(-6px) scale(1.015);
  box-shadow: var(--pr-shadow-lg);
  color: var(--pr-ink);
}

.pr-pillar:hover .pr-pillar__img {
  transform: scale(1.06);
}

.pr-pillar__media {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(160deg, rgba(42, 36, 48, 0.08), rgba(42, 36, 48, 0.45)),
    linear-gradient(135deg, var(--pr-sand), var(--pr-rose-soft));
}

.pr-pillar--rose .pr-pillar__media {
  background:
    linear-gradient(160deg, rgba(42, 36, 48, 0.15), rgba(158, 63, 92, 0.55)),
    linear-gradient(135deg, #f7e6eb, #e8b4c2);
}

.pr-pillar--sand .pr-pillar__media {
  background:
    linear-gradient(160deg, rgba(42, 36, 48, 0.12), rgba(42, 36, 48, 0.4)),
    linear-gradient(135deg, #f5ebe3, #e2d0c2);
}

.pr-pillar--ink .pr-pillar__media {
  background:
    linear-gradient(160deg, rgba(42, 36, 48, 0.2), rgba(42, 36, 48, 0.62)),
    linear-gradient(135deg, #3d3544, #6b5360);
}

.pr-pillar--gold .pr-pillar__media {
  background:
    linear-gradient(160deg, rgba(42, 36, 48, 0.18), rgba(201, 162, 39, 0.35)),
    linear-gradient(135deg, #f3e8d4, #d4b978);
}

.pr-pillar--glow .pr-pillar__media {
  background:
    linear-gradient(160deg, rgba(42, 36, 48, 0.12), rgba(var(--pr-rose-rgb), 0.5)),
    linear-gradient(135deg, #fdf2f5, #f0b8c8);
}

.pr-pillar__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.95;
  transition: transform 0.45s ease;
}

.pr-pillar__body {
  position: relative;
  z-index: 1;
  margin-top: auto;
  padding: 1.25rem 1.2rem 1.35rem;
  color: #fff;
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.4);
}

.pr-pillar__name {
  display: block;
  font-family: var(--pr-display);
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.15;
}

.pr-pillar__blurb {
  display: block;
  margin-top: 0.3rem;
  font-size: 0.875rem;
  opacity: 0.9;
}

@media (min-width: 768px) {
  .pr-pillars__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
  }

  .pr-pillar {
    min-height: 200px;
  }
}

@media (min-width: 1024px) {
  .pr-pillars__grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }

  .pr-pillar {
    min-height: 220px;
  }
}

/* Ocazii */
.pr-occasions {
  padding: 2.75rem 0 3.5rem;
  background:
    radial-gradient(ellipse 70% 80% at 0% 50%, rgba(var(--pr-rose-rgb), 0.07), transparent 55%),
    radial-gradient(ellipse 50% 60% at 100% 40%, rgba(201, 162, 39, 0.06), transparent 50%);
}

.pr-occasions__row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.pr-occasion {
  display: inline-flex;
  align-items: center;
  padding: 0.78rem 1.25rem;
  border-radius: 999px;
  border: 1px solid transparent;
  background: var(--pr-white);
  color: var(--pr-ink);
  font-weight: 600;
  font-size: 0.95rem;
  box-shadow: 0 1px 0 rgba(42, 36, 48, 0.04);
  transition: border-color 0.2s ease, color 0.2s ease, transform 0.2s ease, background 0.2s ease;
}

.pr-occasion:hover {
  border-color: rgba(var(--pr-rose-rgb), 0.45);
  color: var(--pr-rose-dark);
  background: var(--pr-rose-glow);
  transform: translateY(-2px);
}

/* Featured products strip */
.pr-featured {
  padding: 0 0 3.5rem;
}

.pr-featured--home {
  padding: 1.25rem 0 2.75rem;
}

.pr-featured--home + .pr-featured--home {
  padding-top: 0.5rem;
}

.pr-featured--sale .pr-section-head__kicker {
  color: var(--pr-rose-dark);
}

.pr-featured__title {
  font-family: var(--pr-display);
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  margin: 0 0 1.5rem;
}

/* Trust band — contrast puternic (ink pe cream / accent rose) */
.pr-home-trust {
  /* aer sus: bara coboară sub linia de trecere a secțiunii de deasupra */
  padding: 2.75rem 0 4rem;
}

.pr-home-trust__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.75rem 1.35rem;
  padding: 1.4rem 1.5rem;
  border-radius: calc(var(--pr-radius) + 4px);
  background:
    linear-gradient(125deg, #2a2430 0%, #4a3540 55%, #6b3f52 100%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  box-shadow: 0 14px 40px rgba(42, 36, 48, 0.18);
}

.pr-home-trust__line {
  margin: 0;
  font-size: 0.95rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.92);
}

.pr-home-trust__line a {
  font-weight: 800;
  color: #f7c4d2;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.pr-home-trust__line a:hover {
  color: #fff;
}

.pr-home-trust__code {
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  letter-spacing: 0.05em;
  color: #2a2430;
  background: #f7c4d2;
  padding: 0.2rem 0.55rem;
  border-radius: 6px;
  font-weight: 800;
}

.pr-home-trust__sep {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #f7c4d2;
  opacity: 0.85;
}

@media (max-width: 767px) {
  .pr-hero--home {
    min-height: min(82vh, 620px);
    padding: 4.5rem 0 3rem;
    align-items: flex-end;
  }

  .pr-hero__cta {
    width: 100%;
  }

  .pr-hero__cta .pr-btn {
    flex: 1 1 auto;
    justify-content: center;
    text-align: center;
  }

  .pr-home-trust__sep {
    display: none;
  }

  .pr-home-trust__inner {
    flex-direction: column;
    gap: 0.55rem;
  }
}

/* Legacy category tiles (kept if used elsewhere) */
.pr-cats {
  padding: 3.5rem 0;
}

.pr-cats__head {
  margin-bottom: 1.75rem;
}

.pr-cats__title {
  font-family: var(--pr-display);
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  margin: 0 0 0.4rem;
  letter-spacing: -0.02em;
}

.pr-cats__lead {
  margin: 0;
  color: var(--pr-ink-soft);
}

.pr-cats__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 1rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.pr-cat {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  min-height: 140px;
  padding: 1.25rem;
  border-radius: var(--pr-radius);
  background: var(--pr-white);
  border: 1px solid var(--pr-line);
  color: var(--pr-ink);
  text-decoration: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s;
}

.pr-cat:hover {
  transform: translateY(-4px);
  box-shadow: var(--pr-shadow);
  border-color: var(--pr-rose);
  color: var(--pr-ink);
}

.pr-cat__name {
  font-weight: 700;
  font-size: 1.05rem;
  margin-top: auto;
}

.pr-cat__count {
  font-size: 0.8rem;
  color: var(--pr-ink-soft);
  margin-top: 0.25rem;
}

/* Content */
.pr-entry__title {
  font-family: var(--pr-display);
  font-size: clamp(1.85rem, 3vw, 2.5rem);
  margin: 0 0 1.25rem;
  letter-spacing: -0.02em;
}

.pr-entry__content > *:first-child {
  margin-top: 0;
}

.pr-main {
  min-height: 50vh;
}

/* Footer */
.pr-footer {
  background: var(--pr-ink);
  color: rgba(255, 255, 255, 0.85);
  padding: 3rem 0 1.5rem;
  margin-top: 2rem;
}

.pr-footer a {
  color: rgba(255, 255, 255, 0.85);
}

.pr-footer a:hover {
  color: #f0b8c8;
}

.pr-footer__grid {
  display: grid;
  gap: 2rem;
}

@media (min-width: 768px) {
  .pr-footer__grid {
    grid-template-columns: 2fr 1fr 1fr;
  }
}

.pr-footer__brand strong {
  font-family: var(--pr-display);
  font-size: 1.35rem;
  color: var(--pr-white);
}

.pr-footer-menu {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.pr-footer__copy {
  text-align: center;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
  margin: 1.25rem 0 0;
  padding: 1.25rem 1rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.pr-footer-legal {
  margin-top: 2rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.pr-footer-legal ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem 1.25rem;
  justify-content: center;
}

.pr-footer-legal a {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.78);
}

.pr-footer-legal a:hover {
  color: #f0b8c8;
}

.pr-footer-legal__cookie {
  appearance: none;
  border: 0;
  background: none;
  padding: 0;
  margin: 0;
  font: inherit;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.78);
  text-decoration: underline;
  text-underline-offset: 2px;
  cursor: pointer;
}

.pr-footer-legal__cookie:hover {
  color: #f0b8c8;
}

/* ANPC / SAL — 2 coloane, centrat în footer închis */
.pr-anpc {
  margin: 1.35rem auto 0.65rem;
  padding: 1.25rem 0 0.35rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  max-width: 920px;
}

.pr-anpc__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(250px, 0.85fr);
  gap: 1.25rem 2rem;
  align-items: center;
  text-align: left;
}

.pr-anpc__title {
  margin: 0 0 0.45rem;
  font-size: 0.95rem;
  font-weight: 800;
  color: #fff;
}

.pr-anpc__text {
  margin: 0 0 0.55rem;
  font-size: 0.84rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.78);
}

.pr-anpc__text a {
  color: #f0b8c8;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.pr-anpc__text a:hover {
  color: #fff;
}

.pr-anpc__col--badges {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.55rem;
}

.pr-anpc__badge {
  display: inline-block;
  line-height: 0;
  border-radius: 6px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.22);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.pr-anpc__badge:hover {
  opacity: 0.95;
  transform: translateY(-1px);
}

.pr-anpc__badge img {
  display: block;
  width: 250px;
  max-width: 100%;
  height: 50px;
  object-fit: contain;
  background: #fff;
}

.pr-anpc__note {
  margin: 0;
  font-size: 0.72rem;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.5);
}

@media (max-width: 767px) {
  .pr-anpc__grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 1rem;
  }

  .pr-anpc__col--badges {
    align-items: center;
  }
}

.pr-legal-doc__warn {
  padding: 0.75rem 0.9rem;
  border-radius: 10px;
  background: #fff7ed;
  border: 1px solid #fed7aa;
  color: #9a3412;
  font-size: 0.9rem;
}

.pr-footer-legal__note {
  text-align: center;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.72);
  margin: 0.85rem 0 0;
}

.pr-cookie {
  position: fixed;
  inset: auto 0 0 0;
  z-index: 10000;
  padding: 0 1rem 1rem;
  padding-bottom: max(1rem, env(safe-area-inset-bottom, 0px));
  pointer-events: none;
  opacity: 0;
  transform: translateY(110%);
  transition: opacity 0.3s ease, transform 0.35s ease;
  box-sizing: border-box;
}

.pr-cookie[hidden] {
  display: none !important;
  content-visibility: hidden;
}

.pr-cookie.is-visible {
  pointer-events: auto;
  opacity: 1;
  transform: translateY(0);
}

.pr-cookie.is-visible .pr-cookie__panel {
  pointer-events: auto;
}

/* Bară compactă tip Kids Mania */
.pr-cookie__panel {
  max-width: 1100px;
  margin: 0 auto;
  padding: 1.15rem 1.25rem;
  border: 1px solid var(--pr-line);
  border-radius: 14px;
  background: var(--pr-white);
  box-shadow: 0 12px 40px rgba(42, 36, 48, 0.18);
  box-sizing: border-box;
}

.pr-cookie__main {
  display: grid;
  gap: 1rem;
}

@media (min-width: 768px) {
  .pr-cookie__main {
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 1.5rem;
  }

  .pr-cookie__panel {
    padding: 1.25rem 1.5rem;
  }
}

.pr-cookie__text strong {
  display: block;
  font-size: 0.9375rem;
  color: var(--pr-ink);
}

.pr-cookie__text p {
  margin: 0.35rem 0 0;
  font-size: 0.8125rem;
  color: var(--pr-ink-soft);
  line-height: 1.55;
}

.pr-cookie__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: flex-end;
  margin-top: 0;
}

.pr-cookie__actions .pr-btn {
  border-radius: 10px;
  font-size: 0.8125rem;
  font-weight: 700;
  padding: 0.65rem 1rem;
  width: auto;
}

/* Important: display pe settings anula [hidden] → apăreau checkbox-urile mereu */
.pr-cookie__settings {
  display: grid;
  gap: 0.55rem;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--pr-line);
}

.pr-cookie__settings[hidden] {
  display: none !important;
}

.pr-cookie__opt {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.8125rem;
  font-weight: 600;
}

@media (max-width: 767px) {
  .pr-cookie {
    padding: 0 0.75rem 0.75rem;
    padding-bottom: max(0.75rem, env(safe-area-inset-bottom, 0px));
  }

  .pr-cookie__panel {
    padding: 1rem 1.05rem;
    border-radius: 14px;
  }

  .pr-cookie__text strong {
    font-size: 0.9rem;
  }

  .pr-cookie__text p {
    font-size: 0.8125rem;
  }

  .pr-cookie__actions {
    justify-content: flex-end;
  }

  .pr-cookie__actions .pr-btn {
    flex: 0 1 auto;
    min-width: 0;
    width: auto;
    padding: 0.6rem 0.85rem;
  }
}

.pr-widget {
  margin-bottom: 1.5rem;
}

.pr-widget__title {
  font-family: var(--pr-display);
  font-size: 1.15rem;
  margin: 0 0 0.75rem;
}

/* =============================================================================
   Mini-cart drawer
   ============================================================================= */

body.pr-mini-cart-open,
body.pr-added-modal-open {
  overflow: hidden;
}

/* =============================================================================
   Popup adăugat în coș / erori
   ============================================================================= */

.pr-added-modal {
  position: fixed;
  inset: 0;
  z-index: 450;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
  pointer-events: none;
}

.pr-added-modal.is-open {
  pointer-events: auto;
}

.pr-added-modal[hidden] {
  display: none !important;
}

.pr-added-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(42, 36, 48, 0.5);
  opacity: 0;
  transition: opacity 0.22s ease;
}

.pr-added-modal.is-open .pr-added-modal__overlay {
  opacity: 1;
}

.pr-added-modal__dialog {
  position: relative;
  z-index: 1;
  width: min(100%, 420px);
  background: var(--pr-white);
  border-radius: 18px;
  padding: 1.65rem 1.4rem 1.4rem;
  box-shadow: 0 24px 60px rgba(42, 36, 48, 0.22);
  text-align: center;
  transform: translateY(12px) scale(0.97);
  opacity: 0;
  transition: transform 0.22s ease, opacity 0.22s ease;
}

.pr-added-modal.is-open .pr-added-modal__dialog {
  transform: translateY(0) scale(1);
  opacity: 1;
}

.pr-added-modal__close {
  position: absolute;
  top: 0.55rem;
  right: 0.65rem;
  width: 2rem;
  height: 2rem;
  border: none;
  background: transparent;
  font-size: 1.5rem;
  line-height: 1;
  color: var(--pr-ink-soft);
  cursor: pointer;
  border-radius: 8px;
}

.pr-added-modal__close:hover {
  color: var(--pr-ink);
  background: var(--pr-cream);
}

.pr-added-modal__icon {
  display: flex;
  justify-content: center;
  margin-bottom: 0.75rem;
}

.pr-added-modal__title {
  margin: 0 0 0.45rem;
  font-family: var(--pr-display);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--pr-ink);
  letter-spacing: -0.02em;
  line-height: 1.25;
}

.pr-added-modal__msg {
  margin: 0 0 1rem;
  font-size: 0.95rem;
  color: var(--pr-ink-soft);
  line-height: 1.45;
}

.pr-added-modal__product {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  text-align: left;
  margin: 0 0 1.15rem;
  padding: 0.75rem 0.85rem;
  border: 1px solid var(--pr-line);
  border-radius: 12px;
  background: var(--pr-cream);
}

.pr-added-modal__product[hidden] {
  display: none !important;
}

.pr-added-modal__thumb {
  width: 64px;
  height: 64px;
  object-fit: cover;
  border-radius: 10px;
  flex-shrink: 0;
  background: var(--pr-white);
}

.pr-added-modal__meta {
  display: grid;
  gap: 0.2rem;
  min-width: 0;
}

.pr-added-modal__meta strong {
  font-size: 0.95rem;
  color: var(--pr-ink);
  line-height: 1.3;
}

.pr-added-modal__meta span {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--pr-rose-dark);
}

.pr-added-modal__actions {
  display: grid;
  gap: 0.5rem;
}

.pr-added-modal__actions .pr-btn {
  width: 100%;
  border-radius: 999px !important; /* pastilă ca Finalizează — fără dungi pe outline */
}

.pr-added-modal__continue {
  width: 100%;
  margin: 0.15rem 0 0;
  padding: 0.45rem;
  border: none;
  background: transparent;
  color: var(--pr-ink-soft);
  font: inherit;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.pr-added-modal__continue:hover {
  color: var(--pr-rose);
}

/* Toast stoc — mini-cart / cart / checkout / PDP */
.pr-stock-toast {
  position: fixed;
  left: 50%;
  bottom: 1.35rem;
  z-index: 500;
  max-width: min(92vw, 26rem);
  padding: 0.85rem 1.15rem;
  border-radius: 12px;
  background: #2a2430;
  color: #fff;
  font-size: 0.92rem;
  font-weight: 600;
  line-height: 1.4;
  text-align: center;
  box-shadow: 0 12px 36px rgba(42, 36, 48, 0.28);
  transform: translate(-50%, 12px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.pr-stock-toast.is-visible {
  opacity: 1;
  transform: translate(-50%, 0);
}

.pr-mini-cart {
  position: fixed;
  inset: 0;
  z-index: 400;
  pointer-events: none;
}

.pr-mini-cart.is-open {
  pointer-events: auto;
}

.pr-mini-cart__overlay {
  position: absolute;
  inset: 0;
  background: rgba(42, 36, 48, 0.45);
  opacity: 0;
  transition: opacity 0.28s ease;
}

.pr-mini-cart.is-open .pr-mini-cart__overlay {
  opacity: 1;
}

.pr-mini-cart__panel {
  position: absolute;
  top: 12px;
  right: 12px;
  bottom: 12px;
  width: min(calc(100% - 24px), 400px);
  height: auto;
  background: var(--pr-cream);
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  box-shadow: 0 24px 64px rgba(42, 36, 48, 0.28);
  transform: translateX(calc(100% + 24px));
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.pr-mini-cart.is-open .pr-mini-cart__panel {
  transform: translateX(0);
}

@media (max-width: 480px) {
  .pr-mini-cart__panel {
    top: 8px;
    right: 8px;
    bottom: 8px;
    width: calc(100% - 16px);
    border-radius: 16px;
  }
}

.pr-mini-cart.is-loading .pr-mini-cart__panel {
  pointer-events: none;
}

.pr-mini-cart.is-loading .pr-mini-cart__items {
  opacity: 0.55;
  transition: opacity 0.15s ease;
}

.pr-mini-cart__contents {
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 0;
  background: var(--pr-cream);
}

.pr-mini-cart__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.85rem 1rem 0.45rem;
  background: transparent;
}

.pr-mini-cart__title {
  font-family: var(--pr-display);
  font-size: 1.4rem;
  margin: 0;
  letter-spacing: -0.03em;
  color: var(--pr-ink);
}

.pr-mini-cart__close {
  width: 32px;
  height: 32px;
  border: none;
  border-radius: 50%;
  background: transparent;
  font-size: 1.35rem;
  line-height: 1;
  cursor: pointer;
  color: var(--pr-ink-soft);
}

.pr-mini-cart__close:hover {
  color: var(--pr-ink);
  background: var(--pr-sand);
}

.pr-mini-cart__cols {
  display: flex;
  justify-content: space-between;
  padding: 0.2rem 1rem 0.4rem;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #9a9298;
  border-bottom: 1px solid var(--pr-line);
}

.pr-mini-cart__empty {
  padding: 2.5rem 1.5rem;
  text-align: center;
}

.pr-mini-cart__empty p {
  margin: 0 0 1.25rem;
  color: var(--pr-ink-soft);
}

.pr-mini-cart__items {
  list-style: none;
  margin: 0;
  padding: 0.3rem 0.9rem 0.55rem;
  overflow-y: auto;
  flex: 1;
  min-height: 0;
}

.pr-mini-cart__item {
  display: grid;
  grid-template-columns: 44px 1fr auto;
  gap: 0.45rem 0.55rem;
  padding: 0.45rem 0;
  border-bottom: 1px solid var(--pr-line);
  background: transparent;
  align-items: start;
}

.pr-mini-cart__item:last-child {
  border-bottom: none;
}

.pr-mini-cart__thumb {
  width: 44px;
  height: 44px;
  border-radius: 8px;
  overflow: hidden;
  background: var(--pr-white);
  flex-shrink: 0;
  isolation: isolate;
}

.pr-mini-cart__thumb a {
  display: block;
  width: 100%;
  height: 100%;
  background: var(--pr-white);
  line-height: 0;
}

.pr-mini-cart__thumb img,
.pr-mini-cart__thumb .attachment-woocommerce_thumbnail,
.pr-mini-cart__thumb .woocommerce-placeholder {
  display: block;
  width: 44px !important;
  height: 44px !important;
  max-width: none !important;
  object-fit: cover;
  border-radius: 8px;
  background: var(--pr-white) !important;
  box-shadow: none !important;
  border: none !important;
}

.pr-mini-cart__name {
  font-weight: 600;
  font-size: 0.78rem;
  line-height: 1.25;
  margin-bottom: 0.1rem;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

.pr-mini-cart__name a {
  color: var(--pr-rose);
}

.pr-mini-cart__name a:hover {
  color: var(--pr-rose-dark);
}

.pr-mini-cart__price {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--pr-ink);
  margin: 0 0 0.1rem;
}

.pr-mini-cart__price del {
  color: #9a9298;
  margin-right: 0.35rem;
  font-weight: 500;
}

.pr-mini-cart__price ins {
  text-decoration: none;
  color: var(--pr-ink);
}

.pr-mini-cart__controls {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  margin-top: 0.25rem;
}

.pr-mini-cart__qty {
  display: inline-flex;
  align-items: center;
  border: none;
  border-radius: 8px;
  overflow: hidden;
  background: #ebe6e3;
  height: 28px;
}

.pr-mini-cart__qty-btn {
  width: 28px;
  height: 28px;
  border: none;
  background: transparent;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  color: var(--pr-ink);
  line-height: 1;
}

.pr-mini-cart__qty-btn:hover {
  color: var(--pr-rose);
  background: rgba(255, 255, 255, 0.45);
}

.pr-mini-cart__qty-input {
  width: 1.7rem;
  border: none;
  background: transparent;
  text-align: center;
  font: inherit;
  font-weight: 700;
  font-size: 0.78rem;
  padding: 0;
  -moz-appearance: textfield;
  color: var(--pr-ink);
}

.pr-mini-cart__qty-input::-webkit-outer-spin-button,
.pr-mini-cart__qty-input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.pr-mini-cart__remove {
  width: 28px;
  height: 28px;
  border: none;
  border-radius: 8px;
  background: transparent;
  cursor: pointer;
  color: var(--pr-ink-soft);
  padding: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.pr-mini-cart__remove:hover {
  color: var(--pr-rose-dark);
  background: var(--pr-rose-soft);
}

.pr-mini-cart__line {
  text-align: right;
  min-width: 4.25rem;
}

.pr-mini-cart__line-total {
  font-weight: 700;
  font-size: 0.8rem;
  color: var(--pr-ink);
}

.pr-mini-cart__save {
  display: inline-block;
  margin-top: 0.2rem;
  padding: 0.12rem 0.4rem;
  border-radius: 999px;
  background: #ebe6e3;
  color: #6b646c;
  font-size: 0.62rem;
  font-weight: 700;
  white-space: nowrap;
}

.pr-mini-cart__footer {
  flex-shrink: 0;
  padding: 0.5rem 0.9rem 0.65rem;
  border-top: 1px solid var(--pr-line);
  background: var(--pr-cream);
}

.pr-mini-cart__footer .pr-fs-bar {
  margin: 0 0 0.4rem;
  padding: 0.45rem 0.6rem 0.5rem;
  box-shadow: none;
}

.pr-mini-cart__footer .pr-fs-bar__track {
  position: relative;
  width: 100%;
  height: 8px;
  margin-bottom: 0.35rem;
  overflow: hidden;
  border-radius: 999px;
  /* Fundal track aici (panda-roz.css e pe toate paginile).
     woocommerce.css NU se încarcă pe articole/pagini → track invizibil. */
  background: #ece6e1;
}

.pr-mini-cart__footer .pr-fs-bar__fill {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  height: 100%;
  background-color: var(--pr-rose, #c45c7a);
  background-image: linear-gradient(
    90deg,
    var(--pr-rose-dark, #9e3f5c) 0%,
    var(--pr-rose, #c45c7a) 48%,
    var(--pr-companion, #e07a9a) 100%
  );
  background-size: 100% 100%;
  background-repeat: no-repeat;
}

.pr-mini-cart__footer .pr-fs-bar__msg {
  font-size: 0.7rem;
  line-height: 1.3;
}

.pr-mini-cart__footer .pr-fs-box {
  padding: 0.45rem 0.65rem;
  margin: 0 0 0.5rem;
  border-radius: 10px;
  gap: 0.45rem;
  align-items: center;
}

.pr-mini-cart__footer .pr-fs-box p {
  font-size: 0.78rem;
  line-height: 1.3;
}

.pr-mini-cart__footer .pr-fs-box__icon {
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 8px;
}

.pr-mini-cart__footer .pr-fs-box__icon svg {
  width: 14px;
  height: 14px;
}

.pr-mini-cart__subtotal {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-size: 0.82rem;
  margin: 0 0 0.4rem;
  color: var(--pr-ink);
}

.pr-mini-cart__subtotal strong {
  font-size: 0.98rem;
  font-weight: 800;
  color: var(--pr-ink);
}

.pr-mini-cart__checkout {
  display: flex !important;
  width: 100%;
  border-radius: 10px !important;
  padding: 0.55rem 0.85rem !important;
  font-size: 0.85rem !important;
}

.pr-mini-cart__cart-link {
  display: block;
  text-align: center;
  margin-top: 0.3rem;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--pr-ink-soft);
}

.pr-mini-cart__cart-link:hover {
  color: var(--pr-rose);
}

.pr-btn--checkout {
  background: var(--pr-ink) !important;
  color: var(--pr-white) !important;
  box-shadow: none !important;
}

.pr-btn--checkout:hover {
  background: #1a1620 !important;
  color: var(--pr-white) !important;
  transform: translateY(-1px);
}

.pr-mini-cart .variation,
.pr-mini-cart dl.variation {
  font-size: 0.68rem;
  color: var(--pr-ink-soft);
  margin: 0.05rem 0 0;
}

.pr-mini-cart .variation dt,
.pr-mini-cart .variation dd {
  display: inline;
  margin: 0;
}

.pr-mini-cart .variation dd {
  margin-right: 0.35rem;
}

.pr-mini-cart .variation dd p {
  display: inline;
  margin: 0;
}

/* Search popup */
.pr-search-modal[hidden] {
  display: none !important;
}

.pr-search-modal {
  position: fixed;
  inset: 0;
  z-index: 450;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: max(4.5rem, 12vh) 1.15rem 1.5rem;
  box-sizing: border-box;
}

.pr-search-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(42, 36, 48, 0.48);
  backdrop-filter: blur(4px);
}

.pr-search-modal__panel {
  position: relative;
  z-index: 1;
  width: min(100%, 440px);
  padding: 1.35rem 1.25rem 1.25rem;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 24px 56px rgba(42, 36, 48, 0.22);
  animation: pr-search-pop 0.22s ease;
}

@keyframes pr-search-pop {
  from {
    opacity: 0;
    transform: translateY(-10px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.pr-search-modal__close {
  position: absolute;
  top: 0.65rem;
  right: 0.65rem;
  width: 36px;
  height: 36px;
  border: 0;
  border-radius: 50%;
  background: var(--pr-sand);
  color: var(--pr-ink);
  font-size: 1.35rem;
  line-height: 1;
  cursor: pointer;
}

.pr-search-modal__title {
  margin: 0 2rem 0.85rem 0;
  font-family: var(--pr-display);
  font-size: 1.25rem;
  color: var(--pr-ink);
}

.pr-search-modal__form {
  display: grid;
  gap: 0.75rem;
}

.pr-search-modal__form input[type="search"] {
  width: 100%;
  min-height: 48px;
  padding: 0.75rem 1rem;
  border: 1px solid var(--pr-line);
  border-radius: 12px;
  font: inherit;
  font-size: 1rem;
  box-sizing: border-box;
  background: var(--pr-cream);
  color: var(--pr-ink);
}

.pr-search-modal__form input[type="search"]:focus {
  outline: 2px solid var(--pr-rose-soft);
  border-color: var(--pr-rose);
  background: #fff;
}

.pr-search-modal__submit {
  width: 100%;
}

body.pr-search-modal-open {
  overflow: hidden;
}
h: 100%;
}

body.pr-search-modal-open {
  overflow: hidden;
}
/* =============================================================================
   Skin „story” — doar carduri produs / colecții / pastile
   (fără border pe secțiunile homepage)
   ============================================================================= */

body.pr-card-story {
  color: var(--pr-ink);
  background: var(--pr-page-bg, var(--pr-cream)) !important;
}

body.pr-mode-classic {
  background: var(--pr-page-bg, var(--pr-cream));
}

/* ---- Hero tip bottle: închis, accent doar ca glow ---- */
body.pr-card-story.pr-mode-dark .pr-hero {
  background: var(--pr-gradient-hero) !important;
  /* spațiu sub header sticky — evită tăierea titlului */
  padding-top: 6.75rem;
}

body.pr-card-story.pr-mode-dark .pr-hero::before {
  /* fără bande negre — doar glow subtil accent */
  background: radial-gradient(circle at 82% 18%, rgba(var(--pr-rose-rgb), 0.2), transparent 42%);
}

body.pr-card-story.pr-mode-dark .pr-hero__orb--a {
  background: radial-gradient(circle, rgba(var(--pr-rose-rgb), 0.18), transparent 68%) !important;
  opacity: 0.7;
  /* ține glow-ul în zona pozelor, nu peste pași */
  top: 0;
  bottom: auto;
  right: -4%;
}

body.pr-card-story.pr-mode-dark .pr-hero__orb--b {
  /* scos: leave un smear roz sub hero / lângă „01 Alegi…” */
  display: none !important;
}

body.pr-card-story.pr-mode-dark .pr-hero__brand {
  line-height: 1.22;
  padding-top: 0.18em;
  padding-bottom: 0.22em;
  overflow: visible;
}

body.pr-card-story.pr-mode-dark .pr-hero__brand em {
  color: var(--pr-rose);
  display: inline-block;
  padding: 0.1em 0.06em 0.14em;
  line-height: 1.2;
}

body.pr-card-story.pr-mode-light .pr-hero {
  background: var(--pr-gradient-hero) !important;
}

body.pr-card-story.pr-mode-light .pr-hero::before {
  background:
    radial-gradient(circle at 78% 18%, rgba(var(--pr-rose-rgb), 0.35), transparent 42%),
    radial-gradient(circle at 18% 78%, rgba(var(--pr-rose-rgb), 0.15), transparent 38%),
    radial-gradient(ellipse 90% 60% at 50% 100%, rgba(0, 0, 0, 0.12), transparent 55%);
}

/* ---- Card produs ---- */
body.pr-card-story .woocommerce ul.products li.product,
body.pr-card-story .woocommerce ul.products li.product-category {
  position: relative;
  border: 1px solid var(--pr-rose) !important;
  border-radius: var(--pr-card-radius, 28px) !important;
  box-shadow: var(--pr-card-shadow) !important;
  overflow: hidden;
  transition: box-shadow 0.28s ease, border-color 0.28s ease, transform 0.25s ease;
}

body.pr-card-story .woocommerce ul.products li.product:hover {
  box-shadow: var(--pr-card-shadow-hover) !important;
}

body.pr-card-story .woocommerce ul.products li.product a img,
body.pr-card-story .woocommerce ul.products li.product img.attachment-woocommerce_thumbnail,
body.pr-card-story .woocommerce ul.products li.product .attachment-woocommerce_thumbnail {
  background: transparent !important;
  border-color: transparent !important;
}

/* drop-shadow doar pe card vertical (tablet+) — pe mobil orizontal strică colțurile rotunde */
@media (min-width: 640px) {
  body.pr-card-story .woocommerce ul.products li.product a img,
  body.pr-card-story .woocommerce ul.products li.product img.attachment-woocommerce_thumbnail,
  body.pr-card-story .woocommerce ul.products li.product .attachment-woocommerce_thumbnail {
    filter: drop-shadow(0 6px 18px rgba(var(--pr-rose-rgb), 0.28));
  }
}

@media (max-width: 639px) {
  body.pr-card-story .woocommerce ul.products li.product {
    overflow: hidden !important;
    isolation: isolate;
  }

  body.pr-card-story .woocommerce ul.products li.product a img,
  body.pr-card-story .woocommerce ul.products li.product img.attachment-woocommerce_thumbnail,
  body.pr-card-story .woocommerce ul.products li.product .attachment-woocommerce_thumbnail {
    filter: none !important;
    border-radius: calc(var(--pr-card-radius, 28px) - 1px) 0 0 calc(var(--pr-card-radius, 28px) - 1px) !important;
  }
}

@media (min-width: 640px) {
  body.pr-card-story .woocommerce ul.products li.product a img,
  body.pr-card-story .woocommerce ul.products li.product img.attachment-woocommerce_thumbnail,
  body.pr-card-story .woocommerce ul.products li.product .attachment-woocommerce_thumbnail {
    border-radius: 0 !important;
  }
}

body.pr-card-story .woocommerce ul.products li.product .price,
body.pr-card-story .woocommerce ul.products li.product .price .woocommerce-Price-amount,
body.pr-card-story .woocommerce ul.products li.product .price bdi,
body.pr-card-story .woocommerce ul.products li.product .price .woocommerce-Price-currencySymbol,
body.pr-card-story .woocommerce ul.products li.product .price ins {
  color: var(--pr-rose) !important;
}

/* Butoane = degrade tip PopBottle (accent → galben/roz) + shift la hover */
body.pr-card-story .woocommerce ul.products li.product .button,
body.pr-card-story .woocommerce ul.products li.product a.button,
body.pr-card-story .woocommerce ul.products li.product .added_to_cart,
body.pr-card-story .woocommerce a.button,
body.pr-card-story .woocommerce button.button,
body.pr-card-story .woocommerce input.button,
body.pr-card-story .woocommerce #respond input#submit,
body.pr-card-story .woocommerce button.button.alt,
body.pr-card-story .woocommerce a.button.alt,
body.pr-card-story .woocommerce input.button.alt,
body.pr-card-story .woocommerce div.product form.cart .single_add_to_cart_button,
body.pr-card-story .pr-btn--primary,
body.pr-card-story .pr-btn--checkout,
body.pr-card-story .pr-mini-cart__checkout,
body.pr-card-story .wc-proceed-to-checkout a.checkout-button,
body.pr-card-story #place_order {
  background-color: transparent !important;
  background-image: var(--pr-gradient-rose) !important;
  background-size: 220% 100% !important;
  background-position: 0% 50% !important;
  background-repeat: no-repeat !important;
  color: var(--pr-btn-text, #fff) !important;
  border: none !important;
  border-radius: var(--pr-btn-radius, 999px) !important;
  box-shadow: 0 4px 16px rgba(var(--pr-rose-rgb), 0.3) !important;
  font-weight: 800 !important;
  transition:
    background-position 0.45s ease,
    filter 0.2s ease,
    box-shadow 0.25s ease !important;
}

/* PDP ATC: blur pastilă — lățime 100% (aliniat cu qty + favorite) */
body.pr-card-story .woocommerce div.product form.cart .single_add_to_cart_button {
  border-radius: 999px !important;
  -webkit-appearance: none !important;
  appearance: none !important;
  filter: none !important;
  width: 100% !important;
  max-width: 100% !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
  box-sizing: border-box !important;
  border: 1.5px solid rgba(var(--pr-companion-rgb), 0.85) !important;
  /* dreapta puțin mai strâns — evită „tăiat” la overflow-x:clip */
  box-shadow:
    -5px 0 12px rgba(var(--pr-rose-rgb), 0.38),
    3px 0 10px rgba(var(--pr-companion-rgb), 0.4),
    0 0 10px rgba(var(--pr-companion-rgb), 0.26) !important;
}

body.pr-card-story .woocommerce ul.products li.product .button:hover,
body.pr-card-story .woocommerce ul.products li.product a.button:hover,
body.pr-card-story .woocommerce a.button:hover,
body.pr-card-story .woocommerce button.button:hover,
body.pr-card-story .woocommerce button.button.alt:hover,
body.pr-card-story .woocommerce a.button.alt:hover,
body.pr-card-story .woocommerce div.product form.cart .single_add_to_cart_button:hover,
body.pr-card-story .pr-btn--primary:hover,
body.pr-card-story .pr-btn--checkout:hover,
body.pr-card-story .pr-mini-cart__checkout:hover,
body.pr-card-story .wc-proceed-to-checkout a.checkout-button:hover,
body.pr-card-story #place_order:hover {
  color: var(--pr-btn-text, #fff) !important;
  background-image: var(--pr-gradient-rose) !important;
  background-position: 100% 50% !important;
  filter: brightness(1.06);
  box-shadow: 0 6px 22px rgba(var(--pr-rose-rgb), 0.45) !important;
}

body.pr-card-story .woocommerce div.product form.cart .single_add_to_cart_button:hover {
  filter: none !important;
  border-color: rgba(var(--pr-companion-rgb), 1) !important;
  box-shadow:
    -5px 0 13px rgba(var(--pr-rose-rgb), 0.44),
    3px 0 11px rgba(var(--pr-companion-rgb), 0.48),
    0 0 11px rgba(var(--pr-companion-rgb), 0.3) !important;
}

body.pr-card-story .pr-badge,
body.pr-card-story .pr-badge--sale {
  border-radius: 999px;
  background-image: var(--pr-gradient-rose);
  background-size: 160% 100%;
  background-position: 30% 50%;
  color: var(--pr-btn-text, #fff);
}

/* ========== DARK: UN singur degrade pe toată zona text+buton ========== */
@media (min-width: 640px) {
  body.pr-card-story.pr-mode-dark .woocommerce ul.products li.product {
    background:
      radial-gradient(ellipse 72% 42% at 50% 16%, rgba(var(--pr-rose-rgb), 0.22), transparent 58%),
      #1a1018 !important;
    color: #fff;
    border-color: rgba(var(--pr-rose-rgb), 0.45) !important;
  }

  /* Fade moale din poză → text — aceeași culoare, fără bandă mai deschisă */
  body.pr-card-story.pr-mode-dark .woocommerce ul.products li.product::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    top: 40%;
    z-index: 0;
    pointer-events: none;
    background: linear-gradient(
      180deg,
      transparent 0%,
      rgba(26, 16, 24, 0.55) 32%,
      #1a1018 62%,
      #1a1018 100%
    );
    border-radius: 0 0 calc(var(--pr-card-radius, 28px) - 1px) calc(var(--pr-card-radius, 28px) - 1px);
  }

  body.pr-card-story.pr-mode-dark .woocommerce ul.products li.product a img,
  body.pr-card-story.pr-mode-dark .woocommerce ul.products li.product img.attachment-woocommerce_thumbnail {
    background: transparent !important;
    border-bottom-color: transparent !important;
  }

  body.pr-card-story.pr-mode-dark .woocommerce ul.products li.product .pr-loop-cat,
  body.pr-card-story.pr-mode-dark .woocommerce ul.products li.product .woocommerce-loop-product__title,
  body.pr-card-story.pr-mode-dark .woocommerce ul.products li.product .price,
  body.pr-card-story.pr-mode-dark .woocommerce ul.products li.product .pr-loop-swatches,
  body.pr-card-story.pr-mode-dark .woocommerce ul.products li.product .button,
  body.pr-card-story.pr-mode-dark .woocommerce ul.products li.product a.button,
  body.pr-card-story.pr-mode-dark .woocommerce ul.products li.product .added_to_cart {
    position: relative;
    z-index: 1;
    background: transparent !important;
  }

  body.pr-card-story.pr-mode-dark .woocommerce ul.products li.product .pr-loop-cat {
    padding: 0.95rem 1.1rem 0.2rem;
    margin-top: 0;
  }

  body.pr-card-story.pr-mode-dark .woocommerce ul.products li.product .woocommerce-loop-product__title {
    padding: 0.2rem 1.1rem 0.15rem;
    color: #fff !important;
    font-weight: 800 !important;
  }

  body.pr-card-story.pr-mode-dark .woocommerce ul.products li.product .price {
    padding: 0.25rem 1.1rem 0.35rem;
  }

  body.pr-card-story.pr-mode-dark .woocommerce ul.products li.product .pr-loop-swatches {
    padding: 0.15rem 1.1rem 0.55rem;
  }

  body.pr-card-story.pr-mode-dark .woocommerce ul.products li.product .button,
  body.pr-card-story.pr-mode-dark .woocommerce ul.products li.product a.button,
  body.pr-card-story.pr-mode-dark .woocommerce ul.products li.product .added_to_cart {
    margin: 0 1.1rem 1.15rem !important;
    width: calc(100% - 2.2rem) !important;
    max-width: none;
    z-index: 2;
    background-image: var(--pr-gradient-rose) !important;
    box-shadow: 0 4px 16px rgba(var(--pr-rose-rgb), 0.3) !important;
  }
}

body.pr-card-story.pr-mode-dark .pr-loop-cat {
  color: rgba(255, 255, 255, 0.5) !important;
}

body.pr-card-story.pr-mode-dark .woocommerce ul.products li.product .price del {
  color: rgba(255, 255, 255, 0.4) !important;
}

body.pr-card-story.pr-mode-dark .pr-loop-swatch {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.22);
  color: #fff;
}

body.pr-card-story.pr-mode-dark .pr-badge--new {
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
}

/* Mobil dark: gradient fluid, fără tăietură vizibilă pe card */
@media (max-width: 639px) {
  body.pr-card-story.pr-mode-dark .woocommerce ul.products li.product {
    background:
      radial-gradient(ellipse 58% 78% at 22% 42%, rgba(var(--pr-rose-rgb), 0.24), transparent 60%),
      linear-gradient(135deg, #1a1018 0%, #1f131b 42%, #261820 72%, #2b1c24 100%) !important;
    color: #fff;
    border-color: rgba(var(--pr-rose-rgb), 0.45) !important;
  }

  /* Coș cross-sell: card VERTICAL — fără split 90deg (cusătură sub poză) */
  body.pr-card-story.pr-mode-dark.pr-cart-view .cross-sells ul.products li.product {
    background:
      radial-gradient(ellipse 72% 40% at 50% 12%, rgba(var(--pr-rose-rgb), 0.2), transparent 55%),
      #1a1018 !important;
  }

  body.pr-card-story.pr-mode-dark.pr-cart-view .cross-sells ul.products li.product::after {
    display: none !important;
  }

  body.pr-card-story.pr-mode-dark .woocommerce ul.products li.product .woocommerce-loop-product__title {
    color: #fff !important;
  }

  body.pr-card-story.pr-mode-dark .woocommerce ul.products li.product .pr-loop-cat,
  body.pr-card-story.pr-mode-dark .woocommerce ul.products li.product .woocommerce-loop-product__title,
  body.pr-card-story.pr-mode-dark .woocommerce ul.products li.product .price,
  body.pr-card-story.pr-mode-dark .woocommerce ul.products li.product .pr-loop-swatches {
    background: transparent;
  }

  body.pr-card-story.pr-mode-dark .woocommerce ul.products li.product .button,
  body.pr-card-story.pr-mode-dark .woocommerce ul.products li.product a.button {
    box-shadow: 0 4px 14px rgba(var(--pr-rose-rgb), 0.3) !important;
  }
}

/* ========== LIGHT: un singur degrade pe zona text ========== */
@media (min-width: 640px) {
  body.pr-card-story.pr-mode-light .woocommerce ul.products li.product {
    background:
      radial-gradient(ellipse 72% 42% at 50% 16%, rgba(var(--pr-rose-rgb), 0.18), transparent 58%),
      #ffffff !important;
    color: var(--pr-ink);
    border-width: 1.5px !important;
  }

  body.pr-card-story.pr-mode-light .woocommerce ul.products li.product::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    top: 46%;
    z-index: 0;
    pointer-events: none;
    background: linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.2) 0%,
      rgba(var(--pr-rose-rgb), 0.1) 18%,
      rgba(var(--pr-rose-rgb), 0.07) 55%,
      var(--pr-cream) 100%
    );
    border-radius: 0 0 calc(var(--pr-card-radius, 28px) - 1px) calc(var(--pr-card-radius, 28px) - 1px);
  }

  body.pr-card-story.pr-mode-light .woocommerce ul.products li.product .pr-loop-cat,
  body.pr-card-story.pr-mode-light .woocommerce ul.products li.product .woocommerce-loop-product__title,
  body.pr-card-story.pr-mode-light .woocommerce ul.products li.product .price,
  body.pr-card-story.pr-mode-light .woocommerce ul.products li.product .pr-loop-swatches,
  body.pr-card-story.pr-mode-light .woocommerce ul.products li.product .button,
  body.pr-card-story.pr-mode-light .woocommerce ul.products li.product a.button,
  body.pr-card-story.pr-mode-light .woocommerce ul.products li.product .added_to_cart {
    position: relative;
    z-index: 1;
    background: transparent !important;
  }

  body.pr-card-story.pr-mode-light .woocommerce ul.products li.product .pr-loop-cat {
    padding: 0.95rem 1.1rem 0.2rem;
    color: var(--pr-rose-dark) !important;
  }

  body.pr-card-story.pr-mode-light .woocommerce ul.products li.product .woocommerce-loop-product__title {
    padding: 0.2rem 1.1rem 0.15rem;
    color: var(--pr-ink) !important;
    font-weight: 800 !important;
  }

  body.pr-card-story.pr-mode-light .woocommerce ul.products li.product .price {
    padding: 0.25rem 1.1rem 0.35rem;
  }

  body.pr-card-story.pr-mode-light .woocommerce ul.products li.product .pr-loop-swatches {
    padding: 0.15rem 1.1rem 0.55rem;
  }

  body.pr-card-story.pr-mode-light .woocommerce ul.products li.product .button,
  body.pr-card-story.pr-mode-light .woocommerce ul.products li.product a.button,
  body.pr-card-story.pr-mode-light .woocommerce ul.products li.product .added_to_cart {
    margin: 0 1.1rem 1.15rem !important;
    width: calc(100% - 2.2rem) !important;
    max-width: none;
    z-index: 2;
    background-image: var(--pr-gradient-rose) !important;
    box-shadow: 0 4px 16px rgba(var(--pr-rose-rgb), 0.28) !important;
  }
}

body.pr-card-story.pr-mode-light .pr-loop-swatch {
  background: #fff;
  border-color: rgba(var(--pr-rose-rgb), 0.35);
  color: var(--pr-ink);
}

body.pr-card-story.pr-mode-light .pr-badge--new {
  background: var(--pr-ink);
  color: #fff;
}

@media (max-width: 639px) {
  body.pr-card-story.pr-mode-light .woocommerce ul.products li.product {
    background:
      radial-gradient(ellipse 54% 74% at 22% 42%, rgba(var(--pr-rose-rgb), 0.11), transparent 60%),
      linear-gradient(
        135deg,
        #ffffff 0%,
        #fffdfb 34%,
        rgba(var(--pr-rose-rgb), 0.04) 68%,
        var(--pr-cream) 100%
      ) !important;
    border-width: 1.5px !important;
  }

  /* Coș cross-sell light: fundal uniform (card vertical) */
  body.pr-card-story.pr-mode-light.pr-cart-view .cross-sells ul.products li.product {
    background:
      radial-gradient(ellipse 72% 40% at 50% 12%, rgba(var(--pr-rose-rgb), 0.12), transparent 55%),
      #ffffff !important;
  }

  body.pr-card-story.pr-mode-light.pr-cart-view .cross-sells ul.products li.product::after {
    display: none !important;
  }

  body.pr-card-story.pr-mode-light .woocommerce ul.products li.product .pr-loop-cat {
    color: var(--pr-rose-dark) !important;
  }

  body.pr-card-story.pr-mode-light .woocommerce ul.products li.product .button,
  body.pr-card-story.pr-mode-light .woocommerce ul.products li.product a.button {
    box-shadow: 0 4px 14px rgba(var(--pr-rose-rgb), 0.28) !important;
  }
}

/* ---- Topbar: gradient popcorn (accent → companion), fără linie spre meniu ---- */
body.pr-card-story.pr-mode-dark .pr-topbar {
  background-image: var(
    --pr-gradient-rose,
    linear-gradient(105deg, var(--pr-rose-dark) 0%, var(--pr-rose) 46%, #ffd60a 100%)
  ) !important;
  background-color: transparent !important;
  border-bottom: none !important;
  color: #fff;
  box-shadow: none;
  text-shadow: 0 1px 2px rgba(20, 8, 14, 0.35);
}

body.pr-card-story.pr-mode-dark .pr-topbar a {
  color: #fff;
}

body.pr-card-story.pr-mode-dark .pr-topbar a:hover {
  color: #fff8e7;
  opacity: 0.95;
}

/* ---- Header / meniu: dark cald, NU negru ---- */
body.pr-card-story.pr-mode-dark .pr-header {
  background: linear-gradient(
    180deg,
    #24141e 0%,
    #1c121a 100%
  ) !important;
  border-top: none !important;
  border-bottom: 1px solid rgba(var(--pr-rose-rgb), 0.28) !important;
  color: #f7f2f4;
  box-shadow: 0 8px 28px rgba(20, 8, 14, 0.35);
  overflow: visible;
}

/* Skinul schimbă doar culorile logo-ului, nu geometria lui. */
body.pr-card-story.pr-mode-dark .pr-logo {
  color: #fff;
}

body.pr-card-story.pr-mode-dark .pr-logo em {
  color: var(--pr-rose);
}

body.pr-card-story.pr-mode-dark .pr-footer {
  background: linear-gradient(180deg, #1a0e16 0%, #140a12 100%) !important;
  border-top: 1px solid rgba(var(--pr-rose-rgb), 0.22) !important;
  color: #f7f2f4;
}

body.pr-card-story.pr-mode-dark .pr-header a,
body.pr-card-story.pr-mode-dark .pr-footer a {
  color: #f7f2f4;
}

body.pr-card-story.pr-mode-dark .pr-header a:hover,
body.pr-card-story.pr-mode-dark .pr-footer a:hover {
  color: var(--pr-rose);
}

/* Link-uri meniu ca pastile translucide */
body.pr-card-story.pr-mode-dark .pr-header__nav--desktop .pr-menu > li > a {
  display: inline-flex;
  align-items: center;
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

body.pr-card-story.pr-mode-dark .pr-header__nav--desktop .pr-menu > li > a:hover,
body.pr-card-story.pr-mode-dark .pr-header__nav--desktop .pr-menu > li.current-menu-item > a {
  background: rgba(var(--pr-rose-rgb), 0.18);
  border-color: rgba(var(--pr-rose-rgb), 0.45);
  box-shadow: 0 0 18px rgba(var(--pr-rose-rgb), 0.25);
  color: #fff;
}

body.pr-card-story.pr-mode-dark .pr-header__nav--desktop .pr-menu .sub-menu {
  background: linear-gradient(180deg, #24141e 0%, #1a1018 100%) !important;
  border: 1px solid rgba(var(--pr-rose-rgb), 0.25);
  box-shadow: 0 16px 40px rgba(20, 8, 14, 0.45);
}

body.pr-card-story.pr-mode-dark .pr-nav-toggle {
  border-color: rgba(var(--pr-rose-rgb), 0.35);
  background: rgba(255, 255, 255, 0.06);
}

body.pr-card-story.pr-mode-dark .pr-nav-toggle__bars span {
  background: #f7f2f4;
}

body.pr-card-story.pr-mode-light .pr-header,
body.pr-card-story.pr-mode-light .pr-footer {
  background: rgba(255, 255, 255, 0.96) !important;
  border-color: rgba(var(--pr-rose-rgb), 0.25) !important;
}

body.pr-card-story.pr-mode-light .pr-header a:hover,
body.pr-card-story.pr-mode-light .pr-footer a:hover {
  color: var(--pr-rose);
}

/* ---- Titluri secțiune (stil story) ---- */
body.pr-card-story.pr-mode-dark .pr-section-head__kicker {
  display: inline-flex;
  align-items: center;
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  border: 1px solid rgba(var(--pr-rose-rgb), 0.55);
  background: rgba(20, 10, 16, 0.55);
  color: var(--pr-rose);
  box-shadow: 0 0 16px rgba(var(--pr-rose-rgb), 0.2);
  letter-spacing: 0.06em;
}

body.pr-card-story.pr-mode-dark .pr-section-head__title {
  color: #fff;
  background: var(--pr-title-grad, linear-gradient(90deg, var(--pr-rose), #ffd60a));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 800;
  letter-spacing: -0.02em;
}

body.pr-card-story.pr-mode-dark .pr-section-head__lead {
  color: rgba(247, 242, 244, 0.68);
}

body.pr-card-story.pr-mode-dark .pr-hero__copy {
  position: relative;
  z-index: 4;
  isolation: isolate;
}

body.pr-card-story.pr-mode-dark .pr-hero__brand {
  color: #fff;
  line-height: 1.22;
  padding-top: 0.18em;
  padding-bottom: 0.22em;
  overflow: visible;
  position: relative;
  z-index: 2;
  /* evită tăierea glifelor (Fraunces italic) sub overflow:hidden pe .pr-hero */
  -webkit-text-fill-color: #fff;
}

body.pr-card-story.pr-mode-dark .pr-hero__brand::before {
  content: none !important;
  display: none !important;
}

body.pr-card-story.pr-mode-dark .pr-hero__brand em {
  display: inline-block;
  position: relative;
  z-index: 1;
  padding: 0.1em 0.06em 0.14em;
  line-height: 1.2;
  /* degrade titlu skin (roz → companion) — copy e izolat, fără bară neagră */
  background-image: var(
    --pr-title-grad,
    linear-gradient(90deg, var(--pr-rose-dark, #d9167a), var(--pr-rose, #ff2d95), var(--pr-companion, #ffd60a))
  ) !important;
  background-color: transparent !important;
  -webkit-background-clip: text !important;
  background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  color: transparent !important;
  background-size: 100% 100%;
  background-repeat: no-repeat;
}

body.pr-card-story.pr-mode-dark .pr-btn--outline {
  border-color: rgba(var(--pr-rose-rgb), 0.65);
  color: #fff;
  background: rgba(20, 10, 16, 0.45);
  box-shadow: 0 0 18px rgba(var(--pr-rose-rgb), 0.18);
}

body.pr-card-story.pr-mode-dark .pr-btn--outline:hover {
  background-image: var(--pr-gradient-rose);
  color: var(--pr-btn-text, #111);
  border-color: transparent;
}

/* ---- Deviații de culoare pe secțiuni (home + woo) ---- */
body.pr-card-story.pr-mode-dark .pr-pillars {
  background: linear-gradient(180deg, rgba(40, 16, 32, 0.35) 0%, transparent 100%);
}

body.pr-card-story.pr-mode-dark .pr-occasions {
  background: linear-gradient(180deg, rgba(24, 12, 28, 0.45) 0%, rgba(18, 10, 20, 0.2) 100%);
}

body.pr-card-story.pr-mode-dark .pr-featured--home:nth-of-type(odd) {
  background: linear-gradient(180deg, rgba(32, 14, 28, 0.4) 0%, transparent 92%);
  padding-bottom: 1.25rem;
}

body.pr-card-story.pr-mode-dark .pr-featured--home:nth-of-type(even) {
  background: linear-gradient(180deg, rgba(18, 12, 32, 0.38) 0%, transparent 92%);
  padding-bottom: 1.25rem;
}

/* Ultima bandă featured: degradé continuu spre trust (fără linie tăiată) */
body.pr-card-story.pr-mode-dark .pr-featured--home:last-of-type {
  padding-bottom: 2rem;
  background: linear-gradient(
    180deg,
    rgba(32, 14, 28, 0.38) 0%,
    rgba(22, 10, 20, 0.2) 55%,
    transparent 100%
  );
}

/* Fără degrade pe banda de pași — altfel apare smear roz lângă chenar */
body.pr-card-story.pr-mode-dark .pr-home-steps {
  background: transparent !important;
}

/* Continuă fundalul paginii (fără bandă care taie degrade-ul de sus) */
body.pr-card-story.pr-mode-dark .pr-home-trust {
  background: transparent !important;
  padding-top: 3rem;
}

body.pr-card-story.pr-mode-dark .pr-hero {
  box-shadow: none;
}

/* PDP / shop: panouri ușor diferite față de fundal */
body.pr-card-story.pr-mode-dark.single-product #pr-main,
body.pr-card-story.pr-mode-dark.pr-product-view #pr-main,
body.pr-card-story.pr-mode-dark.pr-shop-view #pr-main,
body.pr-card-story.pr-mode-dark.archive #pr-main {
  background: linear-gradient(
    180deg,
    rgba(32, 14, 26, 0.55) 0%,
    rgba(18, 10, 16, 0.2) 40%,
    transparent 100%
  );
}

/* ---- Doar carduri colecții + pastile (nu secțiunea întreagă) ---- */
body.pr-card-story .pr-pillar {
  border: 1px solid rgba(var(--pr-rose-rgb), 0.5) !important;
  border-radius: 22px !important;
  overflow: hidden;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.2);
  transition: box-shadow 0.28s ease, border-color 0.28s ease;
}

body.pr-card-story .pr-pillar:hover {
  border-color: var(--pr-rose) !important;
  box-shadow: 0 0 28px rgba(var(--pr-rose-rgb), 0.4), 0 12px 32px rgba(0, 0, 0, 0.3);
}

/* Un singur degrade pe tot cardul — fără al doilea pe __body */
body.pr-card-story.pr-mode-dark .pr-pillar::after {
  background: linear-gradient(
    180deg,
    transparent 28%,
    rgba(36, 18, 28, 0.45) 52%,
    #24141e 78%,
    #1a1018 100%
  );
}

body.pr-card-story.pr-mode-dark .pr-pillar__body {
  background: transparent;
}

body.pr-card-story.pr-mode-dark .pr-pillar__name {
  color: #fff;
}

body.pr-card-story.pr-mode-dark .pr-pillar__blurb {
  color: rgba(255, 255, 255, 0.65);
}

body.pr-card-story.pr-mode-light .pr-pillar {
  border-color: rgba(var(--pr-rose-rgb), 0.55) !important;
}

body.pr-card-story.pr-mode-light .pr-pillar::after {
  background: linear-gradient(
    180deg,
    transparent 32%,
    rgba(255, 255, 255, 0.35) 55%,
    rgba(var(--pr-rose-rgb), 0.1) 78%,
    var(--pr-cream) 100%
  );
}

body.pr-card-story.pr-mode-light .pr-pillar__body {
  background: transparent;
  text-shadow: none;
}

body.pr-card-story.pr-mode-light .pr-pillar__name {
  color: var(--pr-ink);
}

body.pr-card-story .pr-occasion {
  border: 1px solid rgba(var(--pr-rose-rgb), 0.5) !important;
  border-radius: 999px !important;
  transition: box-shadow 0.25s ease, border-color 0.25s ease;
}

body.pr-card-story.pr-mode-dark .pr-occasion {
  background: linear-gradient(145deg, #2a1824, #1a1018) !important;
  color: #fff !important;
}

body.pr-card-story.pr-mode-light .pr-occasion {
  background: linear-gradient(145deg, #fff, var(--pr-cream)) !important;
  color: var(--pr-ink) !important;
  border-color: rgba(var(--pr-rose-rgb), 0.55) !important;
}

body.pr-card-story .pr-occasion:hover {
  border-color: var(--pr-rose) !important;
  box-shadow: 0 0 20px rgba(var(--pr-rose-rgb), 0.35);
  color: var(--pr-rose) !important;
}

/* PDP summary — nuanță diferită față de fundalul paginii */
body.pr-card-story.pr-mode-dark .woocommerce div.product .summary,
body.pr-card-story.pr-mode-dark .pr-product-layout__side {
  border: 1px solid rgba(var(--pr-rose-rgb), 0.3);
  border-radius: 20px;
  padding: 1rem 1.1rem;
  background: linear-gradient(165deg, #2a1824 0%, #1c121a 55%, #181018 100%);
  box-shadow: 0 12px 36px rgba(20, 8, 14, 0.35);
}

body.pr-card-story.pr-mode-dark .woocommerce-Tabs-panel {
  border: 1px solid rgba(var(--pr-rose-rgb), 0.22);
  border-radius: 20px;
  padding: 1rem 1.1rem;
  background: linear-gradient(165deg, #22141e 0%, #181018 100%);
}

/* Related / upsells: același left/right ca tabs / buy deasupra */
body.pr-card-story .related.products,
body.pr-card-story .upsells.products,
body.pr-card-story .woocommerce div.product.pr-product-layout .related,
body.pr-card-story .woocommerce div.product.pr-product-layout .upsells {
  border: 1px solid rgba(var(--pr-rose-rgb), 0.28) !important;
  border-radius: 20px !important;
  padding: 1.25rem !important;
  margin: 2rem 0 1.75rem !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
  max-width: 100% !important;
  width: 100% !important;
  box-sizing: border-box !important;
  overflow: hidden;
  float: none !important;
  position: relative;
  left: auto !important;
  right: auto !important;
  background: linear-gradient(165deg, #22141e 0%, #181018 100%);
}

/* Desktop: related/upsells nu depășesc coloana main */
@media (min-width: 1024px) {
  body.pr-card-story.pr-product-view .pr-product-layout__main > .related,
  body.pr-card-story.pr-product-view .pr-product-layout__main > .upsells,
  body.pr-card-story.pr-product-view .related.products,
  body.pr-card-story.pr-product-view .upsells.products {
    width: 100% !important;
    max-width: 100% !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    padding: 1.25rem !important;
    box-sizing: border-box !important;
  }

  body.pr-card-story.pr-product-view .related ul.products li.product,
  body.pr-card-story.pr-product-view .upsells ul.products li.product {
    border: 1px solid rgba(255, 255, 255, 0.16) !important;
    min-width: 0 !important;
  }
}

body.pr-card-story.pr-mode-light .related.products,
body.pr-card-story.pr-mode-light .upsells.products {
  background: linear-gradient(180deg, #fff 0%, var(--pr-cream) 100%) !important;
  border-color: rgba(var(--pr-rose-rgb), 0.35) !important;
}

body.pr-card-story .related.products > h2,
body.pr-card-story .upsells.products > h2 {
  margin: 0 0 1.1rem !important;
  padding: 0 !important;
}

body.pr-card-story .related.products ul.products,
body.pr-card-story .upsells.products ul.products {
  margin: 0 !important;
  padding: 0 !important;
  width: 100% !important;
  max-width: 100% !important;
}

/* Mobil/tablet related+upsells: padding forțat (override pe padding:0 din woocommerce.css) */
@media (max-width: 1023px) {
  body.pr-card-story.pr-product-view .related.products,
  body.pr-card-story.pr-product-view .upsells.products,
  body.pr-card-story.single-product .related.products,
  body.pr-card-story.single-product .upsells.products,
  body.pr-card-story.pr-product-view .woocommerce div.product.pr-product-layout .related,
  body.pr-card-story.pr-product-view .woocommerce div.product.pr-product-layout .upsells {
    padding: 1.05rem !important;
    margin: 1.35rem 0 1.5rem !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
  }

  body.pr-card-story.pr-product-view .related.products ul.products,
  body.pr-card-story.pr-product-view .upsells.products ul.products {
    grid-template-columns: 1fr !important;
    gap: 0.9rem !important;
    width: 100% !important;
  }

  body.pr-card-story.pr-product-view .related.products ul.products li.product,
  body.pr-card-story.pr-product-view .upsells.products ul.products li.product {
    padding: 0.75rem !important;
    border: 1px solid rgba(var(--pr-rose-rgb), 0.5) !important;
    border-radius: 18px !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
    width: 100% !important;
  }

  body.pr-card-story.pr-product-view .related.products ul.products li.product a img,
  body.pr-card-story.pr-product-view .upsells.products ul.products li.product a img,
  body.pr-card-story.pr-product-view .related.products ul.products li.product img.attachment-woocommerce_thumbnail,
  body.pr-card-story.pr-product-view .upsells.products ul.products li.product img.attachment-woocommerce_thumbnail {
    border-radius: 12px !important;
    border-bottom: none !important;
  }

  body.pr-card-story.pr-product-view .related.products ul.products li.product .button,
  body.pr-card-story.pr-product-view .related.products ul.products li.product a.button,
  body.pr-card-story.pr-product-view .upsells.products ul.products li.product .button,
  body.pr-card-story.pr-product-view .upsells.products ul.products li.product a.button {
    margin: 0.35rem 0 0 !important;
    width: 100% !important;
  }
}

body.pr-card-story.pr-mode-light .woocommerce div.product .summary,
body.pr-card-story.pr-mode-light .pr-product-layout__side {
  border: 1.5px solid rgba(var(--pr-rose-rgb), 0.4);
  border-radius: 20px;
  padding: 1rem 1.1rem;
  background: linear-gradient(180deg, #fff 0%, var(--pr-cream) 100%);
}

body.pr-card-story.pr-mode-dark .woocommerce div.product .product_title {
  color: #fff;
}

body.pr-card-story.pr-mode-dark .woocommerce div.product p.price,
body.pr-card-story.pr-mode-dark .woocommerce div.product .price {
  color: var(--pr-rose) !important;
}

/* ========== PDP dark: contrast pe cantitate / ATC / swatch / text ========== */
body.pr-card-story.pr-mode-dark .woocommerce div.product .woocommerce-product-details__short-description,
body.pr-card-story.pr-mode-dark .woocommerce div.product .woocommerce-product-details__short-description p,
body.pr-card-story.pr-mode-dark .woocommerce div.product .woocommerce-product-details__short-description li {
  color: rgba(255, 245, 248, 0.88) !important;
}

body.pr-card-story.pr-mode-dark .woocommerce div.product .woocommerce-product-details__short-description strong,
body.pr-card-story.pr-mode-dark .woocommerce div.product .woocommerce-product-details__short-description b {
  color: #fff !important;
}

body.pr-card-story.pr-mode-dark .woocommerce div.product form.cart .variations td.label,
body.pr-card-story.pr-mode-dark .woocommerce div.product form.cart .variations td.label label {
  color: rgba(255, 245, 248, 0.9) !important;
}

/* Swatch-uri: bordură + text clare pe fundal dark */
body.pr-card-story.pr-mode-dark .pr-swatch {
  background: #2a1a24 !important;
  border-color: rgba(255, 255, 255, 0.35) !important;
  color: #fff !important;
  box-shadow: none;
}

body.pr-card-story.pr-mode-dark .pr-swatch:hover:not(.is-disabled) {
  border-color: var(--pr-rose) !important;
  color: var(--pr-rose) !important;
  background: #342028 !important;
}

body.pr-card-story.pr-mode-dark .pr-swatch.is-selected {
  background: rgba(var(--pr-rose-rgb), 0.22) !important;
  border-color: var(--pr-rose) !important;
  color: #fff !important;
  box-shadow: 0 0 0 1px var(--pr-rose), 0 0 14px rgba(var(--pr-rose-rgb), 0.35) !important;
}

/* Cantitate: numărul + panoul trebuie să se vadă */
body.pr-card-story.pr-mode-dark .woocommerce div.product form.cart .quantity {
  background: #2e1c26 !important;
  border: 1.5px solid rgba(var(--pr-rose-rgb), 0.55) !important;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.06);
}

body.pr-card-story.pr-mode-dark .woocommerce div.product form.cart .quantity .qty,
body.pr-card-story.pr-mode-dark .woocommerce div.product form.cart .quantity input.qty {
  background: #3a2430 !important;
  color: #fff !important;
  -webkit-text-fill-color: #fff !important;
  caret-color: #fff;
  border-left-color: rgba(255, 255, 255, 0.2) !important;
  border-right-color: rgba(255, 255, 255, 0.2) !important;
  font-weight: 800 !important;
  font-size: 1.05rem !important;
  text-align: center;
}

body.pr-card-story.pr-mode-dark .pr-qty-btn {
  background: #2a1a24 !important;
  color: #fff !important;
}

body.pr-card-story.pr-mode-dark .pr-qty-btn:hover {
  background: rgba(var(--pr-rose-rgb), 0.28) !important;
  color: var(--pr-rose) !important;
}

/* ATC PDP dark */
body.pr-card-story.pr-mode-dark .woocommerce div.product form.cart .single_add_to_cart_button {
  background-image: var(--pr-gradient-rose) !important;
  color: var(--pr-btn-text, #111) !important;
  border-radius: 999px !important;
  filter: none !important;
  font-weight: 800 !important;
  width: 100% !important;
  max-width: 100% !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
  border: 1.5px solid rgba(var(--pr-companion-rgb), 0.9) !important;
  box-shadow:
    -5px 0 12px rgba(var(--pr-rose-rgb), 0.42),
    3px 0 10px rgba(var(--pr-companion-rgb), 0.45),
    0 0 10px rgba(var(--pr-companion-rgb), 0.28) !important;
}

body.pr-card-story.pr-mode-dark .woocommerce div.product form.cart .single_add_to_cart_button:hover {
  filter: none !important;
  border-color: rgba(var(--pr-companion-rgb), 1) !important;
  box-shadow:
    -5px 0 13px rgba(var(--pr-rose-rgb), 0.48),
    3px 0 11px rgba(var(--pr-companion-rgb), 0.52),
    0 0 11px rgba(var(--pr-companion-rgb), 0.32) !important;
}

/* Wishlist / favorite */
body.pr-card-story.pr-mode-dark .pr-wishlist-btn {
  background: transparent !important;
  border-color: rgba(var(--pr-rose-rgb), 0.55) !important;
  color: rgba(255, 245, 248, 0.9) !important;
}

body.pr-card-story.pr-mode-dark .pr-wishlist-btn:hover,
body.pr-card-story.pr-mode-dark .pr-wishlist-btn.is-active {
  border-color: var(--pr-rose) !important;
  color: var(--pr-rose) !important;
  background: rgba(var(--pr-rose-rgb), 0.12) !important;
}

body.pr-card-story.pr-mode-dark .woocommerce div.product form.cart .reset_variations {
  color: rgba(255, 245, 248, 0.7) !important;
}

/* ========== Mini-cart dark: contrast pe qty / linii / CTA ========== */
body.pr-card-story.pr-mode-dark .pr-mini-cart__panel,
body.pr-card-story.pr-mode-dark .pr-mini-cart__contents,
body.pr-card-story.pr-mode-dark .pr-mini-cart__footer {
  background: linear-gradient(180deg, #24141e 0%, #1a1018 100%) !important;
  border-color: rgba(var(--pr-rose-rgb), 0.4) !important;
  color: #fff;
}

body.pr-card-story.pr-mode-dark .pr-mini-cart__title {
  color: #fff !important;
}

body.pr-card-story.pr-mode-dark .pr-mini-cart__close {
  color: rgba(255, 245, 248, 0.75) !important;
}

body.pr-card-story.pr-mode-dark .pr-mini-cart__close:hover {
  color: #fff !important;
  background: rgba(var(--pr-rose-rgb), 0.2) !important;
}

body.pr-card-story.pr-mode-dark .pr-mini-cart__cols {
  color: rgba(255, 245, 248, 0.55) !important;
  border-bottom-color: rgba(255, 255, 255, 0.14) !important;
}

body.pr-card-story.pr-mode-dark .pr-mini-cart__item {
  border-bottom-color: rgba(255, 255, 255, 0.14) !important;
}

body.pr-card-story.pr-mode-dark .pr-mini-cart__thumb,
body.pr-card-story.pr-mode-dark .pr-mini-cart__thumb a,
body.pr-card-story.pr-mode-dark .pr-mini-cart__thumb img {
  background: #2a1a24 !important;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.1);
}

body.pr-card-story.pr-mode-dark .pr-mini-cart__name a {
  color: var(--pr-rose) !important;
}

body.pr-card-story.pr-mode-dark .pr-mini-cart__price,
body.pr-card-story.pr-mode-dark .pr-mini-cart__line-total,
body.pr-card-story.pr-mode-dark .pr-mini-cart__subtotal,
body.pr-card-story.pr-mode-dark .pr-mini-cart__subtotal strong {
  color: #fff !important;
}

body.pr-card-story.pr-mode-dark .pr-mini-cart__price del {
  color: rgba(255, 245, 248, 0.45) !important;
}

body.pr-card-story.pr-mode-dark .pr-mini-cart .variation,
body.pr-card-story.pr-mode-dark .pr-mini-cart dl.variation {
  color: rgba(255, 245, 248, 0.65) !important;
}

/* Qty: fundal ridicat + text alb (nu pill bej + ink deschis) */
body.pr-card-story.pr-mode-dark .pr-mini-cart__qty {
  background: #2e1c26 !important;
  border: 1.5px solid rgba(var(--pr-rose-rgb), 0.55) !important;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.06);
}

body.pr-card-story.pr-mode-dark .pr-mini-cart__qty-btn {
  color: #fff !important;
}

body.pr-card-story.pr-mode-dark .pr-mini-cart__qty-btn:hover {
  color: var(--pr-rose) !important;
  background: rgba(var(--pr-rose-rgb), 0.22) !important;
}

body.pr-card-story.pr-mode-dark .pr-mini-cart__qty-input {
  color: #fff !important;
  -webkit-text-fill-color: #fff !important;
  caret-color: #fff;
  font-weight: 800 !important;
}

body.pr-card-story.pr-mode-dark .pr-mini-cart__remove {
  color: rgba(255, 245, 248, 0.7) !important;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 10px;
}

body.pr-card-story.pr-mode-dark .pr-mini-cart__remove:hover {
  color: var(--pr-rose) !important;
  background: rgba(var(--pr-rose-rgb), 0.15) !important;
  border-color: var(--pr-rose);
}

body.pr-card-story.pr-mode-dark .pr-mini-cart__save {
  background: rgba(var(--pr-rose-rgb), 0.18) !important;
  color: var(--pr-rose) !important;
}

body.pr-card-story.pr-mode-dark .pr-mini-cart__footer {
  border-top-color: rgba(255, 255, 255, 0.14) !important;
}

body.pr-card-story.pr-mode-dark .pr-mini-cart__footer .pr-fs-bar,
body.pr-card-story.pr-mode-dark .pr-mini-cart__footer .pr-fs-box {
  background: #2a1a24 !important;
  border: 1px solid rgba(255, 255, 255, 0.16) !important;
  border-radius: 12px !important;
  overflow: hidden;
  color: rgba(255, 245, 248, 0.9);
}

body.pr-card-story.pr-mode-dark .pr-mini-cart__footer .pr-fs-bar__msg,
body.pr-card-story.pr-mode-dark .pr-mini-cart__footer .pr-fs-box p {
  color: rgba(255, 245, 248, 0.88) !important;
}

body.pr-card-story.pr-mode-dark .pr-mini-cart__footer .pr-fs-bar__msg strong {
  color: var(--pr-rose) !important;
}

body.pr-card-story.pr-mode-dark .pr-mini-cart__footer .pr-fs-bar__track {
  background: rgba(255, 255, 255, 0.22) !important;
  height: 8px !important;
}

body.pr-card-story.pr-mode-dark .pr-mini-cart__footer .pr-fs-bar__fill {
  background-color: var(--pr-rose, #ff2d95) !important;
  background-image: linear-gradient(
    90deg,
    var(--pr-rose-dark, #d9167a) 0%,
    var(--pr-rose, #ff2d95) 48%,
    var(--pr-companion, #ffd60a) 100%
  ) !important;
  background-size: 100% 100% !important;
  background-repeat: no-repeat !important;
  background-position: left center !important;
}

body.pr-card-story.pr-mode-dark .pr-mini-cart__checkout,
body.pr-card-story.pr-mode-dark .pr-btn--checkout {
  background-image: var(--pr-gradient-rose) !important;
  color: var(--pr-btn-text, #111) !important;
  border: none !important;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.12),
    0 6px 22px rgba(var(--pr-rose-rgb), 0.5) !important;
  filter: brightness(1.08);
  font-weight: 800 !important;
}

body.pr-card-story.pr-mode-dark .pr-mini-cart__checkout:hover,
body.pr-card-story.pr-mode-dark .pr-btn--checkout:hover {
  filter: brightness(1.14);
  background-image: var(--pr-gradient-rose) !important;
  color: var(--pr-btn-text, #111) !important;
}

body.pr-card-story.pr-mode-dark .pr-mini-cart__cart-link {
  color: rgba(255, 245, 248, 0.75) !important;
}

body.pr-card-story.pr-mode-dark .pr-mini-cart__cart-link:hover {
  color: var(--pr-rose) !important;
}

body.pr-card-story.pr-mode-dark .pr-mini-cart__empty p {
  color: rgba(255, 245, 248, 0.75) !important;
}

/* ========== Cart + Checkout dark: aceleași contrast fixes ========== */
body.pr-card-story.pr-mode-dark.pr-cart-view .pr-entry__title,
body.pr-card-story.pr-mode-dark.pr-checkout-view .pr-entry__title {
  color: #fff !important;
}

body.pr-card-story.pr-mode-dark.pr-cart-view .pr-cart-card,
body.pr-card-story.pr-mode-dark.pr-cart-view .cart_totals,
body.pr-card-story.pr-mode-dark.pr-cart-view .cross-sells,
body.pr-card-story.pr-mode-dark.pr-cart-view .pr-cart-boxes .pr-box,
body.pr-card-story.pr-mode-dark.pr-cart-view .pr-cart-boxes .pr-widget--pay,
body.pr-card-story.pr-mode-dark.pr-cart-view .pr-cart-actions,
body.pr-card-story.pr-mode-dark.pr-cart-view .pr-withdrawal-notice--cart {
  background: linear-gradient(165deg, #2a1824 0%, #1c121a 100%) !important;
  border-color: rgba(var(--pr-rose-rgb), 0.35) !important;
  color: #fff;
  box-shadow: 0 12px 32px rgba(20, 8, 14, 0.35) !important;
}

body.pr-card-story.pr-mode-dark.pr-cart-view .pr-cart-card__name,
body.pr-card-story.pr-mode-dark.pr-cart-view .pr-cart-card__unit,
body.pr-card-story.pr-mode-dark.pr-cart-view .pr-cart-card__total strong,
body.pr-card-story.pr-mode-dark.pr-cart-view .cart_totals h2,
body.pr-card-story.pr-mode-dark.pr-cart-view .cross-sells > h2,
body.pr-card-story.pr-mode-dark.pr-cart-view .cart_totals th,
body.pr-card-story.pr-mode-dark.pr-cart-view .cart_totals td {
  color: #fff !important;
}

body.pr-card-story.pr-mode-dark.pr-cart-view .pr-cart-card__name a {
  color: var(--pr-rose) !important;
}

body.pr-card-story.pr-mode-dark.pr-cart-view .pr-cart-card__name .variation,
body.pr-card-story.pr-mode-dark.pr-cart-view .pr-cart-card__label {
  color: rgba(255, 245, 248, 0.6) !important;
}

body.pr-card-story.pr-mode-dark.pr-cart-view .pr-cart-card__thumb {
  background: #2a1a24 !important;
  border-color: rgba(255, 255, 255, 0.12) !important;
}

body.pr-card-story.pr-mode-dark.pr-cart-view .cart_totals th,
body.pr-card-story.pr-mode-dark.pr-cart-view .cart_totals td {
  border-bottom-color: rgba(255, 255, 255, 0.12) !important;
}

/* Cart qty */
body.pr-card-story.pr-mode-dark.pr-cart-view .pr-cart-form .quantity,
body.pr-card-story.pr-mode-dark.pr-cart-view .pr-cart-form .pr-cart-qty {
  background: #2e1c26 !important;
  border: 1.5px solid rgba(var(--pr-rose-rgb), 0.55) !important;
}

body.pr-card-story.pr-mode-dark.pr-cart-view .pr-cart-form .quantity .qty,
body.pr-card-story.pr-mode-dark.pr-cart-view .pr-cart-form .pr-cart-qty .qty {
  background: #3a2430 !important;
  color: #fff !important;
  -webkit-text-fill-color: #fff !important;
  border-left-color: rgba(255, 255, 255, 0.2) !important;
  border-right-color: rgba(255, 255, 255, 0.2) !important;
}

body.pr-card-story.pr-mode-dark.pr-cart-view .pr-cart-form .quantity .pr-qty-btn,
body.pr-card-story.pr-mode-dark.pr-cart-view .pr-cart-form .pr-cart-qty .pr-qty-btn {
  background: #2a1a24 !important;
  color: #fff !important;
}

body.pr-card-story.pr-mode-dark.pr-cart-view .pr-cart-form .quantity .pr-qty-btn:hover,
body.pr-card-story.pr-mode-dark.pr-cart-view .pr-cart-form .pr-cart-qty .pr-qty-btn:hover {
  background: rgba(var(--pr-rose-rgb), 0.28) !important;
  color: var(--pr-rose) !important;
}

body.pr-card-story.pr-mode-dark.pr-cart-view a.pr-cart-card__remove.remove {
  background: rgba(var(--pr-rose-rgb), 0.14) !important;
  border-color: rgba(var(--pr-rose-rgb), 0.5) !important;
  color: var(--pr-rose) !important;
}

body.pr-card-story.pr-mode-dark.pr-cart-view a.pr-cart-card__remove.remove:hover,
body.pr-card-story.pr-mode-dark.pr-cart-view a.pr-cart-card__remove.remove:focus {
  background: rgba(var(--pr-rose-rgb), 0.25) !important;
  border-color: var(--pr-rose) !important;
  color: #fff !important;
}

body.pr-card-story.pr-mode-dark.pr-cart-view .pr-cart-actions__coupon .input-text,
body.pr-card-story.pr-mode-dark.pr-cart-view .pr-cart-form .coupon .input-text {
  background: #2a1a24 !important;
  border-color: rgba(255, 255, 255, 0.22) !important;
  color: #fff !important;
}

body.pr-card-story.pr-mode-dark.pr-cart-view .pr-cart-form .pr-fs-bar,
body.pr-card-story.pr-mode-dark.pr-cart-view .pr-fs-bar {
  background: #2a1a24 !important;
  border: 1px solid rgba(255, 255, 255, 0.16) !important;
  border-radius: 14px !important;
  overflow: hidden;
}

body.pr-card-story.pr-mode-dark.pr-cart-view .pr-fs-bar__msg {
  color: rgba(255, 245, 248, 0.9) !important;
}

body.pr-card-story.pr-mode-dark.pr-cart-view .pr-fs-bar__msg strong {
  color: var(--pr-rose) !important;
}

body.pr-card-story.pr-mode-dark.pr-cart-view .pr-fs-bar__track {
  background: rgba(255, 255, 255, 0.18) !important;
}

body.pr-card-story.pr-mode-dark.pr-cart-view .pr-fs-bar__fill {
  background-color: var(--pr-rose, #ff2d95) !important;
  background-image: linear-gradient(
    90deg,
    var(--pr-rose-dark, #d9167a) 0%,
    var(--pr-rose, #ff2d95) 48%,
    var(--pr-companion, #ffd60a) 100%
  ) !important;
  background-size: 100% 100% !important;
  background-repeat: no-repeat !important;
  background-position: left center !important;
}

body.pr-card-story.pr-mode-dark.pr-cart-view .wc-proceed-to-checkout a.checkout-button {
  background-image: var(--pr-gradient-rose) !important;
  color: var(--pr-btn-text, #111) !important;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.12),
    0 6px 22px rgba(var(--pr-rose-rgb), 0.5) !important;
  filter: brightness(1.08);
  font-weight: 800 !important;
}

/* Checkout panels + forms */
body.pr-card-story.pr-mode-dark.pr-checkout-view .pr-checkout__block,
body.pr-card-story.pr-mode-dark.pr-checkout-view .woocommerce-form-login,
body.pr-card-story.pr-mode-dark.pr-checkout-view .woocommerce-form-coupon-toggle,
body.pr-card-story.pr-mode-dark.pr-checkout-view form.checkout_coupon.woocommerce-form-coupon,
body.pr-card-story.pr-mode-dark.pr-checkout-view .pr-checkout__review,
body.pr-card-story.pr-mode-dark.pr-checkout-view .wc-block-components-main,
body.pr-card-story.pr-mode-dark.pr-checkout-view .wc-block-checkout__main,
body.pr-card-story.pr-mode-dark.pr-checkout-view .wc-block-components-sidebar,
body.pr-card-story.pr-mode-dark.pr-checkout-view .wc-block-checkout__sidebar {
  background: linear-gradient(165deg, #2a1824 0%, #1c121a 100%) !important;
  border-color: rgba(var(--pr-rose-rgb), 0.35) !important;
  color: #fff;
  box-shadow: 0 12px 32px rgba(20, 8, 14, 0.35) !important;
}

body.pr-card-story.pr-mode-dark.pr-checkout-view .woocommerce-billing-fields > h3,
body.pr-card-story.pr-mode-dark.pr-checkout-view .woocommerce-shipping-fields > h3,
body.pr-card-story.pr-mode-dark.pr-checkout-view .woocommerce-additional-fields > h3,
body.pr-card-story.pr-mode-dark.pr-checkout-view .pr-checkout__review-title {
  color: #fff !important;
}

body.pr-card-story.pr-mode-dark.pr-checkout-view .pr-checkout .form-row label,
body.pr-card-story.pr-mode-dark.pr-checkout-view .woocommerce-form-coupon-toggle .woocommerce-info,
body.pr-card-story.pr-mode-dark.pr-checkout-view .pr-checkout-lead,
body.pr-card-story.pr-mode-dark.pr-checkout-view .pr-checkout-trust__list {
  color: rgba(255, 245, 248, 0.88) !important;
}

body.pr-card-story.pr-mode-dark.pr-checkout-view .pr-checkout .input-text,
body.pr-card-story.pr-mode-dark.pr-checkout-view .pr-checkout select,
body.pr-card-story.pr-mode-dark.pr-checkout-view .pr-checkout textarea,
body.pr-card-story.pr-mode-dark.pr-checkout-view .select2-container .select2-selection--single,
body.pr-card-story.pr-mode-dark.pr-checkout-view form.checkout_coupon .input-text {
  background: #2a1a24 !important;
  border-color: rgba(255, 255, 255, 0.22) !important;
  color: #fff !important;
}

body.pr-card-story.pr-mode-dark.pr-checkout-view .pr-checkout .input-text:focus,
body.pr-card-story.pr-mode-dark.pr-checkout-view .pr-checkout select:focus,
body.pr-card-story.pr-mode-dark.pr-checkout-view .pr-checkout textarea:focus {
  background: #342028 !important;
  border-color: var(--pr-rose) !important;
  color: #fff !important;
}

body.pr-card-story.pr-mode-dark.pr-checkout-view .select2-container--default .select2-selection--single .select2-selection__rendered {
  color: #fff !important;
}

body.pr-card-story.pr-mode-dark.pr-checkout-view .pr-checkout-trust {
  background: #2a1a24 !important;
  border-color: rgba(255, 255, 255, 0.14) !important;
}

body.pr-card-story.pr-mode-dark.pr-checkout-view .pr-fs-bar,
body.pr-card-story.pr-mode-dark.pr-checkout-view .pr-checkout__review .pr-fs-bar {
  background: #2a1a24 !important;
  border: 1px solid rgba(255, 255, 255, 0.16) !important;
  border-radius: 14px !important;
  overflow: hidden;
}

body.pr-card-story.pr-mode-dark.pr-checkout-view .pr-fs-bar__msg {
  color: rgba(255, 245, 248, 0.9) !important;
}

body.pr-card-story.pr-mode-dark.pr-checkout-view .pr-fs-bar__msg strong {
  color: var(--pr-rose) !important;
}

body.pr-card-story.pr-mode-dark.pr-checkout-view .pr-fs-bar__track {
  background: rgba(255, 255, 255, 0.18) !important;
}

body.pr-card-story.pr-mode-dark.pr-checkout-view .pr-fs-bar__fill {
  background-color: var(--pr-rose, #ff2d95) !important;
  background-image: linear-gradient(
    90deg,
    var(--pr-rose-dark, #d9167a) 0%,
    var(--pr-rose, #ff2d95) 48%,
    var(--pr-companion, #ffd60a) 100%
  ) !important;
  background-size: 100% 100% !important;
  background-repeat: no-repeat !important;
  background-position: left center !important;
}

body.pr-card-story.pr-mode-dark.pr-checkout-view .pr-fs-bar--ok {
  background: rgba(46, 125, 50, 0.18) !important;
  border-color: rgba(102, 187, 106, 0.45) !important;
}

body.pr-card-story.pr-mode-dark.pr-checkout-view .woocommerce-checkout-review-order-table th,
body.pr-card-story.pr-mode-dark.pr-checkout-view .woocommerce-checkout-review-order-table td,
body.pr-card-story.pr-mode-dark.pr-checkout-view .woocommerce-checkout-review-order-table .product-name,
body.pr-card-story.pr-mode-dark.pr-checkout-view .woocommerce-checkout-review-order-table .product-total {
  color: #fff !important;
  border-color: rgba(255, 255, 255, 0.12) !important;
}

body.pr-card-story.pr-mode-dark.pr-checkout-view .pr-checkout-item__meta .variation {
  color: rgba(255, 245, 248, 0.65) !important;
}

/* Checkout qty */
body.pr-card-story.pr-mode-dark.pr-checkout-view .pr-checkout-qty {
  background: #2e1c26 !important;
  border: 1.5px solid rgba(var(--pr-rose-rgb), 0.55) !important;
}

body.pr-card-story.pr-mode-dark.pr-checkout-view .pr-checkout-qty__btn {
  color: #fff !important;
}

body.pr-card-story.pr-mode-dark.pr-checkout-view .pr-checkout-qty__btn:hover {
  background: rgba(var(--pr-rose-rgb), 0.28) !important;
  color: var(--pr-rose) !important;
}

body.pr-card-story.pr-mode-dark.pr-checkout-view .pr-checkout-qty__input {
  background: #3a2430 !important;
  color: #fff !important;
  -webkit-text-fill-color: #fff !important;
  border-left-color: rgba(255, 255, 255, 0.2) !important;
  border-right-color: rgba(255, 255, 255, 0.2) !important;
}

body.pr-card-story.pr-mode-dark.pr-checkout-view .woocommerce-shipping-totals ul#shipping_method li,
body.pr-card-story.pr-mode-dark.pr-checkout-view #payment ul.payment_methods li {
  background: #2a1a24 !important;
  border-color: rgba(255, 255, 255, 0.16) !important;
  color: #fff !important;
}

body.pr-card-story.pr-mode-dark.pr-checkout-view .woocommerce-shipping-totals ul#shipping_method li label,
body.pr-card-story.pr-mode-dark.pr-checkout-view #payment ul.payment_methods li label {
  color: #fff !important;
}

body.pr-card-story.pr-mode-dark.pr-checkout-view #payment ul.payment_methods {
  border-bottom-color: rgba(255, 255, 255, 0.12) !important;
}

body.pr-card-story.pr-mode-dark.pr-checkout-view #payment div.payment_box {
  color: rgba(255, 245, 248, 0.7) !important;
}

body.pr-card-story.pr-mode-dark.pr-checkout-view #place_order,
body.pr-card-story.pr-mode-dark.pr-checkout-view .wc-block-components-checkout-place-order-button {
  background-image: var(--pr-gradient-rose) !important;
  color: var(--pr-btn-text, #111) !important;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.12),
    0 6px 22px rgba(var(--pr-rose-rgb), 0.5) !important;
  filter: brightness(1.08);
  font-weight: 800 !important;
}

body.pr-card-story.pr-mode-dark.pr-checkout-view #place_order:hover {
  filter: brightness(1.14);
}

body.pr-card-story.pr-mode-dark.pr-checkout-view .pr-breadcrumbs,
body.pr-card-story.pr-mode-dark.pr-cart-view .pr-breadcrumbs,
body.pr-card-story.pr-mode-dark.pr-checkout-view .woocommerce-breadcrumb,
body.pr-card-story.pr-mode-dark.pr-cart-view .woocommerce-breadcrumb,
body.pr-card-story.pr-mode-dark.pr-checkout-view .pr-breadcrumbs a,
body.pr-card-story.pr-mode-dark.pr-cart-view .pr-breadcrumbs a {
  color: rgba(255, 245, 248, 0.65) !important;
}

/* =============================================================================
   Dark polish (1.4.10) — doar ce lipsea, fără să atingem light
   ============================================================================= */

/* Card: fără linie/fundal sub poză */
body.pr-card-story.pr-mode-dark .woocommerce ul.products li.product a img,
body.pr-card-story.pr-mode-dark .woocommerce ul.products li.product img.attachment-woocommerce_thumbnail,
body.pr-card-story.pr-mode-dark .woocommerce ul.products li.product .attachment-woocommerce_thumbnail {
  background: transparent !important;
  border-color: transparent !important;
  box-shadow: none !important;
}

/* PDP galerie + foto: ZERO fundal — rămâne doar fundalul secțiunii */
body.pr-card-story .woocommerce div.product .woocommerce-product-gallery,
body.pr-card-story .woocommerce div.product .woocommerce-product-gallery .flex-viewport,
body.pr-card-story .woocommerce div.product .woocommerce-product-gallery__wrapper,
body.pr-card-story .woocommerce div.product .woocommerce-product-gallery__image,
body.pr-card-story .woocommerce div.product .woocommerce-product-gallery__image--placeholder,
body.pr-card-story .woocommerce div.product .woocommerce-product-gallery .flex-control-thumbs li,
body.pr-card-story .woocommerce div.product .woocommerce-product-gallery .flex-control-thumbs img,
body.pr-card-story .woocommerce div.product .woocommerce-product-gallery .wp-post-image,
body.pr-card-story .woocommerce div.product .woocommerce-product-gallery img {
  background: transparent !important;
  background-color: transparent !important;
  box-shadow: none !important;
}

/* Cantitate PDP: vizibilă + contur degrade */
body.pr-card-story.pr-mode-dark.single-product .quantity,
body.pr-card-story.pr-mode-dark.pr-product-view .quantity,
body.pr-card-story.pr-mode-dark .woocommerce div.product form.cart .quantity,
body.pr-card-story.pr-mode-dark .woocommerce div.product .quantity {
  background: linear-gradient(#2e1c26, #2e1c26) padding-box,
    var(--pr-gradient-rose) border-box !important;
  border: 1.5px solid transparent !important;
  box-shadow: 0 0 12px rgba(var(--pr-rose-rgb), 0.2);
}

body.pr-card-story.pr-mode-dark.single-product .quantity .qty,
body.pr-card-story.pr-mode-dark.pr-product-view .quantity .qty,
body.pr-card-story.pr-mode-dark .woocommerce div.product .quantity .qty,
body.pr-card-story.pr-mode-dark .woocommerce div.product .quantity input.qty,
body.pr-card-story.pr-mode-dark .woocommerce div.product .quantity input[type="number"] {
  background: #4a3040 !important;
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
  caret-color: #ffffff !important;
  opacity: 1 !important;
  font-weight: 800 !important;
  font-size: 1.1rem !important;
  border-left: 1px solid rgba(255, 255, 255, 0.22) !important;
  border-right: 1px solid rgba(255, 255, 255, 0.22) !important;
}

body.pr-card-story.pr-mode-dark.single-product .pr-qty-btn,
body.pr-card-story.pr-mode-dark.pr-product-view .pr-qty-btn,
body.pr-card-story.pr-mode-dark .woocommerce div.product .pr-qty-btn {
  background: #2a1a24 !important;
  color: #ffffff !important;
  opacity: 1 !important;
}

/* Drept de retragere: text vizibil pe panou dark (nu alb pe alb) */
body.pr-card-story.pr-mode-dark .pr-withdrawal-notice,
body.pr-card-story.pr-mode-dark.pr-checkout-view .pr-withdrawal-notice,
body.pr-card-story.pr-mode-dark.pr-cart-view .pr-withdrawal-notice {
  background: #2a1a24 !important;
  border: 1px solid rgba(255, 255, 255, 0.16) !important;
  color: rgba(255, 245, 248, 0.9) !important;
}

body.pr-card-story.pr-mode-dark .pr-withdrawal-notice__title,
body.pr-card-story.pr-mode-dark .pr-withdrawal-notice p,
body.pr-card-story.pr-mode-dark .pr-withdrawal-notice__links {
  color: rgba(255, 245, 248, 0.92) !important;
}

body.pr-card-story.pr-mode-dark .pr-withdrawal-notice a {
  color: var(--pr-rose) !important;
}

body.pr-card-story.pr-mode-dark .pr-withdrawal-notice__warn {
  color: #ffb4a2 !important;
}

/* Footer: titlu brand (era --pr-white = aproape negru pe dark) */
body.pr-card-story.pr-mode-dark .pr-footer__brand,
body.pr-card-story.pr-mode-dark .pr-footer__brand strong,
body.pr-card-story.pr-mode-dark .pr-footer__brand a,
body.pr-card-story.pr-mode-dark .pr-footer .pr-logo,
body.pr-card-story.pr-mode-dark .pr-footer .pr-logo em {
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
}

body.pr-card-story.pr-mode-dark .pr-footer__brand em,
body.pr-card-story.pr-mode-dark .pr-footer .pr-logo em {
  color: var(--pr-rose) !important;
  -webkit-text-fill-color: var(--pr-rose) !important;
}

/* v1.4.56 — contrast Light/Dark + protecție header + carduri mobile consistente. */

/* LIGHT: footer-ul este alb, deci toate textele trebuie să fie închise. */
body.pr-card-story.pr-mode-light .pr-footer {
  background: #ffffff !important;
  color: var(--pr-ink) !important;
  border-top-color: var(--pr-line) !important;
}
body.pr-card-story.pr-mode-light .pr-footer a,
body.pr-card-story.pr-mode-light .pr-footer-menu a,
body.pr-card-story.pr-mode-light .pr-footer-legal a,
body.pr-card-story.pr-mode-light .pr-footer-legal__cookie,
body.pr-card-story.pr-mode-light .pr-anpc__text,
body.pr-card-story.pr-mode-light .pr-anpc__note,
body.pr-card-story.pr-mode-light .pr-footer__copy {
  color: var(--pr-ink-soft, #5c5560) !important;
}
body.pr-card-story.pr-mode-light .pr-footer__brand strong,
body.pr-card-story.pr-mode-light .pr-anpc__title {
  color: var(--pr-ink, #2a2430) !important;
}
body.pr-card-story.pr-mode-light .pr-anpc__text a,
body.pr-card-story.pr-mode-light .pr-footer a:hover,
body.pr-card-story.pr-mode-light .pr-footer-legal a:hover,
body.pr-card-story.pr-mode-light .pr-footer-legal__cookie:hover {
  color: var(--pr-rose-dark, #9e3f5c) !important;
}
body.pr-card-story.pr-mode-light .pr-footer__copy,
body.pr-card-story.pr-mode-light .pr-footer-legal,
body.pr-card-story.pr-mode-light .pr-anpc {
  border-color: var(--pr-line) !important;
}

/* DARK: păstrăm contrast ridicat pe footer și zona legală. */
body.pr-card-story.pr-mode-dark .pr-footer,
body.pr-card-story.pr-mode-dark .pr-footer a,
body.pr-card-story.pr-mode-dark .pr-footer-legal a,
body.pr-card-story.pr-mode-dark .pr-footer-legal__cookie,
body.pr-card-story.pr-mode-dark .pr-anpc__title,
body.pr-card-story.pr-mode-dark .pr-anpc__text {
  color: rgba(255, 255, 255, 0.88) !important;
}
body.pr-card-story.pr-mode-dark .pr-anpc__text a,
body.pr-card-story.pr-mode-dark .pr-footer a:hover,
body.pr-card-story.pr-mode-dark .pr-footer-legal a:hover {
  color: var(--pr-rose) !important;
}


/* v1.4.63 — PDP mobile header safety.
   The unified archive/home stylesheet is not loaded on single-product pages,
   so keep the same header geometry here specifically for the PDP. */
@media (max-width: 639px) {
  body.single-product .pr-header .pr-container.pr-header__inner,
  body.pr-product-view .pr-header .pr-container.pr-header__inner {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 0.28rem !important;
    padding-left: max(0.72rem, env(safe-area-inset-left, 0px)) !important;
    padding-right: max(0.72rem, env(safe-area-inset-right, 0px)) !important;
    overflow: visible !important;
  }

  body.single-product .pr-header .pr-nav-toggle,
  body.pr-product-view .pr-header .pr-nav-toggle {
    flex: 0 0 34px !important;
    width: 34px !important;
    height: 34px !important;
  }

  body.single-product .pr-header .pr-logo,
  body.pr-product-view .pr-header .pr-logo,
  body.pr-card-story.single-product .pr-header .pr-logo,
  body.pr-card-story.pr-product-view .pr-header .pr-logo {
    display: block !important;
    flex: 0 1 126px !important;
    width: 126px !important;
    max-width: 126px !important;
    min-width: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
    overflow: visible !important;
    font-size: 0.93rem !important;
    line-height: 1.02 !important;
    white-space: normal !important;
  }

  body.single-product .pr-header .pr-logo em,
  body.pr-product-view .pr-header .pr-logo em,
  body.pr-card-story.single-product .pr-header .pr-logo em,
  body.pr-card-story.pr-product-view .pr-header .pr-logo em {
    display: inline !important;
    margin: 0 !important;
    padding: 0 !important;
    line-height: inherit !important;
    white-space: normal !important;
  }

  body.single-product .pr-header .pr-header__actions,
  body.pr-product-view .pr-header .pr-header__actions {
    display: flex !important;
    flex: 0 0 auto !important;
    gap: 0.08rem !important;
    min-width: 0 !important;
    max-width: none !important;
  }

  body.single-product .pr-header .pr-cart-link,
  body.single-product .pr-header .pr-search-open,
  body.single-product .pr-header .pr-account-link,
  body.single-product .pr-header .pr-wishlist-link,
  body.pr-product-view .pr-header .pr-cart-link,
  body.pr-product-view .pr-header .pr-search-open,
  body.pr-product-view .pr-header .pr-account-link,
  body.pr-product-view .pr-header .pr-wishlist-link {
    width: 34px !important;
    height: 34px !important;
    min-width: 34px !important;
  }
}

@media (max-width: 379px) {
  body.single-product .pr-header .pr-logo,
  body.pr-product-view .pr-header .pr-logo,
  body.pr-card-story.single-product .pr-header .pr-logo,
  body.pr-card-story.pr-product-view .pr-header .pr-logo {
    flex-basis: 112px !important;
    width: 112px !important;
    max-width: 112px !important;
    font-size: 0.84rem !important;
  }

  body.single-product .pr-header .pr-nav-toggle,
  body.pr-product-view .pr-header .pr-nav-toggle,
  body.single-product .pr-header .pr-cart-link,
  body.single-product .pr-header .pr-search-open,
  body.single-product .pr-header .pr-account-link,
  body.single-product .pr-header .pr-wishlist-link,
  body.pr-product-view .pr-header .pr-cart-link,
  body.pr-product-view .pr-header .pr-search-open,
  body.pr-product-view .pr-header .pr-account-link,
  body.pr-product-view .pr-header .pr-wishlist-link {
    width: 31px !important;
    height: 31px !important;
    min-width: 31px !important;
  }
}


/* v1.4.67 — Rouge Noir local overrides only.
   No changes to the shared Light/Dark engine or to any other skin. */
body.pr-card-story.pr-skin-mono {
  --pr-rose: #e31b4b !important;
  --pr-rose-rgb: 227,27,75 !important;
  --pr-rose-dark: #6b001d !important;
  --pr-companion: #ff2f9d !important;
  --pr-companion-rgb: 255,47,157 !important;
  --pr-gradient-rose: linear-gradient(100deg, #19060b 0%, #65001c 20%, #b20b35 48%, #e31b4b 76%, #ff2f9d 100%) !important;
  --pr-title-grad: linear-gradient(90deg, #71001f 0%, #c20e3c 46%, #e31b4b 76%, #ff2f9d 100%) !important;
}

/* Dark Rouge Noir: black background, red dominant, fuchsia only as accent. */
body.pr-card-story.pr-skin-mono.pr-mode-dark {
  --pr-page-bg: radial-gradient(ellipse 82% 52% at 86% 4%, rgba(227,27,75,0.16), transparent 52%), radial-gradient(ellipse 60% 46% at 8% 82%, rgba(255,47,157,0.08), transparent 56%), linear-gradient(160deg, #15070c 0%, #100509 38%, #0c0407 72%, #080306 100%) !important;
}

body.pr-card-story.pr-skin-mono.pr-mode-dark .pr-topbar {
  background-image: linear-gradient(102deg, #18060b 0%, #72001f 42%, #cf123f 76%, #ff2f9d 100%) !important;
}

body.pr-card-story.pr-skin-mono.pr-mode-dark .pr-header {
  background: linear-gradient(180deg, #17070c 0%, #0d0407 100%) !important;
  border-bottom-color: rgba(227,27,75,0.34) !important;
}

body.pr-card-story.pr-skin-mono.pr-mode-dark .pr-hero {
  background-image: radial-gradient(circle at 82% 14%, rgba(227,27,75,0.17), transparent 24%), radial-gradient(circle at 16% 88%, rgba(255,47,157,0.07), transparent 24%), linear-gradient(155deg, #0b0407 0%, #14070c 32%, #250b16 60%, #12060a 100%) !important;
}

body.pr-card-story.pr-skin-mono.pr-mode-dark .pr-footer {
  background: linear-gradient(180deg, rgba(227,27,75,0.10) 0%, #13070b 15%, #0b0407 100%) !important;
}

/* Light Rouge Noir stays light. Only its accents are red/fuchsia. */
body.pr-card-story.pr-skin-mono.pr-mode-light {
  --pr-page-bg: radial-gradient(ellipse 88% 58% at 8% -10%, rgba(227,27,75,0.12), transparent 56%), radial-gradient(ellipse 68% 46% at 100% 0%, rgba(255,47,157,0.07), transparent 52%), linear-gradient(180deg, #fff9fb 0%, #ffffff 52%, #fff3f6 100%) !important;
}

body.pr-card-story.pr-skin-mono.pr-mode-light .pr-topbar {
  background: linear-gradient(102deg, rgba(227,27,75,0.10) 0%, rgba(255,255,255,0.96) 58%, rgba(255,47,157,0.10) 100%) !important;
  color: var(--pr-ink) !important;
}
/* Homepage product loop only — avoids full woocommerce.css on critical path */
.woocommerce ul.products li.product {
  position: relative;
}

.pr-badges {
  position: absolute;
  top: 0.65rem;
  left: 0.65rem;
  z-index: 3;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  pointer-events: none;
}

.pr-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.28rem 0.55rem;
  border-radius: 6px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  line-height: 1.2;
  color: #fff;
  width: fit-content;
}

.pr-badge--new {
  background: #6b7c3a;
}

.pr-badge--sale {
  background: var(--pr-rose);
}

.woocommerce ul.products,
.pr-featured--home .woocommerce ul.products,
.pr-featured--home .woocommerce ul.products.columns-1,
.pr-featured--home .woocommerce ul.products.columns-3,
.pr-featured--home .woocommerce ul.products.columns-4 {
  display: grid !important;
  grid-template-columns: 1fr !important;
  gap: 1rem;
  list-style: none;
  margin: 1.25rem 0 0;
  padding: 0;
  clear: both;
  width: 100%;
}

.woocommerce ul.products::before,
.woocommerce ul.products::after {
  display: none !important;
  content: none !important;
}

/* Mobil: 1 pe rând, card orizontal — poză mare, text/buton compact */
.woocommerce ul.products li.product {
  width: 100% !important;
  max-width: none !important;
  margin: 0 !important;
  float: none !important;
  background: var(--pr-white);
  border: 1px solid var(--pr-line);
  border-radius: var(--pr-card-radius, 16px);
  overflow: hidden !important;
  isolation: isolate;
  box-shadow: var(--pr-card-shadow);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  display: grid !important;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr);
  align-items: stretch;
  padding: 0 !important;
  box-sizing: border-box;
  gap: 0;
}

.woocommerce ul.products li.product:hover {
  transform: translateY(-2px);
  box-shadow: var(--pr-card-shadow-hover);
}

.woocommerce ul.products li.product .woocommerce-LoopProduct-link {
  display: contents;
  color: inherit;
  text-decoration: none;
}

.woocommerce ul.products li.product a img,
.woocommerce ul.products li.product img.attachment-woocommerce_thumbnail {
  width: 100% !important;
  height: 100% !important;
  min-height: 168px;
  max-height: 220px;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  margin: 0 !important;
  display: block;
  background: var(--pr-img-bg, #f3eee9);
  border-right: 1px solid var(--pr-line);
  border-bottom: none;
  grid-column: 1;
  grid-row: 1 / span 6;
}

/* Doar mobil (card orizontal): rotunjire pe stânga */
@media (max-width: 639px) {
  .woocommerce ul.products li.product a img,
  .woocommerce ul.products li.product img.attachment-woocommerce_thumbnail {
    border-radius: calc(var(--pr-card-radius, 16px) - 1px) 0 0 calc(var(--pr-card-radius, 16px) - 1px) !important;
    filter: none !important;
    box-shadow: none !important;
  }
}

.pr-loop-cat {
  display: block;
  padding: 0.85rem 0.9rem 0;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--pr-ink-soft, #5c5560);
  grid-column: 2;
}

.woocommerce ul.products li.product .woocommerce-loop-product__title {
  font-family: var(--pr-display);
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.25;
  padding: 0.25rem 0.9rem 0.1rem;
  margin: 0;
  color: var(--pr-ink);
  grid-column: 2;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.woocommerce ul.products li.product .price {
  display: block;
  padding: 0.25rem 0.9rem 0.2rem;
  margin: 0;
  color: var(--pr-rose-dark);
  font-weight: 800;
  font-size: 0.92rem;
  grid-column: 2;
}

.woocommerce ul.products li.product .price .woocommerce-Price-amount,
.woocommerce ul.products li.product .price bdi,
.woocommerce ul.products li.product .price .woocommerce-Price-currencySymbol {
  color: inherit;
}

.pr-loop-swatches {
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem;
  padding: 0.1rem 0.9rem 0.35rem;
  margin: 0;
  min-height: 0;
  grid-column: 2;
}

.pr-loop-swatch {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 1.15rem;
  height: 1.15rem;
  padding: 0 0.25rem;
  border-radius: 5px;
  border: 1px solid var(--pr-line);
  background: var(--pr-cream, #f7f2ec);
  font-size: 0.6rem;
  font-weight: 700;
  color: var(--pr-ink);
  text-decoration: none;
  line-height: 1;
  box-sizing: border-box;
}

.pr-loop-swatch--color {
  width: 1.05rem;
  min-width: 1.05rem;
  height: 1.05rem;
  padding: 0;
  border-radius: 999px;
}

.pr-loop-swatch--color span {
  display: none;
}

.pr-loop-swatch--more {
  background: transparent;
  border-style: dashed;
  color: var(--pr-ink-soft, #5c5560);
  pointer-events: none;
}

.woocommerce ul.products li.product .pr-loop-swatches a:hover {
  border-color: var(--pr-rose);
}

.woocommerce ul.products li.product .button,
.woocommerce ul.products li.product a.button,
.woocommerce ul.products li.product .added_to_cart {
  margin: 0.15rem 0.9rem 0.85rem !important;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  width: calc(100% - 1.8rem) !important;
  max-width: 11rem;
  text-align: center;
  border-radius: var(--pr-btn-radius, 10px) !important;
  padding: 0.5rem 0.75rem !important;
  font-size: 0.78rem !important;
  line-height: 1.2 !important;
  background-color: transparent !important;
  background-image: var(--pr-gradient-rose) !important;
  background-size: 220% 100% !important;
  background-position: 0% 50% !important;
  background-repeat: no-repeat !important;
  color: var(--pr-btn-text, #fff) !important;
  border: none !important;
  font-weight: 700 !important;
  box-shadow: 0 4px 14px rgba(var(--pr-rose-rgb), 0.28) !important;
  transition: background-position 0.45s ease, filter 0.2s ease !important;
  grid-column: 2;
  align-self: end;
}

.woocommerce ul.products li.product .button:hover,
.woocommerce ul.products li.product a.button:hover {
  transform: translateY(-1px);
  color: var(--pr-btn-text, #fff) !important;
  background-position: 100% 50% !important;
}

.pr-wish-btn {
  position: absolute;
  top: 0.5rem;
  left: 0.5rem;
  right: auto;
  z-index: 4;
}

/* Tablet+: 3 pe rând, card vertical clasic */
@media (min-width: 640px) {
  .woocommerce ul.products,
  .pr-featured--home .woocommerce ul.products,
  .pr-featured--home .woocommerce ul.products.columns-1,
  .pr-featured--home .woocommerce ul.products.columns-3,
  .pr-featured--home .woocommerce ul.products.columns-4 {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    gap: 1.15rem;
  }

  .woocommerce ul.products li.product {
    display: flex !important;
    flex-direction: column;
    grid-template-columns: none;
  }

  .woocommerce ul.products li.product .woocommerce-LoopProduct-link {
    display: block;
  }

  .woocommerce ul.products li.product a img,
  .woocommerce ul.products li.product img.attachment-woocommerce_thumbnail {
    height: auto !important;
    min-height: 0;
    max-height: none;
    aspect-ratio: 1 / 1;
    border-right: none;
    border-bottom: 1px solid var(--pr-line);
    grid-column: auto;
    grid-row: auto;
    /* desktop vertical: fără rotunjire stânga (clip din card) */
    border-radius: 0 !important;
    -webkit-mask-image: none;
    mask-image: none;
  }

  .pr-loop-cat,
  .woocommerce ul.products li.product .woocommerce-loop-product__title,
  .woocommerce ul.products li.product .price,
  .pr-loop-swatches,
  .woocommerce ul.products li.product .button,
  .woocommerce ul.products li.product a.button,
  .woocommerce ul.products li.product .added_to_cart {
    grid-column: auto;
  }

  .pr-loop-cat {
    padding: 0.85rem 1rem 0;
    font-size: 0.68rem;
  }

  .woocommerce ul.products li.product .woocommerce-loop-product__title {
    font-size: 1.05rem;
    padding: 0.3rem 1rem 0.1rem;
    -webkit-line-clamp: 3;
  }

  .woocommerce ul.products li.product .price {
    padding: 0.35rem 1rem 0.25rem;
    font-size: 1rem;
  }

  .pr-loop-swatches {
    padding: 0.15rem 1rem 0.5rem;
  }

  .woocommerce ul.products li.product .button,
  .woocommerce ul.products li.product a.button,
  .woocommerce ul.products li.product .added_to_cart {
    margin: auto 1rem 1rem !important;
    width: calc(100% - 2rem) !important;
    max-width: none;
    padding: 0.65rem 0.85rem !important;
    font-size: 0.85rem !important;
    align-self: stretch;
  }

  .pr-wish-btn {
    left: auto;
    right: 0.55rem;
  }
}

/* Desktop: 4 pe rând */
@media (min-width: 1024px) {
  .woocommerce ul.products,
  .pr-featured--home .woocommerce ul.products,
  .pr-featured--home .woocommerce ul.products.columns-1,
  .pr-featured--home .woocommerce ul.products.columns-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
    gap: 1.25rem;
  }
}


/* v1.4.67 — homepage only: product image rounds only the two upper corners. */
body.home .woocommerce ul.products li.product a img,
body.home .woocommerce ul.products li.product img.attachment-woocommerce_thumbnail,
body.front-page .woocommerce ul.products li.product a img,
body.front-page .woocommerce ul.products li.product img.attachment-woocommerce_thumbnail {
  border-radius: calc(var(--pr-card-radius, 16px) - 1px) calc(var(--pr-card-radius, 16px) - 1px) 0 0 !important;
}
/*
 * v1.4.62 — shared shop/category card source of truth.
 * Loaded AFTER home-loop.css / woocommerce.css / skins-cards.css so the same
 * two-column product card is used on homepage, shop and product categories.
 */

@media (max-width: 639px) {
  /* WooCommerce archives put the `woocommerce` class on BODY itself.
     Select from body directly so category/shop cards receive the same rules as homepage. */
  /* Header: reserve fixed, safe space for hamburger + logo + four actions. */
  .pr-header .pr-container.pr-header__inner {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 0.28rem !important;
    padding-left: max(0.72rem, env(safe-area-inset-left, 0px)) !important;
    padding-right: max(0.72rem, env(safe-area-inset-right, 0px)) !important;
    overflow: visible !important;
  }

  .pr-header .pr-nav-toggle {
    flex: 0 0 34px !important;
    width: 34px !important;
    height: 34px !important;
  }

  .pr-header .pr-logo,
  body.pr-card-story .pr-header .pr-logo {
    display: block !important;
    flex: 0 1 126px !important;
    width: 126px !important;
    max-width: 126px !important;
    min-width: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
    overflow: visible !important;
    font-size: 0.93rem !important;
    line-height: 1.02 !important;
    white-space: normal !important;
  }

  .pr-header .pr-logo em,
  body.pr-card-story .pr-header .pr-logo em {
    display: inline !important;
    margin: 0 !important;
    padding: 0 !important;
    line-height: inherit !important;
    white-space: normal !important;
  }

  .pr-header .pr-header__actions {
    display: flex !important;
    flex: 0 0 auto !important;
    gap: 0.08rem !important;
    min-width: 0 !important;
    max-width: none !important;
  }

  .pr-header .pr-cart-link,
  .pr-header .pr-search-open,
  .pr-header .pr-account-link,
  .pr-header .pr-wishlist-link {
    width: 34px !important;
    height: 34px !important;
    min-width: 34px !important;
  }

  /* One canonical two-column grid for home + shop + category archives. */
  body.pr-mobile-products-2 ul.products,
  body.pr-mobile-products-2.pr-shop-view ul.products,
  body.pr-mobile-products-2.pr-shop-view .pr-shop-layout__main ul.products,
  body.pr-mobile-products-2 .pr-featured--home .woocommerce ul.products,
  body.pr-mobile-products-2 .pr-featured--home .woocommerce ul.products.columns-1,
  body.pr-mobile-products-2 .pr-featured--home .woocommerce ul.products.columns-3,
  body.pr-mobile-products-2 .pr-featured--home .woocommerce ul.products.columns-4 {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 0.7rem !important;
  }



  /* Subcategory cards on parent product-category archives.
     WooCommerce renders these as li.product-category, not li.product. */
  body.pr-mobile-products-2 ul.products li.product-category,
  body.pr-mobile-products-2.pr-shop-view ul.products li.product-category {
    display: flex !important;
    flex-direction: column !important;
    width: 100% !important;
    min-width: 0 !important;
    max-width: none !important;
    margin: 0 !important;
    padding: 0 !important;
    overflow: hidden !important;
    border-radius: 15px !important;
    box-sizing: border-box !important;
  }

  body.pr-mobile-products-2 ul.products li.product-category > a,
  body.pr-mobile-products-2.pr-shop-view ul.products li.product-category > a {
    display: flex !important;
    flex: 1 1 auto !important;
    flex-direction: column !important;
    width: 100% !important;
    min-width: 0 !important;
    color: inherit !important;
    text-decoration: none !important;
  }

  body.pr-mobile-products-2 ul.products li.product-category a img,
  body.pr-mobile-products-2.pr-shop-view ul.products li.product-category a img {
    display: block !important;
    width: 100% !important;
    height: auto !important;
    min-height: 0 !important;
    max-height: none !important;
    margin: 0 !important;
    aspect-ratio: 1 / 1.04 !important;
    object-fit: cover !important;
    border: 0 !important;
    border-bottom: 1px solid var(--pr-line) !important;
    border-radius: 0 !important;
  }

  body.pr-mobile-products-2 ul.products li.product-category .woocommerce-loop-category__title,
  body.pr-mobile-products-2.pr-shop-view ul.products li.product-category .woocommerce-loop-category__title {
    display: -webkit-box !important;
    width: 100% !important;
    margin: 0 !important;
    padding: 0.65rem 0.72rem 0.72rem !important;
    min-height: calc(0.86rem * 1.2 * 2 + 1.37rem) !important;
    max-height: none !important;
    overflow: hidden !important;
    font-family: var(--pr-display) !important;
    font-size: 0.86rem !important;
    line-height: 1.2 !important;
    font-weight: 700 !important;
    letter-spacing: -0.01em !important;
    text-align: left !important;
    -webkit-box-orient: vertical !important;
    -webkit-line-clamp: 3 !important;
    line-clamp: 3 !important;
    box-sizing: border-box !important;
  }

  body.pr-mobile-products-2 ul.products li.product-category .woocommerce-loop-category__title .count,
  body.pr-mobile-products-2.pr-shop-view ul.products li.product-category .woocommerce-loop-category__title .count {
    display: inline !important;
    margin-left: 0.2rem !important;
    padding: 0 !important;
    background: transparent !important;
    color: currentColor !important;
    font-family: inherit !important;
    font-size: 0.68em !important;
    font-weight: 600 !important;
    opacity: 0.55 !important;
  }

  body.pr-card-story.pr-mode-light.pr-mobile-products-2 ul.products li.product-category {
    background:
      radial-gradient(ellipse 65% 80% at 12% 30%, rgba(var(--pr-rose-rgb), 0.08), transparent 62%),
      linear-gradient(145deg, #fff 0%, #fffdfb 48%, rgba(var(--pr-rose-rgb), 0.03) 76%, var(--pr-cream) 100%) !important;
    color: var(--pr-ink) !important;
    border-color: rgba(var(--pr-rose-rgb), 0.32) !important;
  }

  body.pr-card-story.pr-mode-light.pr-mobile-products-2 ul.products li.product-category .woocommerce-loop-category__title {
    color: var(--pr-ink) !important;
  }

  body.pr-card-story.pr-mode-dark.pr-mobile-products-2 ul.products li.product-category {
    background:
      radial-gradient(ellipse 68% 82% at 12% 28%, rgba(var(--pr-rose-rgb), 0.16), transparent 62%),
      linear-gradient(145deg, #1a1018 0%, #1e121a 44%, #24161f 76%, #291a23 100%) !important;
    color: #fff !important;
    border-color: rgba(var(--pr-rose-rgb), 0.34) !important;
  }

  body.pr-card-story.pr-mode-dark.pr-mobile-products-2 ul.products li.product-category .woocommerce-loop-category__title {
    color: #fff !important;
  }

  body.pr-mobile-products-2 ul.products li.product,
  body.pr-mobile-products-2.pr-shop-view ul.products li.product {
    display: flex !important;
    flex-direction: column !important;
    width: 100% !important;
    min-width: 0 !important;
    max-width: none !important;
    margin: 0 !important;
    padding: 0 !important;
    overflow: hidden !important;
    border-radius: 15px !important;
    box-sizing: border-box !important;
  }

  body.pr-mobile-products-2 ul.products li.product .woocommerce-LoopProduct-link,
  body.pr-mobile-products-2 ul.products li.product > a.woocommerce-LoopProduct-link {
    display: block !important;
    width: 100% !important;
    min-width: 0 !important;
  }

  body.pr-mobile-products-2 ul.products li.product a img,
  body.pr-mobile-products-2 ul.products li.product img.attachment-woocommerce_thumbnail,
  body.pr-mobile-products-2 ul.products li.product .attachment-woocommerce_thumbnail {
    display: block !important;
    width: 100% !important;
    height: auto !important;
    min-height: 0 !important;
    max-height: none !important;
    margin: 0 !important;
    aspect-ratio: 1 / 1.10 !important;
    object-fit: cover !important;
    border-right: 0 !important;
    border-bottom: 1px solid var(--pr-line) !important;
    border-radius: 0 !important;
  }

  body.pr-mobile-products-2 ul.products li.product .pr-loop-cat,
  body.pr-mobile-products-2.pr-shop-view ul.products li.product .pr-loop-cat {
    display: block !important;
    padding: 0.62rem 0.72rem 0 !important;
    margin: 0 !important;
    font-size: 0.54rem !important;
    line-height: 1.25 !important;
    font-weight: 700 !important;
    letter-spacing: 0.06em !important;
  }

  body.pr-mobile-products-2 ul.products li.product .woocommerce-loop-product__title,
  body.pr-mobile-products-2.pr-shop-view ul.products li.product .woocommerce-loop-product__title {
    display: -webkit-box !important;
    padding: 0.22rem 0.72rem 0.08rem !important;
    margin: 0 !important;
    min-height: calc(0.82rem * 1.22 * 3) !important;
    max-height: calc(0.82rem * 1.22 * 3) !important;
    overflow: hidden !important;
    font-size: 0.82rem !important;
    line-height: 1.22 !important;
    font-weight: 700 !important;
    letter-spacing: -0.01em !important;
    -webkit-box-orient: vertical !important;
    -webkit-line-clamp: 3 !important;
    line-clamp: 3 !important;
  }

  body.pr-mobile-products-2 ul.products li.product .pr-loop-swatches {
    display: none !important;
  }

  body.pr-mobile-products-2 ul.products li.product .price,
  body.pr-mobile-products-2.pr-shop-view ul.products li.product .price {
    display: block !important;
    padding: 0.24rem 0.72rem 0.45rem !important;
    margin: 0 !important;
    font-size: 0.86rem !important;
    line-height: 1.22 !important;
    font-weight: 800 !important;
  }

  body.pr-mobile-products-2 ul.products li.product .price del {
    font-size: 0.72rem !important;
  }

  body.pr-mobile-products-2 ul.products li.product .button,
  body.pr-mobile-products-2 ul.products li.product a.button,
  body.pr-mobile-products-2 ul.products li.product .added_to_cart,
  body.pr-mobile-products-2.pr-shop-view ul.products li.product .button,
  body.pr-mobile-products-2.pr-shop-view ul.products li.product a.button {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    margin: auto 0.72rem 0.72rem !important;
    width: calc(100% - 1.44rem) !important;
    max-width: none !important;
    min-height: 42px !important;
    padding: 0.62rem 0.3rem !important;
    border-radius: 999px !important;
    font-size: 0.72rem !important;
    line-height: 1 !important;
    font-weight: 700 !important;
    white-space: nowrap !important;
    text-align: center !important;
  }

  /* LIGHT product cards: readable dark text on a soft, continuous background. */
  body.pr-card-story.pr-mode-light.pr-mobile-products-2 ul.products li.product {
    background:
      radial-gradient(ellipse 65% 80% at 12% 30%, rgba(var(--pr-rose-rgb), 0.10), transparent 62%),
      linear-gradient(145deg, #fff 0%, #fffdfb 42%, rgba(var(--pr-rose-rgb), 0.035) 72%, var(--pr-cream) 100%) !important;
    color: var(--pr-ink) !important;
    border-color: rgba(var(--pr-rose-rgb), 0.32) !important;
  }

  body.pr-card-story.pr-mode-light.pr-mobile-products-2 ul.products li.product .woocommerce-loop-product__title {
    color: var(--pr-ink) !important;
  }

  body.pr-card-story.pr-mode-light.pr-mobile-products-2 ul.products li.product .pr-loop-cat,
  body.pr-card-story.pr-mode-light.pr-mobile-products-2 ul.products li.product .price {
    color: var(--pr-rose-dark) !important;
  }

  /* DARK product cards: readable white title and muted metadata, no split seam. */
  body.pr-card-story.pr-mode-dark.pr-mobile-products-2 ul.products li.product {
    background:
      radial-gradient(ellipse 68% 82% at 12% 28%, rgba(var(--pr-rose-rgb), 0.18), transparent 62%),
      linear-gradient(145deg, #1a1018 0%, #1e121a 42%, #24161f 74%, #291a23 100%) !important;
    color: #fff !important;
    border-color: rgba(var(--pr-rose-rgb), 0.34) !important;
  }

  body.pr-card-story.pr-mode-dark.pr-mobile-products-2 ul.products li.product .woocommerce-loop-product__title {
    color: #fff !important;
  }

  body.pr-card-story.pr-mode-dark.pr-mobile-products-2 ul.products li.product .pr-loop-cat {
    color: rgba(255, 255, 255, 0.62) !important;
  }

  body.pr-card-story.pr-mode-dark.pr-mobile-products-2 ul.products li.product .price {
    color: var(--pr-rose) !important;
  }

  body.pr-card-story.pr-mode-dark.pr-mobile-products-2 ul.products li.product .price del {
    color: rgba(255, 255, 255, 0.46) !important;
  }
}

/* Very narrow phones: preserve the logo and four action buttons without clipping. */
@media (max-width: 380px) {
  .pr-header .pr-logo,
  body.pr-card-story .pr-header .pr-logo {
    flex-basis: 110px !important;
    width: 110px !important;
    max-width: 110px !important;
    font-size: 0.85rem !important;
  }

  .pr-header .pr-cart-link,
  .pr-header .pr-search-open,
  .pr-header .pr-account-link,
  .pr-header .pr-wishlist-link {
    width: 31px !important;
    height: 31px !important;
    min-width: 31px !important;
  }
}


/* v1.4.60 — subcategory cards on tablet/desktop.
   These rules touch ONLY li.product-category; product cards remain unchanged. */
@media (min-width: 640px) {
  body.woocommerce ul.products li.product-category,
  body.pr-shop-view ul.products li.product-category,
  .woocommerce ul.products li.product-category {
    display: flex !important;
    flex-direction: column !important;
    width: 100% !important;
    min-width: 0 !important;
    max-width: none !important;
    margin: 0 !important;
    padding: 0 !important;
    overflow: hidden !important;
    border-radius: var(--pr-card-radius, 16px) !important;
    box-sizing: border-box !important;
  }

  body.woocommerce ul.products li.product-category > a,
  body.pr-shop-view ul.products li.product-category > a,
  .woocommerce ul.products li.product-category > a {
    display: flex !important;
    flex: 1 1 auto !important;
    flex-direction: column !important;
    width: 100% !important;
    min-width: 0 !important;
    color: inherit !important;
    text-decoration: none !important;
  }

  body.woocommerce ul.products li.product-category a img,
  body.pr-shop-view ul.products li.product-category a img,
  .woocommerce ul.products li.product-category a img {
    display: block !important;
    width: 100% !important;
    height: auto !important;
    min-height: 0 !important;
    max-height: none !important;
    margin: 0 !important;
    aspect-ratio: 1 / 0.92 !important;
    object-fit: cover !important;
    border: 0 !important;
    border-bottom: 1px solid var(--pr-line) !important;
    border-radius: 0 !important;
  }

  body.woocommerce ul.products li.product-category .woocommerce-loop-category__title,
  body.pr-shop-view ul.products li.product-category .woocommerce-loop-category__title,
  .woocommerce ul.products li.product-category .woocommerce-loop-category__title {
    display: -webkit-box !important;
    width: 100% !important;
    margin: 0 !important;
    padding: 0.9rem 1rem 1rem !important;
    min-height: calc(1rem * 1.25 * 2 + 1.9rem) !important;
    max-height: none !important;
    overflow: hidden !important;
    font-family: var(--pr-display) !important;
    font-size: 1rem !important;
    line-height: 1.25 !important;
    font-weight: 700 !important;
    letter-spacing: -0.01em !important;
    text-align: left !important;
    -webkit-box-orient: vertical !important;
    -webkit-line-clamp: 3 !important;
    line-clamp: 3 !important;
    box-sizing: border-box !important;
  }

  body.woocommerce ul.products li.product-category .woocommerce-loop-category__title .count,
  body.pr-shop-view ul.products li.product-category .woocommerce-loop-category__title .count,
  .woocommerce ul.products li.product-category .woocommerce-loop-category__title .count {
    display: inline !important;
    margin-left: 0.25rem !important;
    padding: 0 !important;
    border: 0 !important;
    background: transparent !important;
    color: currentColor !important;
    font: inherit !important;
    font-size: 0.68em !important;
    font-weight: 600 !important;
    opacity: 0.5 !important;
    vertical-align: baseline !important;
  }

  body.pr-card-story.pr-mode-light ul.products li.product-category {
    background:
      radial-gradient(ellipse 70% 72% at 14% 24%, rgba(var(--pr-rose-rgb), 0.07), transparent 62%),
      linear-gradient(145deg, #fff 0%, #fffdfb 54%, rgba(var(--pr-rose-rgb), 0.025) 78%, var(--pr-cream) 100%) !important;
    color: var(--pr-ink) !important;
    border-color: rgba(var(--pr-rose-rgb), 0.28) !important;
  }

  body.pr-card-story.pr-mode-light ul.products li.product-category .woocommerce-loop-category__title {
    color: var(--pr-ink) !important;
  }

  body.pr-card-story.pr-mode-dark ul.products li.product-category {
    background:
      radial-gradient(ellipse 70% 72% at 14% 24%, rgba(var(--pr-rose-rgb), 0.15), transparent 62%),
      linear-gradient(145deg, #1a1018 0%, #1e121a 46%, #24161f 76%, #291a23 100%) !important;
    color: #fff !important;
    border-color: rgba(var(--pr-rose-rgb), 0.34) !important;
  }

  body.pr-card-story.pr-mode-dark ul.products li.product-category .woocommerce-loop-category__title {
    color: #fff !important;
  }
}

/* Larger desktop: slightly more breathing room without oversized category names. */
@media (min-width: 1200px) {
  body.woocommerce ul.products li.product-category .woocommerce-loop-category__title,
  body.pr-shop-view ul.products li.product-category .woocommerce-loop-category__title,
  .woocommerce ul.products li.product-category .woocommerce-loop-category__title {
    padding: 1rem 1.1rem 1.1rem !important;
    font-size: 1.05rem !important;
    line-height: 1.25 !important;
  }
}

/* v1.4.63 — desktop product cards: proportions closer to mobile. */
@media (min-width: 640px) {
  body.woocommerce ul.products li.product .pr-loop-cat,
  body.pr-shop-view ul.products li.product .pr-loop-cat,
  .woocommerce ul.products li.product .pr-loop-cat,
  .pr-featured--home .woocommerce ul.products li.product .pr-loop-cat {
    font-size: 0.60rem !important;
    line-height: 1.22 !important;
    letter-spacing: 0.065em !important;
  }

  body.woocommerce ul.products li.product .woocommerce-loop-product__title,
  body.pr-shop-view ul.products li.product .woocommerce-loop-product__title,
  .woocommerce ul.products li.product .woocommerce-loop-product__title,
  .pr-featured--home .woocommerce ul.products li.product .woocommerce-loop-product__title {
    font-size: 0.86rem !important;
    line-height: 1.22 !important;
    display: -webkit-box !important;
    -webkit-box-orient: vertical !important;
    -webkit-line-clamp: 3 !important;
    line-clamp: 3 !important;
    overflow: hidden !important;
  }
}

