/* =========================================================
   Home V2 — Toys store, colorful, mobile-first
   ========================================================= */
:root {
  --hv2-bg: #fff8f1;
  --hv2-text: #1f1a2e;
  --hv2-muted: #6b6478;
  --hv2-coral: #ff6b6b;
  --hv2-orange: #e67e22;
  --hv2-orange-dark: #d46a1a;
  --hv2-sun: #ffc857;
  --hv2-sky: #4facfe;
  --hv2-lilac: #a78bfa;
  --hv2-pink: #ff8fab;
  --hv2-radius: 18px;
  --hv2-max: 1140px;
  --hv2-header-h: 60px;
  --primary-color: #e67e22;
  --hv2-band-cream: #fffdf7;
  --hv2-band-sky: #f9fbff;
  --hv2-band-peach: #fff9f5;
}

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

/* Theme sets html { scroll-behavior: smooth } — that amplifies cart UI jumps to the top */
html:has(body.hv2-body) {
  scroll-behavior: auto !important;
}

.hv2-body {
  margin: 0;
  background:
    radial-gradient(ellipse 80% 50% at 10% -10%, rgba(255, 200, 87, 0.35), transparent 50%),
    radial-gradient(ellipse 70% 40% at 100% 0%, rgba(167, 139, 250, 0.25), transparent 45%),
    radial-gradient(ellipse 60% 35% at 50% 100%, rgba(77, 172, 254, 0.18), transparent 50%),
    var(--hv2-bg);
  color: var(--hv2-text);
  font-family: "Playpen Sans Arabic", "Segoe UI", Tahoma, "Noto Sans Arabic", Arial, sans-serif;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  /* Keep text metrics stable while webfont decides (optional / cached) */
  text-rendering: optimizeLegibility;
}


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

:focus-visible {
  outline: 3px solid var(--hv2-sky);
  outline-offset: 2px;
}

/* ---------- Announcement (colors from admin) ---------- */
.hv2-announcement {
  display: block;
  text-decoration: none;
  padding: 0.7rem 1rem;
  text-align: center;
}
.hv2-announcement--link { cursor: pointer; }
.hv2-announcement__inner {
  max-width: var(--hv2-max);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1rem;
  align-items: center;
  justify-content: center;
}
.hv2-announcement__text {
  margin: 0;
  font-size: 0.92rem;
  font-weight: 700;
  color: inherit;
}
.hv2-announcement__btn {
  display: inline-block;
  padding: 0.4rem 1rem;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(0,0,0,.12);
}

/* ---------- Header: burger · logo · search · cart ---------- */
.hv2-header {
  position: sticky;
  top: 0;
  z-index: 1040;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 2px solid rgba(255, 143, 171, 0.25);
  min-height: var(--hv2-header-h);
}
.hv2-header__inner {
  max-width: var(--hv2-max);
  margin: 0 auto;
  padding: 0.55rem 0.85rem;
  display: flex;
  flex-direction: row;
  direction: ltr; /* force LTR: burger | logo | space | search | space | cart */
  align-items: center;
  gap: 0.5rem;
}
.hv2-header__spacer {
  flex: 1 1 auto;
  min-width: 0.5rem;
  height: 1px;
}
.hv2-header__logo {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
}
.hv2-header__logo img {
  max-height: 42px;
  width: auto;
}
.hv2-header__btn {
  appearance: none;
  border: 0;
  background: #fff5eb;
  color: var(--hv2-text);
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  text-decoration: none;
  font-size: 1.15rem;
  cursor: pointer;
  border-radius: 14px;
  transition: transform 0.15s, background 0.15s;
  flex-shrink: 0;
}
.hv2-header__btn:hover {
  background: #ffe0c2;
  transform: translateY(-1px);
}
.hv2-header__cart {
  position: relative;
  background: var(--hv2-orange) !important;
  color: #fff !important;
}
.hv2-header__cart:hover {
  background: var(--hv2-orange-dark) !important;
  color: #fff !important;
}
.hv2-header__cart i {
  color: #fff;
}
.hv2-header__cart-badge {
  position: absolute;
  top: 1px;
  inset-inline-end: 1px;
  min-width: 16px;
  height: 16px;
  padding: 0 4px;
  border-radius: 999px;
  background: #dc3545;
  color: #fff;
  font-size: 0.6rem;
  font-weight: 700;
  line-height: 16px;
  text-align: center;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* Search box that opens the search modal */
.hv2-header__searchbox {
  appearance: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  width: min(100%, 220px);
  min-width: 0;
  height: 42px;
  margin: 0;
  padding: 0 0.85rem;
  border: 2px solid #ffe0c2;
  border-radius: 999px;
  background: #fff;
  color: var(--hv2-muted);
  cursor: pointer;
  box-shadow: inset 0 1px 2px rgba(31, 26, 46, 0.04), 0 2px 8px rgba(230, 126, 34, 0.08);
  transition: border-color 0.15s, box-shadow 0.15s, transform 0.15s;
  flex-shrink: 1;
}
.hv2-header__searchbox:hover,
.hv2-header__searchbox:focus-visible {
  border-color: var(--hv2-orange);
  box-shadow: inset 0 1px 2px rgba(31, 26, 46, 0.04), 0 4px 14px rgba(230, 126, 34, 0.18);
  outline: none;
  transform: translateY(-1px);
}
.hv2-header__searchbox-icon {
  color: var(--hv2-orange);
  font-size: 0.9rem;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.15rem;
  height: 1.15rem;
  line-height: 1;
}
.hv2-header__btn svg,
.hv2-header__searchbox-icon svg {
  width: 1.15rem;
  height: 1.15rem;
  display: block;
  flex-shrink: 0;
}
.hv2-header__searchbox-placeholder {
  flex: 1;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 0.84rem;
  font-weight: 600;
  color: #9a93a8;
  text-align: right;
  direction: rtl;
}
@media (min-width: 768px) {
  .hv2-header__searchbox {
    width: min(420px, 46vw);
    height: 44px;
    padding: 0 1.1rem;
    flex-shrink: 0;
  }
  .hv2-header__searchbox-placeholder {
    font-size: 0.95rem;
  }
}
@media (max-width: 767.98px) {
  .hv2-header__inner {
    gap: 0.45rem;
  }
  .hv2-header__searchbox {
    flex: 1 1 auto;
    width: auto;
    min-width: 0;
    max-width: none;
    height: 40px;
    padding: 0 0.75rem;
    border-radius: 14px;
    background: linear-gradient(180deg, #ffffff 0%, #fff8f1 100%);
  }
  .hv2-header__searchbox-placeholder {
    font-size: 0.8rem;
  }
  .hv2-header__spacer {
    display: none;
  }
}
@media (max-width: 399.98px) {
  .hv2-header__searchbox {
    height: 38px;
    padding: 0 0.65rem;
  }
  .hv2-header__searchbox-placeholder {
    font-size: 0.76rem;
  }
}

/* Search offcanvas fallbacks (theme3 + polish) */
.hv2-body .canvas-search,
.hv2-body #canvasSearch {
  z-index: 1080;
}
.hv2-body .canvas-search .tf-mini-search-frm,
.hv2-body #searchFormNew {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: #fff8f1;
  border: 2px solid #ffd6a5;
  border-radius: 999px;
  padding: 0.4rem 0.75rem;
}
.hv2-body .canvas-search .prod-search,
.hv2-body #searchFormNew .prod-search {
  flex: 1;
  border: 0;
  background: transparent;
  outline: none;
  font-size: 1rem;
  min-height: 40px;
}
.hv2-body .canvas-search .tf-mini-search-frm button,
.hv2-body #searchFormNew button {
  border: 0;
  background: var(--hv2-orange);
  color: #fff;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.hv2-body .canvas-search .tf-mini-search-frm button i,
.hv2-body #searchFormNew button i {
  font-style: normal;
}
.hv2-body .canvas-search .tf-mini-search-frm button i.icon-search::before,
.hv2-body #searchFormNew button i.icon-search::before {
  content: "\f002";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
}
.hv2-body .canvas-search .icon-close::before,
.hv2-body .canvas-search .icon-close-popup::before {
  content: "\f00d";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
}

/* ---------- Page sections ---------- */
.hv2-page-section--browse {
  padding-bottom: 1.5rem;
}

/* Alternating soft section bands (break up white → slider → white) */
.hv2-page-section--browse > .hv2-intro,
.hv2-page-section--browse > .hv2-hero-ctas,
.hv2-page-section--browse > .hv2-section,
.hv2-page-section--browse > .hv2-gift-finder {
  max-width: none;
  width: 100%;
  margin-inline: 0;
  padding-inline: max(0.85rem, calc((100% - var(--hv2-max)) / 2 + 0.85rem));
}

.hv2-page-section--browse > *:nth-child(3n + 1):not(.hv2-products) {
  background-color: var(--hv2-band-cream);
}
.hv2-page-section--browse > *:nth-child(3n + 2):not(.hv2-products) {
  background-color: var(--hv2-band-sky);
}
.hv2-page-section--browse > *:nth-child(3n + 3):not(.hv2-products) {
  background-color: var(--hv2-band-peach);
}

.hv2-gift-finder {
  max-width: var(--hv2-max);
  margin: 0 auto;
  padding: 1.25rem 0.85rem 0;
}
.hv2-gift-finder--inline {
  padding: 1.25rem 0.85rem;
  margin: 0.25rem auto 0.75rem;
}
.hv2-page-section--browse > .hv2-gift-finder--inline:last-child {
  padding-bottom: 2rem;
}
.hv2-gift-finder__card {
  background: linear-gradient(145deg, #ffffff 0%, #fff9ff 52%, #f0f7ff 100%);
  border-radius: 28px;
  padding: 1.5rem 1.35rem 1.35rem;
  text-align: right;
  direction: rtl;
  box-shadow: 0 12px 32px rgba(79, 172, 254, 0.1);
  border: 1px solid rgba(167, 139, 250, 0.22);
}
.hv2-gift-finder .hv2-intro__finder-title {
  margin-top: 0;
}

.hv2-hero-ctas {
  max-width: var(--hv2-max);
  margin: 0 auto;
  padding: 0 0.85rem 1.25rem;
}
.hv2-hero-ctas--below-hero {
  padding-top: 0.15rem;
  padding-bottom: 0.5rem;
}
.hv2-hero-ctas--below-hero .hv2-hero-ctas__inner {
  background: transparent;
  border: 0;
  box-shadow: none;
  padding: 0;
}
.hv2-hero-ctas--below-hero .hv2-intro__ctas {
  margin: 0;
  max-width: none;
}
@media (min-width: 768px) {
  .hv2-hero-ctas--below-hero .hv2-intro__ctas {
    gap: 1rem;
    max-width: 42rem;
    margin-inline-end: auto;
  }
}
.hv2-hero-ctas__inner {
  background: linear-gradient(145deg, #ffffff 0%, #fff9ff 52%, #f0f7ff 100%);
  border-radius: 28px;
  padding: 1.25rem;
  box-shadow: 0 12px 32px rgba(79, 172, 254, 0.1);
  border: 1px solid rgba(167, 139, 250, 0.22);
}
.hv2-hero-ctas .hv2-intro__ctas {
  margin: 0;
  max-width: none;
}
@media (min-width: 768px) {
  .hv2-hero-ctas .hv2-intro__ctas {
    gap: 1rem;
    max-width: 42rem;
    margin-inline: auto;
  }
}

/* ---------- Hero intro (badge / h1 / description / finder / stats) ---------- */
.hv2-intro {
  max-width: var(--hv2-max);
  margin: 0 auto;
  padding: 1rem 0.85rem 0.5rem;
}
.hv2-intro__card {
  background: linear-gradient(145deg, #fffdf9 0%, #fff4e8 55%, #ffe8d4 100%);
  border-radius: 28px;
  padding: 1.75rem 1.35rem 1.5rem;
  text-align: right;
  direction: rtl;
  box-shadow: 0 12px 32px rgba(31, 26, 46, 0.06);
  border: 1px solid rgba(255, 200, 150, 0.35);
}
.hv2-intro__badge {
  display: inline-block;
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  background: #ffe8d6;
  color: var(--hv2-orange);
  font-size: 0.82rem;
  font-weight: 800;
  margin-bottom: 1rem;
}
.hv2-intro__title {
  margin: 0 0 0.75rem;
  font-size: clamp(1.65rem, 5.5vw, 2.35rem);
  font-weight: 800;
  line-height: 1.35;
  color: #1a2332;
}
.hv2-intro__title-main {
  color: #1a2332;
}
.hv2-intro__title-highlight {
  color: var(--hv2-orange);
  display: inline;
}
.hv2-intro__desc {
  margin: 0 0 1.25rem;
  margin-inline-end: auto;
  color: #7a8494;
  font-size: 0.98rem;
  line-height: 1.7;
  max-width: 36rem;
  direction: rtl;
  text-align: right;
  unicode-bidi: plaintext;
}
.hv2-intro__ctas {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
  margin: 0 0 1.35rem;
}
.hv2-intro__cta {
  display: block;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(31, 26, 46, 0.08);
  transition: transform 0.15s, box-shadow 0.15s;
  background: #fff;
  border: 1px solid rgba(255, 200, 150, 0.35);
}
.hv2-intro__cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 26px rgba(31, 26, 46, 0.12);
}
.hv2-intro__cta-img {
  width: 100%;
  height: auto;
  aspect-ratio: 2 / 1;
  object-fit: cover;
  display: block;
}
.hv2-intro__finder {
  margin: 0 0 1.35rem;
  text-align: right;
  direction: rtl;
}
.hv2-intro__finder-title {
  margin: 0 0 0.85rem;
  font-size: 1.02rem;
  font-weight: 800;
  color: #1a2332;
  line-height: 1.45;
}
.hv2-intro__finder-form {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}
.hv2-intro__finder-selects {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.65rem;
}
.hv2-intro__select {
  width: 100%;
  min-height: 48px;
  border-radius: 999px;
  border: 1px solid rgba(230, 126, 34, 0.28);
  background: #fff;
  padding: 0.55rem 1rem;
  font: inherit;
  font-weight: 600;
  color: #1a2332;
  text-align: right;
  direction: rtl;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23e67e22' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: left 1rem center;
  box-shadow: 0 4px 12px rgba(31, 26, 46, 0.04);
}
.hv2-intro__select:focus {
  outline: 3px solid rgba(79, 172, 254, 0.45);
  outline-offset: 1px;
  border-color: var(--hv2-orange);
}
.hv2-intro__finder-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 48px;
  padding: 0.7rem 1.75rem;
  border: 0;
  border-radius: 999px;
  background: var(--hv2-orange);
  color: #fff;
  font: inherit;
  font-weight: 800;
  font-size: 1rem;
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(230, 126, 34, 0.3);
  transition: background 0.15s, transform 0.15s;
}
.hv2-intro__finder-btn:hover {
  background: var(--hv2-orange-dark);
  transform: translateY(-2px);
}
.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}
.hv2-intro__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
  margin-top: 1.75rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(230, 126, 34, 0.15);
  text-align: right;
}
.hv2-intro__stat {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}
.hv2-intro__stat-value {
  font-size: clamp(1.25rem, 4vw, 1.6rem);
  font-weight: 800;
  color: #1a2332;
  line-height: 1.2;
}
.hv2-intro__stat-link {
  text-decoration: none;
  color: inherit;
}
.hv2-intro__stat-btn {
  appearance: none;
  border: 0;
  background: transparent;
  padding: 0;
  margin: 0;
  font: inherit;
  text-align: inherit;
  cursor: pointer;
  color: inherit;
}
.hv2-intro__stat-link:hover,
.hv2-intro__stat-btn:hover {
  color: var(--hv2-orange);
}
.hv2-intro__stat--google {
  align-items: flex-start;
  justify-content: center;
}
.hv2-google-badge {
  appearance: none;
  border: 0;
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.15rem;
  width: auto;
  max-width: none;
  margin: 0;
  padding: 0;
  background: transparent;
  border-radius: 0;
  box-shadow: none;
  cursor: pointer;
  transition: opacity 0.15s;
  text-align: start;
  direction: ltr;
}
.hv2-google-badge:hover {
  transform: none;
  box-shadow: none;
  opacity: 0.85;
}
.hv2-google-badge__line1 {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  line-height: 1;
}
.hv2-google-badge__logo {
  display: inline-flex;
  line-height: 0;
  flex: 0 0 auto;
}
.hv2-google-badge__logo svg {
  width: 28px;
  height: 28px;
  display: block;
}
.hv2-google-badge__score {
  font-size: clamp(1.25rem, 4vw, 1.6rem);
  font-weight: 700;
  color: #202124;
  line-height: 1;
  letter-spacing: -0.02em;
}
.hv2-google-badge__stars {
  display: inline-flex;
  align-items: center;
  gap: 0.06rem;
  color: #fbbc04;
  font-size: 22px;
  margin-bottom: 7px;
  line-height: 1;
}
.hv2-google-badge__count {
  font-size: 0.8rem;
  font-weight: 500;
  color: #70757a;
  line-height: 1.2;
  padding-inline-start: 2rem;
}
.hv2-intro__stat-label {
  font-size: 0.82rem;
  color: #8a94a3;
  font-weight: 600;
}
.hv2-intro__cats {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  justify-content: center;
  margin-top: 1rem;
  padding: 0 0.25rem;
}
.hv2-intro__cat {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0.45rem 1.15rem;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 800;
  font-size: 0.92rem;
  box-shadow: 0 6px 14px rgba(0,0,0,.08);
  transition: transform 0.15s;
}
.hv2-intro__cat:hover { transform: translateY(-2px); }
.hv2-intro__cat--c0 { background: #ffc857; color: #3b2a00; }
.hv2-intro__cat--c1 { background: #4facfe; color: #04243a; }
.hv2-intro__cat--c2 { background: #ff8fab; color: #4a1024; }
.hv2-intro__cat--c3 { background: #2dd4a8; color: #063528; }

@media (min-width: 768px) {
  .hv2-intro {
    padding: 1.25rem 0.85rem 0.75rem;
  }
  .hv2-intro__card {
    padding: 2.25rem 2rem 1.85rem;
  }
  .hv2-intro__ctas {
    gap: 1rem;
    max-width: 36rem;
    margin-inline-end: auto;
  }
}

/* ---------- Sections ---------- */
.hv2-section {
  max-width: var(--hv2-max);
  margin: 0 auto;
  padding: 1.85rem 0.85rem;
}
.hv2-section__head {
  margin-bottom: 1.15rem;
  text-align: center;
}
.hv2-section__eyebrow {
  display: block;
  width: 48px;
  height: 8px;
  margin: 0 auto 0.65rem;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--hv2-sun), var(--hv2-coral), var(--hv2-lilac));
}
.hv2-section__eyebrow--puzzle {
  background: linear-gradient(90deg, var(--hv2-sun), var(--hv2-sky));
}
.hv2-section__eyebrow--age {
  background: linear-gradient(90deg, var(--hv2-pink), var(--hv2-lilac));
}
.hv2-section__title {
  margin: 0 0 0.4rem;
  font-size: clamp(1.3rem, 4vw, 1.75rem);
  font-weight: 800;
  color: var(--hv2-text);
}
.hv2-section__subtitle {
  margin: 0 auto;
  max-width: 36rem;
  color: var(--hv2-muted);
  font-size: 0.98rem;
}

/* ---------- Sliders ---------- */
.hv2-slider {
  position: relative;
}
.hv2-slider__viewport {
  overflow: hidden;
  border-radius: calc(var(--hv2-radius) + 4px);
}
.hv2-slider__track {
  display: flex;
  gap: 0;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  overflow-anchor: none;
  padding: 0.15rem 0 0.35rem;
}
.hv2-slider__track::-webkit-scrollbar { display: none; }
.hv2-slider__slide {
  flex: 0 0 100%;
  width: 100%;
  min-width: 100%;
  scroll-snap-align: start;
  scroll-snap-stop: always;
  padding: 0.15rem;
}
.hv2-slider__arrow {
  display: none;
  position: absolute;
  top: calc(50% - 18px);
  transform: translateY(-50%);
  z-index: 3;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 0;
  background: #fff;
  color: var(--hv2-text);
  box-shadow: 0 6px 18px rgba(0,0,0,.14);
  cursor: pointer;
  align-items: center;
  justify-content: center;
}
.hv2-slider__arrow--prev { inset-inline-start: -0.15rem; }
.hv2-slider__arrow--next { inset-inline-end: -0.15rem; }

/* Category slider: always show left/right arrows */
.hv2-cat-slider {
  padding-inline: 1.35rem;
}
.hv2-cat-slider .hv2-cat-slider__arrow,
.hv2-cat-slider .hv2-slider__arrow {
  display: inline-flex !important;
  top: 50%;
  width: 30px;
  height: 30px;
  font-size: 0.75rem;
  background: #fff;
  color: var(--hv2-orange);
  border: 2px solid #ffe0c2;
  box-shadow: 0 4px 12px rgba(230, 126, 34, 0.18);
}
.hv2-cat-slider .hv2-slider__arrow:hover {
  background: var(--hv2-orange);
  color: #fff;
  border-color: var(--hv2-orange);
}
.hv2-cat-slider .hv2-slider__arrow--prev {
  inset-inline-start: 0;
}
.hv2-cat-slider .hv2-slider__arrow--next {
  inset-inline-end: 0;
}

/* Product category sliders: always show left/right arrows */

.hv2-products__slider .hv2-products__arrow,
.hv2-products__slider .hv2-slider__arrow {
  display: inline-flex !important;
  top: 50%;
  width: 30px;
  height: 30px;
  font-size: 1.5rem;
  background: #fff;
  color: var(--hv2-orange);
  box-shadow: 0 4px 12px rgba(230, 126, 34, 0.18);
}
.hv2-products__slider .hv2-slider__arrow:hover {
  background: var(--hv2-orange);
  color: #fff;
  border-color: var(--hv2-orange);
}
.hv2-products__slider .hv2-slider__arrow--prev {
  inset-inline-start: 0;
}
.hv2-products__slider .hv2-slider__arrow--next {
  inset-inline-end: 0;
}

.hv2-slider__dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.15rem;
  margin-top: 0.85rem;
}
.hv2-slider__dot {
  position: relative;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 0;
  background: transparent;
  padding: 0;
  cursor: pointer;
  flex: 0 0 auto;
}
.hv2-slider__dot::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: #c45f0f;
  opacity: 0.45;
  transform: translate(-50%, -50%);
  transition: width 0.2s, background 0.2s, opacity 0.2s;
}
.hv2-slider__dot.is-active::after {
  width: 26px;
  background: #b45309;
  opacity: 1;
}
@media (min-width: 992px) {
  .hv2-cat-slider,
  .hv2-products__slider {
    padding-inline: 1.6rem;
  }
  .hv2-cat-slider .hv2-slider__arrow,
  .hv2-products__slider .hv2-slider__arrow {
    width: 34px;
    height: 34px;
  }
}

/* Category grid — mobile 2×2, desktop 4×2; image pops out (3D) */
.hv2-cat-slider--desktop {
  display: none;
}
@media (min-width: 992px) {
  .hv2-cat-slider--mobile {
    display: none;
  }
  .hv2-cat-slider--desktop {
    display: block;
  }
}
.hv2-cat-slider .hv2-slider__viewport {
  overflow-x: hidden;
  overflow-y: visible;
  padding-top: 0.55rem;
  margin-top: -0.25rem;
}
.hv2-cat-slider .hv2-slider__track {
  overflow-x: auto;
  overflow-y: visible;
  padding-top: 1rem;
  padding-bottom: 0.35rem;
}
.hv2-cat-slider .hv2-slider__slide {
  overflow: visible;
}
.hv2-cat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 2.5rem 0.75rem;
  min-height: 0;
  padding: 2.25rem 0.2rem 0.2rem;
  overflow: visible;
}
@media (min-width: 992px) {
  .hv2-cat-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 2.75rem 1rem;
    padding: 2.5rem 0.35rem 0.35rem;
  }
}
.hv2-cat-card {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  gap: 0;
  padding: 0.2rem 0.55rem 0.65rem;
  border-radius: var(--hv2-radius);
  text-decoration: none;
  text-align: center;
  min-height: 66px;
  box-shadow: 0 10px 24px rgba(31, 26, 46, 0.08);
  transition: transform 0.18s, box-shadow 0.18s;
  border: 3px solid transparent;
  overflow: visible;
  position: relative;
  isolation: isolate;
}
.hv2-cat-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 32px rgba(31, 26, 46, 0.14);
}
.hv2-cat-card--c0 { background: linear-gradient(160deg, #fff3d6, #ffe8a3); border-color: #ffc857; }
.hv2-cat-card--c1 { background: linear-gradient(160deg, #e3f4ff, #b8e4ff); border-color: #4facfe; }
.hv2-cat-card--c2 { background: linear-gradient(160deg, #ffe4ec, #ffc2d4); border-color: #ff8fab; }
.hv2-cat-card--c3 { background: linear-gradient(160deg, #d9fff2, #a7f3d0); border-color: #2dd4a8; }
.hv2-cat-card--c4 { background: linear-gradient(160deg, #efe7ff, #d4c4ff); border-color: #a78bfa; }
.hv2-cat-card--c5 { background: linear-gradient(160deg, #ffe5d6, #ffc4a8); border-color: #ff6b6b; }

.hv2-cat-card__media {
  width: 78px;
  height: 78px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  border-radius: 0;
  background: transparent;
  overflow: visible;
  font-size: 1.5rem;
  color: var(--hv2-orange);
  box-shadow: none;
  margin-top: -1.75rem;
  position: relative;
  z-index: 2;
  pointer-events: none;
}
.hv2-cat-card__media img {
  width: 115%;
  height: 115%;
  max-width: none;
  object-fit: contain;
  padding: 0;
  background: transparent;
  transform: translateY(-8px) scale(1.08);
  filter:
    drop-shadow(0 10px 14px rgba(31, 26, 46, 0.28))
    drop-shadow(0 3px 5px rgba(31, 26, 46, 0.14));
  transition: transform 0.22s ease, filter 0.22s ease;
  will-change: transform;
}
.hv2-cat-card:hover .hv2-cat-card__media img {
  transform: translateY(-14px) scale(1.14);
  filter:
    drop-shadow(0 16px 20px rgba(31, 26, 46, 0.34))
    drop-shadow(0 5px 8px rgba(31, 26, 46, 0.16));
}
.hv2-cat-card__name {
  font-weight: 800;
  font-size: 0.95rem;
  color: var(--hv2-text);
  position: relative;
  z-index: 1;
}

/* ---------- Product sections ---------- */
.hv2-products {
  background-color: var(--hv2-band-cream);
  margin-top: 0;
  margin-bottom: 0;
}
.hv2-section.hv2-products.hv2-products--accent-0 {
  background-color: var(--hv2-band-cream);
}
.hv2-section.hv2-products.hv2-products--accent-1 {
  background-color: var(--hv2-band-sky);
}
.hv2-section.hv2-products.hv2-products--accent-2 {
  background-color: var(--hv2-band-peach);
}

.hv2-products__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.85rem;
  text-align: start;
}
.hv2-products__title { margin: 0; }
.hv2-products__all {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-weight: 800;
  color: #7c2d12;
  text-decoration: none;
  white-space: nowrap;
  font-size: 0.9rem;
  background: #ffedd5;
  padding: 0.55rem 1rem;
  min-height: 44px;
  border-radius: 999px;
  border: 2px solid #c2410c;
  box-shadow: 0 4px 10px rgba(194, 65, 12, 0.12);
}
.hv2-products__all:hover {
  background: #c2410c;
  color: #fff;
  border-color: #c2410c;
}

.hv2-product-track {
  align-items: stretch;
  gap: 15px !important;
  padding-inline: 0.15rem;
  overflow-anchor: none;
}
.hv2-product-slide {
  flex: 0 0 200px;
  max-width: 200px;
  width: 200px;
  min-width: 200px;
  height: 315px;
  scroll-snap-align: start;
}
.hv2-product-slide > .col-6,
.hv2-product-slide > .col-md-3,
.hv2-product-track .col-6,
.hv2-product-track .col-md-3 {
  width: 100% !important;
  max-width: 100% !important;
  height: 100% !important;
  flex: none !important;
  padding: 0 !important;
  margin: 0 !important;
}

/* Home-v2 product track sizing only — card chrome lives in product-card-shared.css */
.hv2-body .hv2-product-track .product-card,
.hv2-body .hv2-product-track .card-product {
  width: 200px !important;
  height: 315px !important;
  min-width: 200px !important;
  min-height: 315px !important;
  max-width: 200px !important;
  max-height: 315px !important;
}
.hv2-body .hv2-product-track .product-img-wrapper {
  flex: 0 0 200px !important;
  width: 200px !important;
  height: 200px !important;
  max-height: 200px !important;
  aspect-ratio: auto !important;
  padding-bottom: 0 !important;
}
.hv2-body .hv2-product-track .product-card .card-body {
  flex: 1 1 auto !important;
  min-height: 0 !important;
  overflow: hidden;
}
.hv2-body .hv2-product-track .product-card .card-title {
  height: 42px !important;
  min-height: 42px !important;
  max-height: 42px !important;
  margin: 0 !important;
  overflow: hidden;
}
.hv2-body .hv2-product-track .product-card .card-title a {
  height: 42px !important;
  max-height: 42px !important;
  display: -webkit-box !important;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  overflow: hidden;
  line-height: 21px !important;
  font-weight: 550 !important;
}
.hv2-body .hv2-product-track .add-to-cart-button-container {
  margin-top: auto !important;
}

.hv2-show-more {
  flex: 0 0 48%;
  max-width: 48%;
  min-width: 48%;
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  min-height: 240px;
  background:
    linear-gradient(165deg, #fffaf3 0%, #fff1e0 48%, #ffe0c2 100%);
  color: var(--hv2-orange-dark);
  border: 2px solid #ffd19a;
  border-radius: 20px;
  text-decoration: none;
  font-weight: 800;
  box-shadow: 0 10px 22px rgba(230, 126, 34, 0.12);
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}
.hv2-show-more:hover {
  transform: translateY(-3px);
  border-color: var(--hv2-orange);
  box-shadow: 0 14px 28px rgba(230, 126, 34, 0.18);
  color: var(--hv2-orange-dark);
}
@media (min-width: 768px) {
  .hv2-show-more {
    flex-basis: 23%;
    max-width: 23%;
    min-width: 23%;
  }
}
.hv2-show-more__label {
  font-size: 0.95rem;
  letter-spacing: 0.01em;
}
.hv2-show-more__arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.6rem;
  height: 2.6rem;
  border-radius: 999px;
  background: var(--hv2-orange);
  color: #fff;
  font-size: 1.15rem;
  line-height: 1;
  box-shadow: 0 6px 14px rgba(230, 126, 34, 0.28);
}
.hv2-show-more__arrow i {
  font-weight: 900;
  -webkit-text-stroke: 1.5px currentColor;
  paint-order: stroke fill;
}

/* Skeletons */
.hv2-skeleton-card {
  flex: 0 0 48%;
  max-width: 48%;
  min-width: 48%;
  scroll-snap-align: start;
}
@media (min-width: 768px) {
  .hv2-skeleton-card {
    flex-basis: 23%;
    max-width: 23%;
    min-width: 23%;
  }
}
.hv2-skeleton-card__img {
  aspect-ratio: 1;
  border-radius: 20px;
  background: linear-gradient(90deg, #ffe8d1 25%, #fff3e6 50%, #ffe8d1 75%);
  background-size: 200% 100%;
  animation: hv2-shimmer 1.4s infinite;
}
.hv2-skeleton-card__line {
  height: 12px;
  margin-top: 0.55rem;
  border-radius: 8px;
  background: #ffe0c2;
}
.hv2-skeleton-card__line--short { width: 55%; }
@keyframes hv2-shimmer {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* ---------- Age cards ---------- */
.hv2-ages__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem;
}
@media (min-width: 768px) {
  .hv2-ages__grid { grid-template-columns: repeat(3, 1fr); }
}
@media (min-width: 992px) {
  .hv2-ages__grid { grid-template-columns: repeat(4, 1fr); }
}
.hv2-age-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--hv2-radius);
  min-height: 150px;
  display: flex;
  align-items: flex-end;
  padding: 1.1rem;
  text-decoration: none;
  color: #fff;
  isolation: isolate;
  box-shadow: 0 12px 28px rgba(31, 26, 46, 0.12);
  transition: transform 0.18s;
}
.hv2-age-card:hover { transform: translateY(-4px) scale(1.02); }
.hv2-age-card--c0 { background: linear-gradient(145deg, #ff6b6b, #ff8fab); }
.hv2-age-card--c1 { background: linear-gradient(145deg, #4facfe, #00f2fe); }
.hv2-age-card--c2 { background: linear-gradient(145deg, #a78bfa, #ff8fab); }
.hv2-age-card--c3 { background: linear-gradient(145deg, #2dd4a8, #4facfe); }
.hv2-age-card--c4 { background: linear-gradient(145deg, #ffc857, #ff6b6b); }
.hv2-age-card__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}
.hv2-age-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(transparent 25%, rgba(0,0,0,.55));
  z-index: -1;
}
.hv2-age-card__title {
  font-weight: 800;
  font-size: 1.05rem;
  text-shadow: 0 2px 8px rgba(0,0,0,.25);
}

/* ---------- Bottom SEO content ---------- */
.hv2-seo-content {
  padding-top: 2.25rem;
  padding-bottom: 2.5rem;
  color: var(--hv2-text);
}
.hv2-seo-content__title {
  margin: 0 0 1.25rem;
  font-size: clamp(1.35rem, 3.5vw, 1.85rem);
  font-weight: 800;
  line-height: 1.35;
  text-align: center;
  color: var(--hv2-text);
}
.hv2-seo-content__body {
  max-width: 46rem;
  margin-inline: auto;
  font-size: 0.98rem;
  line-height: 1.85;
  color: #3a3448;
}
.hv2-seo-content__body > *:first-child {
  margin-top: 0;
}
.hv2-seo-content__body > *:last-child {
  margin-bottom: 0;
}
.hv2-seo-content__body h2,
.hv2-seo-content__body h3,
.hv2-seo-content__body h4 {
  margin: 1.75rem 0 0.65rem;
  font-weight: 800;
  line-height: 1.4;
  color: var(--hv2-text);
}
.hv2-seo-content__body h2 {
  font-size: clamp(1.15rem, 2.6vw, 1.35rem);
}
.hv2-seo-content__body h3 {
  font-size: 1.08rem;
}
.hv2-seo-content__body p {
  margin: 0 0 1rem;
}
.hv2-seo-content__body ul,
.hv2-seo-content__body ol {
  margin: 0 0 1rem;
  padding-inline-start: 1.35rem;
}
.hv2-seo-content__body li {
  margin-bottom: 0.35rem;
}
.hv2-seo-content__body a {
  color: var(--hv2-orange);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.hv2-seo-content__body a:hover {
  color: var(--hv2-orange-dark);
}
.hv2-seo-content__body strong,
.hv2-seo-content__body b {
  font-weight: 800;
  color: var(--hv2-text);
}

/* ---------- FAQ ---------- */
.hv2-faq {
  padding-top: 2rem;
  padding-bottom: 2.5rem;
}
.hv2-faq__list {
  max-width: 46rem;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}
.hv2-faq__item {
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(31, 26, 46, 0.08);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 6px 18px rgba(31, 26, 46, 0.04);
}
.hv2-faq__question {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.85rem;
  padding: 1rem 1.1rem;
  font-weight: 800;
  font-size: 0.98rem;
  line-height: 1.45;
  color: var(--hv2-text);
  user-select: none;
}
.hv2-faq__question::-webkit-details-marker {
  display: none;
}
.hv2-faq__question-text {
  flex: 1;
}
.hv2-faq__icon {
  flex: 0 0 auto;
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 999px;
  background: #fff3e6;
  color: var(--hv2-orange);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  font-size: 0.7rem;
  line-height: 1;
}
.hv2-faq__icon-plus,
.hv2-faq__icon-minus {
  position: absolute;
  inset: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.15s ease, transform 0.15s ease;
}
.hv2-faq__icon-plus {
  opacity: 1;
  transform: scale(1);
}
.hv2-faq__icon-minus {
  opacity: 0;
  transform: scale(0.6);
}
.hv2-faq__item[open] .hv2-faq__icon-plus {
  opacity: 0;
  transform: scale(0.6);
}
.hv2-faq__item[open] .hv2-faq__icon-minus {
  opacity: 1;
  transform: scale(1);
}
.hv2-faq__item[open] .hv2-faq__question {
  color: var(--hv2-orange-dark);
}
.hv2-faq__item[open] .hv2-faq__icon {
  background: #ffe0c2;
  color: var(--hv2-orange-dark);
}
.hv2-faq__answer {
  padding: 0 1.1rem 1.05rem;
  color: #4a4458;
  font-size: 0.95rem;
  line-height: 1.75;
}
.hv2-faq__answer p {
  margin: 0;
}

/* ---------- Gift CTA ---------- */
.hv2-gift { padding-bottom: 2.75rem; }
.hv2-gift__inner {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  min-height: 240px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-align: center;
  box-shadow: 0 18px 40px rgba(124, 58, 237, 0.25);
}
.hv2-gift__inner--fallback {
  background: linear-gradient(120deg, #7c3aed, #ff8fab 50%, #ffc857);
}
.hv2-gift__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.5;
}
.hv2-gift__content {
  position: relative;
  z-index: 1;
  padding: 2.25rem 1.35rem;
  max-width: 540px;
}
.hv2-gift__badge {
  display: block;
  width: 56px;
  height: 56px;
  margin: 0 auto 0.75rem;
  border-radius: 18px;
  background: rgba(255,255,255,.22);
  border: 3px solid rgba(255,255,255,.55);
  position: relative;
}
.hv2-gift__badge::before,
.hv2-gift__badge::after {
  content: "";
  position: absolute;
  background: #fff;
  border-radius: 2px;
}
.hv2-gift__badge::before {
  width: 60%;
  height: 4px;
  top: 48%;
  left: 20%;
}
.hv2-gift__badge::after {
  width: 4px;
  height: 60%;
  left: 48%;
  top: 20%;
}
.hv2-gift__title {
  margin: 0 0 0.55rem;
  font-size: clamp(1.45rem, 4.5vw, 2.1rem);
  font-weight: 800;
}
.hv2-gift__desc {
  margin: 0 0 1.15rem;
  opacity: 0.95;
  font-size: 1.02rem;
}
.hv2-gift__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.7rem 1.6rem;
  border-radius: 999px;
  background: #fff;
  color: #5b21b6;
  text-decoration: none;
  font-weight: 800;
  box-shadow: 0 8px 20px rgba(0,0,0,.18);
}
.hv2-gift__btn:hover { transform: translateY(-2px); color: #5b21b6; }

/* ---------- Floating / mobile nav ---------- */
.fab-contact {
  position: fixed;
  bottom: 5.5rem;
  inset-inline-start: 1rem;
  z-index: 90;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.7rem;
  text-decoration: none;
  box-shadow: 0 8px 20px rgba(37, 211, 102, .35);
}
.spin-win-floating-btn {
  position: fixed;
  bottom: 5.5rem;
  inset-inline-end: 1rem;
  z-index: 90;
  display: flex;
  flex-direction: column;
  align-items: center;
  cursor: pointer;
}
.spin-icon { width: 48px; height: 48px; }
.spin-text {
  font-size: 0.7rem;
  font-weight: 800;
  background: #fff;
  padding: 0.2rem 0.45rem;
  border-radius: 8px;
  margin-top: 0.2rem;
  box-shadow: 0 4px 10px rgba(0,0,0,.1);
}

.hv2-body .footer { margin-top: 1rem; }
@media (max-width: 767.98px) {
  .hv2-body .footer .footer-main-row {
    padding-top: 1.35rem !important;
    padding-bottom: 1.35rem !important;
  }
  .hv2-body .footer .footer-col--brand {
    text-align: left;
  }
  .hv2-body .footer .footer-col--brand .footer-social {
    justify-content: flex-start;
    margin-top: 0.75rem !important;
  }
  .hv2-body .footer .footer-col--links {
    text-align: right;
  }
  .hv2-body .footer .footer-col--links h6,
  .hv2-body .footer .footer-col--links ul {
    text-align: right;
  }
  .hv2-body .footer .footer-col--maps {
    order: 3;
    margin-top: 0.25rem;
    text-align: center;
  }
  .hv2-body .footer .footer-col--maps .footer-maps-title {
    text-align: center;
  }
  .hv2-body .footer .footer-col--maps .footer-maps-grid {
    justify-content: center;
  }
  .hv2-body .footer .footer-col--maps .footer-map-item {
    flex: 0 0 auto;
    width: auto;
    max-width: 220px;
    margin-inline: auto;
  }
}
.hv2-body .one-cent-bar {
  position: fixed;
  bottom: 3.7rem;
  inset-inline: 0.75rem;
  z-index: 998;
  background: #fff8d6;
  border: 2px solid #ffc857;
  border-radius: 14px;
  padding: 0.55rem 0.75rem;
  font-size: 0.82rem;
  text-align: center;
  font-weight: 700;
}

@media (max-width: 767.98px) {
  main#main-content { padding-bottom: 4.75rem; }
}

/* ---------- Google reviews modal (widget-style) ---------- */
.hv2-reviews-modal[hidden] { display: none !important; }
.hv2-reviews-modal {
  position: fixed;
  inset: 0;
  z-index: 1080;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 0;
}
@media (min-width: 576px) {
  .hv2-reviews-modal {
    align-items: center;
    padding: 1.25rem;
  }
}
.hv2-reviews-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(20, 16, 28, 0.55);
  border: 0;
  cursor: pointer;
}
.hv2-reviews-modal__panel {
  position: relative;
  z-index: 1;
  width: min(520px, 100%);
  max-height: min(88vh, 760px);
  overflow: auto;
  background: #fff;
  border-radius: 24px 24px 0 0;
  box-shadow: 0 -12px 40px rgba(0, 0, 0, 0.2);
  padding: 1.15rem 1.1rem 1.35rem;
  direction: rtl;
  text-align: right;
  overscroll-behavior: contain;
}
@media (min-width: 576px) {
  .hv2-reviews-modal__panel {
    border-radius: 24px;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.22);
  }
}
.hv2-reviews-modal__close {
  position: absolute;
  top: 0.85rem;
  inset-inline-start: 0.85rem;
  width: 36px;
  height: 36px;
  border: 0;
  border-radius: 50%;
  background: #f3f4f6;
  color: #374151;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.hv2-reviews-modal__header {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid #f0f0f0;
  margin-bottom: 0.85rem;
}
.hv2-reviews-modal__brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding-inline-end: 2.5rem;
}
.hv2-reviews-modal__g {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.2rem;
  color: #fff;
  background: linear-gradient(135deg, #4285f4, #34a853 45%, #fbbc05 70%, #ea4335);
}
.hv2-reviews-modal__title {
  margin: 0;
  font-size: 1.15rem;
  font-weight: 800;
  color: #1a2332;
  line-height: 1.3;
}
.hv2-reviews-modal__subtitle {
  margin: 0.15rem 0 0;
  font-size: 0.85rem;
  color: #6b7280;
  font-weight: 600;
}
.hv2-reviews-modal__score {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.55rem 0.75rem;
}
.hv2-reviews-modal__score-num {
  font-size: 2rem;
  font-weight: 800;
  color: #1a2332;
  line-height: 1;
}
.hv2-reviews-modal__stars,
.hv2-review-card__stars {
  color: #fbbc05;
  display: inline-flex;
  gap: 0.12rem;
  font-size: 0.95rem;
}
.hv2-reviews-modal__count {
  font-size: 0.9rem;
  color: #6b7280;
  font-weight: 600;
}
.hv2-reviews-modal__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}
.hv2-reviews-modal__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0.45rem 0.95rem;
  border-radius: 999px;
  border: 1px solid #e5e7eb;
  background: #fff;
  color: #1a2332;
  font-weight: 700;
  font-size: 0.88rem;
  text-decoration: none;
}
.hv2-reviews-modal__btn--primary {
  background: #4285f4;
  border-color: #4285f4;
  color: #fff;
}
.hv2-reviews-modal__btn:hover {
  filter: brightness(0.97);
  color: inherit;
}
.hv2-reviews-modal__btn--primary:hover {
  color: #fff;
  filter: brightness(1.05);
}
.hv2-reviews-modal__list {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}
.hv2-review-card {
  border: 1px solid #f0f0f0;
  border-radius: 16px;
  padding: 0.9rem;
  background: #fafafa;
}
.hv2-review-card__head {
  display: flex;
  gap: 0.7rem;
  align-items: flex-start;
}
.hv2-review-card__avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  flex: 0 0 auto;
}
.hv2-review-card__avatar--fallback {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #e8f0fe;
  color: #1a73e8;
  font-weight: 800;
}
.hv2-review-card__author {
  display: block;
  font-size: 0.95rem;
  color: #1a2332;
}
.hv2-review-card__row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.45rem;
  margin-top: 0.2rem;
}
.hv2-review-card__time {
  font-size: 0.78rem;
  color: #9ca3af;
}
.hv2-review-card__text {
  margin: 0.65rem 0 0;
  font-size: 0.92rem;
  line-height: 1.65;
  color: #374151;
  white-space: pre-wrap;
}
.hv2-reviews-modal__empty {
  margin: 1rem 0;
  text-align: center;
  color: #6b7280;
}
.hv2-reviews-modal__attribution {
  margin: 1rem 0 0;
  font-size: 0.75rem;
  color: #9ca3af;
  text-align: center;
}
.hv2-reviews-modal__attribution a {
  color: #4285f4;
  text-decoration: none;
  font-weight: 700;
}
body.hv2-reviews-open {
  overflow: hidden;
}
