/* Panda Roz — design system (inspirat kids-mania kit10) */

:root {
  --pr-navy: #2d3359;
  --pr-navy-dark: #1e2240;
  --pr-pink: #e91e63;
  --pr-pink-dark: #c2185b;
  --pr-pink-light: #f06292;
  --pr-pink-soft: #fce4ec;
  --pr-magenta: #a81d84;
  --pr-blue: #0693e3;
  --pr-blue-soft: #e3f4fd;
  --pr-gold: #fbbc04;
  --pr-cream: #f8f9fc;
  --pr-white: #ffffff;
  --pr-gray-100: #e5e5e5;
  --pr-gray-400: #8a94a6;
  --pr-gray-600: #5a6278;
  --pr-wa: #25d366;
  --pr-radius: 14px;
  --pr-radius-sm: 10px;
  --pr-shadow: 0 8px 30px rgba(45, 51, 89, 0.08);
  --pr-max: 1200px;
  --pr-font: "Nunito", system-ui, sans-serif;
  --pr-font-display: "Poppins", system-ui, sans-serif;
  --pr-gradient-pink: linear-gradient(135deg, #a81d84 0%, #e91e63 55%, #ea3970 100%);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body.pr-body {
  margin: 0;
  font-family: var(--pr-font);
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--pr-navy);
  background: var(--pr-cream);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--pr-blue); text-decoration: none; transition: color .2s; }
a:hover { color: var(--pr-pink); }

.pr-container {
  width: min(100% - 2rem, var(--pr-max));
  margin-inline: auto;
}

/* Buttons */
.pr-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  font-weight: 700;
  font-size: .9375rem;
  padding: .8rem 1.6rem;
  border-radius: var(--pr-radius-sm);
  border: none;
  cursor: pointer;
  transition: transform .2s, box-shadow .2s, background .2s;
  text-decoration: none;
  font-family: inherit;
}
.pr-btn--primary {
  background: var(--pr-gradient-pink);
  color: #fff;
  box-shadow: 0 6px 24px rgba(233, 30, 99, .35);
}
.pr-btn--primary:hover { transform: translateY(-2px); color: #fff; }
.pr-btn--outline {
  background: #fff;
  color: var(--pr-navy);
  border: 2px solid var(--pr-gray-100);
}
.pr-btn--outline:hover { border-color: var(--pr-pink); color: var(--pr-pink); }
.pr-btn--ghost {
  background: transparent;
  color: var(--pr-gray-600);
}
.pr-btn--ghost:hover { color: var(--pr-pink); }
.pr-btn--sm { padding: .55rem 1rem; font-size: .875rem; }
.pr-btn--block { width: 100%; }

/* Header */
.pr-header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: rgba(255, 255, 255, .97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--pr-gray-100);
}
.pr-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: .75rem 0;
}
.pr-logo { color: var(--pr-navy); text-decoration: none; }
.pr-logo .custom-logo-link,
.pr-logo .custom-logo-link img,
.pr-logo img {
  display: block;
  width: auto;
  height: 48px;
  max-height: 48px;
}
.pr-logo strong { font-family: var(--pr-font-display); font-size: 1.2rem; }
.pr-logo small {
  display: block;
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--pr-pink);
}
.pr-nav__list {
  display: flex;
  gap: 1.25rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.pr-nav__list a {
  font-weight: 700;
  color: var(--pr-navy);
}
.pr-nav__list a:hover { color: var(--pr-pink); }
.pr-header__actions { display: flex; align-items: center; gap: .75rem; }
.pr-header__icon {
  position: relative;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: none;
  background: var(--pr-pink-soft);
  color: var(--pr-pink);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  text-decoration: none;
  font-size: 1.1rem;
}
.pr-header__cart-count {
  position: absolute;
  top: -4px;
  right: -4px;
  min-width: 18px;
  height: 18px;
  border-radius: 999px;
  background: var(--pr-pink);
  color: #fff;
  font-size: .65rem;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 4px;
}
.pr-header__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: .5rem;
}
.pr-header__burger span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--pr-navy);
  border-radius: 2px;
}

@media (max-width: 900px) {
  .pr-nav { display: none; }
  .pr-header__burger { display: inline-flex; }
}

/* Footer */
.pr-footer {
  margin-top: 4rem;
  background: var(--pr-navy);
  color: rgba(255, 255, 255, .9);
  padding: 3rem 0 2rem;
}
.pr-footer a { color: #fff; }
.pr-footer__inner {
  display: grid;
  gap: 1.5rem;
}
.pr-footer__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.pr-footer__copy { font-size: .875rem; opacity: .7; margin: 0; }

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

/* Homepage */
.pr-hero {
  background: var(--pr-gradient-pink);
  color: #fff;
  padding: 3.5rem 0 4rem;
  margin-bottom: 2rem;
  position: relative;
  overflow: hidden;
  min-height: clamp(300px, 52vw, 440px);
}
.pr-hero::after {
  content: "";
  position: absolute;
  right: -10%;
  top: -30%;
  width: 50%;
  height: 160%;
  background: radial-gradient(circle, rgba(255,255,255,.12) 0%, transparent 70%);
  pointer-events: none;
}
.pr-hero__inner {
  position: relative;
  z-index: 1;
}
.pr-hero__eyebrow {
  font-size: .75rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  opacity: .9;
  margin: 0 0 .75rem;
}
.pr-hero__title {
  font-family: var(--pr-font-display);
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  margin: 0 0 1rem;
  line-height: 1.15;
}
.pr-hero__subtitle {
  font-size: 1.15rem;
  font-weight: 600;
  margin: 0 0 .75rem;
  opacity: .95;
}
.pr-hero__text { margin: 0 0 1.5rem; opacity: .95; max-width: 52ch; }
.pr-hero__actions { display: flex; flex-wrap: wrap; gap: .75rem; margin-bottom: 1.25rem; }
.pr-hero-search {
  margin-top: .25rem;
  max-width: 36rem;
}
.pr-hero-search__field {
  display: flex;
  align-items: stretch;
  gap: .5rem;
  background: rgba(255,255,255,.96);
  border-radius: 999px;
  padding: .35rem .35rem .35rem 1.1rem;
  box-shadow: 0 8px 28px rgba(45, 51, 89, .18);
}
.pr-hero-search__input {
  flex: 1;
  min-width: 0;
  border: 0;
  background: transparent;
  font: inherit;
  font-size: 1rem;
  font-weight: 600;
  color: var(--pr-navy);
  outline: none;
}
.pr-hero-search__input::placeholder {
  color: var(--pr-gray-400);
  font-weight: 500;
}
.pr-hero-search__btn {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  border: 0;
  border-radius: 999px;
  padding: .7rem 1.15rem;
  background: var(--pr-gradient-pink);
  color: #fff;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
  white-space: nowrap;
  transition: transform .15s ease, box-shadow .15s ease;
}
.pr-hero-search__btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(233, 30, 99, .35);
}
.pr-hero-search__btn-icon {
  display: inline-flex;
  line-height: 0;
}
.pr-hero .pr-btn--outline { background: rgba(255,255,255,.15); color: #fff; border-color: rgba(255,255,255,.4); }
.pr-home-section { margin-bottom: 3.5rem; }
.pr-home-section .products li.product .woocommerce-loop-product__link {
  overflow: hidden;
}
.pr-home-section .products li.product .woocommerce-loop-product__link img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.pr-section-title {
  font-family: var(--pr-font-display);
  font-size: 1.5rem;
  margin: 0 0 1.25rem;
}
.pr-trust-section { margin-bottom: 4rem; }
.pr-trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
}
.pr-trust-card {
  background: #fff;
  border-radius: var(--pr-radius);
  box-shadow: var(--pr-shadow);
  padding: 1.25rem;
  text-align: center;
}
.pr-trust-card strong { font-size: 1.75rem; display: block; margin-bottom: .5rem; }
.pr-trust-card h3 { margin: 0 0 .35rem; font-size: 1rem; }
.pr-trust-card p { margin: 0; font-size: .875rem; color: var(--pr-gray-600); }

/* Footer legal */
.pr-footer__cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-bottom: 1.5rem;
}
.pr-footer__legal-nav { margin-bottom: 1rem; }
.pr-footer__legal-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: .75rem 1.25rem;
}
.pr-footer__legal-list a { color: #fff; font-weight: 700; font-size: .875rem; }
.pr-footer__company p { margin: .35rem 0; font-size: .8125rem; opacity: .85; }
.pr-footer__company a { color: #fff; text-decoration: underline; }
.pr-footer__consumer {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  align-items: center;
  margin: 1.25rem 0;
  padding: 1rem 0;
  border-top: 1px solid rgba(255, 255, 255, .15);
}
.pr-footer__consumer a {
  display: inline-flex;
  flex: 0 0 auto;
  border-radius: 8px;
  overflow: hidden;
  line-height: 0;
  transition: transform .2s, opacity .2s;
}
.pr-footer__consumer a:hover {
  transform: translateY(-2px);
  opacity: .95;
}
.pr-footer__consumer img {
  display: block;
  width: 250px;
  height: 50px;
  max-width: 100%;
  object-fit: contain;
}
.pr-footer__withdrawal {
  display: inline-flex;
  font-weight: 800;
  color: #fff !important;
  text-decoration: underline;
  margin-top: .5rem;
}

/* Legal documents */
.pr-legal-doc__body h2 {
  font-family: var(--pr-font-display);
  font-size: 1.1rem;
  margin: 1.5rem 0 .75rem;
}
.pr-legal-doc__body p,
.pr-legal-doc__body li { color: var(--pr-gray-600); }
.pr-legal-company {
  background: var(--pr-cream);
  border-radius: var(--pr-radius-sm);
  padding: 1rem 1.25rem;
  margin-bottom: 1.5rem;
}
.pr-legal-company ul { margin: .5rem 0 0; padding-left: 1.25rem; }

/* GDPR checkbox checkout */
.pr-gdpr {
  display: flex;
  gap: .65rem;
  align-items: flex-start;
  font-size: .875rem;
  line-height: 1.5;
}
.pr-gdpr input { margin-top: .2rem; flex-shrink: 0; }
.pr-gdpr a { color: var(--pr-pink); font-weight: 700; }
.pr-seller-info {
  margin-top: 1rem;
  font-size: .8125rem;
  color: var(--pr-gray-600);
}
.pr-seller-info__name { font-weight: 700; color: var(--pr-navy); }

@media (max-width: 700px) {
  .pr-footer__cols { grid-template-columns: 1fr; }
}

.pr-field {
  display: grid;
  gap: .35rem;
  margin-bottom: 1rem;
}
.pr-field span { font-weight: 700; font-size: .875rem; }
.pr-field input,
.pr-field textarea,
.pr-field select {
  width: 100%;
  padding: .75rem 1rem;
  border: 2px solid var(--pr-gray-100);
  border-radius: var(--pr-radius-sm);
  font: inherit;
  background: #fff;
}
.pr-field input:focus,
.pr-field textarea:focus {
  outline: none;
  border-color: var(--pr-pink);
}
