/* fonts — Melodrama (Fontshare / ITF) */

@font-face {
  font-family: 'Melodrama-Medium';
  src: url('../fonts/melodrama/Fonts/WEB/fonts/Melodrama-Medium.woff2') format('woff2'),
       url('../fonts/melodrama/Fonts/WEB/fonts/Melodrama-Medium.woff') format('woff'),
       url('../fonts/melodrama/Fonts/WEB/fonts/Melodrama-Medium.ttf') format('truetype');
  font-weight: 500;
  font-display: swap;
  font-style: normal;
}

html,body {
	margin: 0;
	padding: 0;
	font-family: "Nunito", sans-serif;
}

h1,h2,h3,h4,h5,h6 {
	color:#000;
	font-family: 'Melodrama-Medium';
	font-size:54px;
}

h2 {
  font-family: 'Melodrama-Medium';
	font-size:42px
}

h3 {
  font-weight: bold;
  font-family: "Nunito", sans-serif;
	font-size:30px;
}

h4 {
  font-family: "Nunito", sans-serif;
  font-weight: bold;
	font-size:24px;
}

h5 {
  font-family: "Nunito", sans-serif;
  font-weight: bold;
	font-size:22px;
}

p {
	font-size:18px;
}

img {
	max-width: 100%;
}

* {
	box-sizing: border-box;
}

.container {
	max-width:1600px;
}

/* Buton outline reutilizabil: <a class="buton-standard"> sau <button type="button" class="buton-standard"> */
.buton-standard {
  --buton-standard-accent: #d44601;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 2.5rem;
  margin: 0;
  border: 2px solid #111;
  border-radius: 0;
  background-color: #fff;
  color: #111;
  font-family: "Nunito", sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  line-height: 1.2;
  cursor: pointer;
  transition:
    color 0.28s ease,
    background-color 0.28s ease,
    border-color 0.28s ease,
    box-shadow 0.28s ease,
    transform 0.28s ease;
}

button.buton-standard {
  font: inherit;
  appearance: none;
}

.buton-standard:hover {
  background-color: var(--buton-standard-accent);
  border-color: var(--buton-standard-accent);
  color: #fff;
  box-shadow: 0 6px 20px rgba(212, 70, 1, 0.35);
  transform: translateY(-2px);
}

.buton-standard:active {
  transform: translateY(0);
  box-shadow: 0 2px 10px rgba(212, 70, 1, 0.3);
}

.buton-standard:focus-visible {
  outline: 2px solid var(--buton-standard-accent);
  outline-offset: 3px;
}

/* Buton portocaliu: stare implicită = „plin” (ca hover la buton-standard); hover = invers (ca default la buton-standard) */
.buton-portocaliu {
  --buton-portocaliu-fill: #d94100;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.95rem 2rem;
  margin: 0;
  border: 2px solid var(--buton-portocaliu-fill);
  border-radius: 0;
  background-color: var(--buton-portocaliu-fill);
  color: #fff;
  font-family: "Nunito", sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  line-height: 1.25;
  cursor: pointer;
  transition:
    color 0.28s ease,
    background-color 0.28s ease,
    border-color 0.28s ease,
    box-shadow 0.28s ease,
    transform 0.28s ease;
}

button.buton-portocaliu {
  font: inherit;
  appearance: none;
}

.buton-portocaliu:hover {
  background-color: #fff;
  border-color: #111;
  color: #111;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  transform: translateY(-2px);
}

.buton-portocaliu:active {
  transform: translateY(0);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.12);
}

.buton-portocaliu:focus-visible {
  outline: 2px solid var(--buton-portocaliu-fill);
  outline-offset: 3px;
}

.top-bar-message {
  width: 100%;
  display: block;
  color: #fff;
  background-color: #d44601;
  padding: 10px 0;
  line-height: 1.2;
  font-size: 16px;
  overflow: hidden;
  --top-marquee-duration: 28s;
}

.top-bar-message__viewport {
  width: 100%;
  max-width: 100%;
  overflow: hidden;
}

.top-bar-message__track {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-width: 0;
}

.top-bar-message:not(.is-marquee) .top-bar-message__chunk:last-child {
  display: none;
}

.top-bar-message__chunk {
  flex-shrink: 0;
  box-sizing: content-box;
}

.top-bar-message.is-marquee .top-bar-message__chunk:not(:last-child) {
  padding-right: 2.5rem;
}

.top-bar-message__text {
  display: inline-block;
  white-space: nowrap;
}

.top-bar-message.is-marquee .top-bar-message__track {
  display: inline-flex;
  justify-content: flex-start;
  width: max-content;
  min-width: 100%;
  animation: top-bar-marquee var(--top-marquee-duration, 28s) linear infinite;
  will-change: transform;
}

@keyframes top-bar-marquee {
  0% {
    transform: translate3d(0, 0, 0);
  }
  100% {
    transform: translate3d(-50%, 0, 0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .top-bar-message.is-marquee .top-bar-message__track {
    animation: none;
  }

  .top-bar-message.is-marquee .top-bar-message__viewport {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
}

/* ——— Header TERATAI ——— */
.site-head-block {
  position: relative;
  z-index: 1030;
}

.site-header {
  width: 100%;
  color: #fff;
}

/* Gradient subtil peste hero: negru 50% sus → transparent jos */
.over-hero-header {
  padding-bottom:10px;
  background-image: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.55),
    rgba(0, 0, 0, 0)
  );
}

/*
 * Mod „dark header” pe fundal transparent deasupra conținutului deschis (ex. alb):
 * text și iconițe închise pentru contrast. Iconițele SVG albe → negru cu filter (ca --on-light),
 * fără fișiere alternative. Logo-ul wordmark alb din logo.svg → negru la fel.
 * Font Awesome (ex. hamburger) moștenește color de pe .site-header.
 */
.site-header.dark-header {
  color: #111;
}

.site-header.dark-header .site-header__links > li > a:not(.dropdown-toggle),
.site-header.dark-header .site-header__links .dropdown-toggle {
  color: #111;
}

.site-header.dark-header .site-header__logo {
  color: #111;
}

.site-header.dark-header .site-header__logo-img {
  filter: brightness(0);
}

.site-header.dark-header .site-header__icon-img,
.site-header.dark-header .site-header__icon-img.site-header__icon-img--on-light {
  filter: brightness(0);
  opacity: 1;
}

.site-header.dark-header .site-header__icon-btn {
  color: #111;
}

.site-header.dark-header.over-hero-header {
  background-image: none;
  background-color: transparent;
  padding-bottom: 0.75rem;
}

/* Suprapune zona hero; înălțimea „top” e setată sub bara promo (în .site-head-block) */
.site-header--absolute {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
}

.site-head-block .site-header--absolute {
  top: 100%;
}

/* Header în flux normal (nu peste hero) */
.site-header--relative {
  position: relative;
  left: auto;
  right: auto;
  top: auto;
}

.site-header__inner {
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
}

@media (min-width: 992px) {
  .site-header__inner {
    padding-left: max(1rem, env(safe-area-inset-left, 0px));
    padding-right: max(1rem, env(safe-area-inset-right, 0px));
  }
}

/* Desktop: căutare (margine stângă) | meniu stânga | logo | meniu dreapta | iconuri (margine dreaptă) */
.site-header__desktop {
  grid-template-columns: auto minmax(0, 1fr) auto minmax(0, 1fr) auto;
  align-items: end;
  column-gap: clamp(0.75rem, 2vw, 1.5rem);
}

.site-header__search {
  justify-self: start;
  margin: 0;
  padding-left: 0;
}

.site-header__nav--left {
  justify-self: end;
  display: flex;
  align-items: flex-end;
}

.site-header__nav--right {
  justify-self: start;
  display: flex;
  align-items: flex-end;
}

.site-header__tools {
  justify-self: end;
  display: flex;
  align-items: flex-end;
  gap: 0.75rem;
}

.site-header__nav {
  flex: 0 1 auto;
  min-width: 0;
}

.site-header__links {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  gap: clamp(0.5rem, 1.5vw, 1.25rem);
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-header__links > li > a:not(.dropdown-toggle) {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  white-space: nowrap;
}

.site-header__links > li > a:hover {
  opacity: 0.85;
}

.site-header__links .dropdown-toggle {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
}

.site-header__links .dropdown-toggle::after {
  margin-left: 0.35em;
  vertical-align: 0.15em;
}

.site-header__logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  text-decoration: none;
  color: #fff;
  text-align: center;
  justify-self: center;
  align-self: end;
}

.site-header__logo-img {
  display: block;
  width: auto;
  height: auto;
  max-width: min(200px, 28vw);
  max-height: 72px;
}

.site-header__logo-img--compact {
  max-width: min(150px, 42vw);
  max-height: 48px;
}

.site-header__icon-img {
  display: block;
  flex-shrink: 0;
  object-fit: contain;
  pointer-events: none;
}

/* Iconițe albe pe fundal deschis (offcanvas, câmp căutare) */
.site-header__icon-img--on-light {
  filter: brightness(0);
  opacity: 0.5;
}

.site-header__tool {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: inherit;
  text-decoration: none;
  line-height: 0;
}

.site-header__tool--badge {
  padding: 0.25rem;
}

.site-header__tool--dark {
  color: #222;
}

.site-header__badge {
  position: absolute;
  top: -2px;
  right: -6px;
  min-width: 18px;
  height: 18px;
  padding: 0 4px;
  border-radius: 999px;
  background: #e85d04;
  color: #fff;
  font-size: 0.65rem;
  font-weight: 700;
  line-height: 18px;
  text-align: center;
  font-family: "Nunito", sans-serif;
}

.site-header__badge--accent {
  background: #d93025;
}

.site-header__icon-btn {
  border: none;
  background: transparent;
  color: inherit;
  padding: 0.35rem;
  font-size: 1.2rem;
  line-height: 1;
  cursor: pointer;
}

/* Overlay căutare (blur + întunecare) */
.site-search-overlay {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: max(1rem, env(safe-area-inset-top, 0px)) clamp(1rem, 4vw, 2rem)
    max(1rem, env(safe-area-inset-bottom, 0px));
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition:
    opacity 0.22s ease,
    visibility 0.22s ease;
}

.site-search-overlay.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.site-search-overlay[hidden] {
  display: none !important;
}

.site-search-overlay__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.32);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
}

.site-search-overlay__panel {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 40rem;
}

.site-search-overlay__top {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 0.35rem;
}

.site-search-overlay__close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem;
  margin: -0.35rem -0.35rem 0 0;
  border: none;
  background: transparent;
  color: #fff;
  font-size: 1.35rem;
  line-height: 1;
  cursor: pointer;
  transition: opacity 0.2s ease;
}

.site-search-overlay__close:hover {
  opacity: 0.8;
}

.site-search-overlay__close:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.85);
  outline-offset: 3px;
}

.site-search-overlay__form {
  margin: 0;
}

.site-search-overlay__input {
  display: block;
  width: 100%;
  margin: 0;
  padding: 0.65rem 0;
  border: none;
  border-bottom: 1px solid #fff;
  border-radius: 0;
  background: transparent;
  color: #fff;
  font-family: "Nunito", sans-serif;
  font-size: clamp(1.05rem, 2.4vw, 1.3rem);
  font-weight: 500;
  -webkit-appearance: none;
  appearance: none;
}

.site-search-overlay__input::placeholder {
  color: rgba(255, 255, 255, 0.45);
}

.site-search-overlay__input:focus,
.site-search-overlay__input:focus-visible {
  outline: none;
  box-shadow: none;
  border-bottom-color: #fff;
}

.offcanvas-header .btn-close {
  margin-left: 0 !important;
}

.offcanvas-header .btn-close:focus,
.offcanvas-header .btn-close:focus-visible {
  outline: none;
  box-shadow: none !important;
}

.site-header__icon-btn:hover {
  opacity: 0.85;
}

/* Bară mobilă: fundal teal + pattern */
.site-header__mobile {
  min-height: 56px;
  padding: 0.25rem 0;
  margin-left: -0.75rem;
  margin-right: -0.75rem;
  padding-left: 0.75rem;
  padding-right: 0.75rem;
  border-radius: 0;
}

/* Offcanvas meniu mobil */
.site-menu-mobile {
  width: min(88vw, 360px) !important;
  background: #fff;
}

.site-menu-mobile .offcanvas-header {
  padding: 1rem 1rem 0.5rem;
}

.site-menu-mobile__search .input-group-text {
  border-color: #ccc;
}

.site-menu-mobile__search .form-control {
  border-color: #ccc;
  font-style: italic;
  color: #6c757d;
}

.site-menu-mobile__search .form-control::placeholder {
  color: #9aa0a6;
  font-style: italic;
}

#siteSearchMobile:focus,
#siteSearchMobile:focus-visible {
  outline: none;
  box-shadow: none;
}

.site-menu-mobile__search .form-control:focus,
#siteSearchMobile:focus {
  border-color: #ccc;
  box-shadow: none !important;
  outline: none !important;
}

.site-menu-mobile__list > li {
  border-bottom: 1px solid #e8e8e8;
}

.site-menu-mobile__list > li > a,
.site-menu-mobile__parent {
  display: block;
  padding: 0.85rem 0;
  color: #222;
  text-decoration: none;
  font-weight: 600;
}

.site-menu-mobile__list > li > a:hover,
.site-menu-mobile__parent:hover {
  color: #1a4545;
}

.site-menu-mobile__sub {
  padding: 0 0 0.75rem 0.75rem;
  margin: 0;
}

.site-menu-mobile__sub a {
  display: block;
  padding: 0.4rem 0;
  color: #444;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
}

.site-menu-mobile__sub a:hover {
  color: #1a4545;
}

.site-menu-mobile__parent .fa-chevron-down {
  transition: transform 0.2s ease;
}

.site-menu-mobile__parent[aria-expanded="true"] .fa-chevron-down {
  transform: rotate(180deg);
}

/* Buton coș în header (nu link) */
button.site-header__tool {
  font: inherit;
  color: inherit;
  background: none;
  border: none;
  padding: 0.25rem;
}

/* Coș — slide din dreapta, full height; listă scroll, header + footer fixe */
.cart-drawer.offcanvas {
  display: flex;
  flex-direction: column;
  width: 100% !important;
  max-width: 100%;
  height: 100dvh;
  height: 100vh;
  max-height: 100dvh;
  max-height: 100vh;
  background: #faf8f6;
  border-left: 1px solid rgba(0, 0, 0, 0.06);
}

@media (min-width: 576px) {
  .cart-drawer.offcanvas {
    width: min(420px, 100vw) !important;
    max-width: 420px;
  }
}

.cart-drawer__header {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.25rem;
  background: #f2e8e4;
}

.cart-drawer__heading {
  font-family: 'Melodrama-Medium', 'Nunito', serif;
  font-size: clamp(1.5rem, 4vw, 1.85rem);
  font-weight: 500;
  color: #111;
  line-height: 1.2;
}

.cart-drawer__close {
  opacity: 0.65;
}

.cart-drawer__shipping {
  flex-shrink: 0;
  padding: 1rem 1.25rem;
  background: #faf8f6;
  border-bottom: 1px solid #e8e4e0;
}

.cart-drawer__ship-msg {
  font-size: 0.9rem;
  color: #333;
  line-height: 1.45;
  margin: 0;
}

.cart-drawer__ship-highlight {
  color: #d44601;
  font-weight: 700;
}

.cart-drawer__progress {
  height: 6px;
  border-radius: 4px;
  background: #d9d4cf;
}

.cart-drawer__progress-bar {
  background: #4a9b9b;
  border-radius: 4px;
}

/* Zona care face scroll între header și footer */
.cart-drawer__list {
  flex: 1 1 auto;
  min-height: 0;
  overflow-y: auto;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
  padding: 0.5rem 1.25rem 1rem;
  background: #fff;
}

.cart-drawer__item {
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: 0.75rem;
  padding: 1rem 0;
  border-bottom: 1px solid #ebe8e4;
}

.cart-drawer__item:last-child {
  border-bottom: none;
}

.cart-drawer__thumb {
  width: 88px;
  height: 88px;
  border-radius: 4px;
  background: #e8e4df;
  overflow: hidden;
  flex-shrink: 0;
}

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

.cart-drawer__item-body {
  position: relative;
  padding-right: 2rem;
  min-width: 0;
}

.cart-drawer__remove {
  position: absolute;
  top: 0;
  right: 0;
  border: none;
  background: none;
  padding: 0.25rem;
  color: #888;
  cursor: pointer;
  line-height: 1;
}

.cart-drawer__remove:hover {
  color: #111;
}

.cart-drawer__name {
  font-size: 0.95rem;
  font-weight: 600;
  color: #111;
  padding-right: 0.25rem;
}

.cart-drawer__variant {
  font-size: 0.8rem;
  color: #555;
  margin: 0;
}

.cart-drawer__price {
  font-size: 0.9rem;
  color: #111;
}

.cart-drawer__price-old {
  font-size: 0.85rem;
  margin-left: 0.35rem;
}

.cart-drawer__footer {
  flex-shrink: 0;
  padding: 1.25rem;
  background: #faf8f6;
  border-top: 1px solid #e8e4e0;
  box-shadow: 0 -6px 16px rgba(0, 0, 0, 0.05);
}

.cart-drawer__subtotal-label {
  font-size: 1.1rem;
  font-weight: 700;
  color: #111;
}

.cart-drawer__subtotal-value {
  font-size: 1.25rem;
  font-weight: 700;
  color: #111;
}

.cart-drawer__btn-checkout {
  display: block;
  background: #d44601;
  border: none;
  color: #fff !important;
  padding: 0.9rem 1rem;
  border-radius: 2px;
  text-decoration: none;
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  transition: background 0.2s ease;
}

.cart-drawer__btn-checkout:hover {
  background: #b33b01;
  color: #fff !important;
}

.cart-drawer__continue {
  font-size: 0.75rem;
  letter-spacing: 0.06em;
  color: #222;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.cart-drawer__continue:hover {
  color: #000;
}

/* ——— Pagină coș (cos.html; markup aliniat WooCommerce: form + table + aside sumar) ——— */
.cart-page {
  font-family: "Nunito", sans-serif;
  color: #222;
  background: #fff;
}

.cart-page__head {
  margin-left: auto;
  margin-right: auto;
}

.cart-page__title {
  margin: 0 0 1rem;
  font-family: "Melodrama-Medium", serif;
  font-size: clamp(1.75rem, 4.5vw, 2.75rem);
  font-weight: 500;
  line-height: 1.2;
  color: #111;
}

.cart-page__breadcrumb .product-breadcrumb__viewport {
  margin: 0;
  justify-content: flex-start;
}

.cart-page__shipping.cart-drawer__shipping {
  border-radius: 2px;
}

.cart-page__table-responsive {
  margin-bottom: 0;
  -webkit-overflow-scrolling: touch;
}

.cart-page__table {
  width: 100%;
  min-width: 680px;
  border-collapse: collapse;
  font-size: 0.95rem;
}

.cart-page__th {
  padding: 0.65rem 0.75rem 0.85rem;
  text-align: left;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #111;
  border-bottom: 1px solid #e5e2dd;
}

.cart-page__th--price,
.cart-page__th--qty,
.cart-page__th--total {
  white-space: nowrap;
}

.cart-page__th--price,
.cart-page__td--price {
  text-align: left;
}

.cart-page__th--qty,
.cart-page__td--qty {
  text-align: center;
}

.cart-page__th--total,
.cart-page__td--line-total {
  text-align: right;
}

.cart-page__th--actions {
  width: 3rem;
}

.cart-page__row {
  border-bottom: 1px solid #ebe8e4;
}

.cart-page__table tbody tr:last-child {
  border-bottom: none;
}

.cart-page__td {
  padding: 1.1rem 0.75rem;
  vertical-align: middle;
  color: #111;
}

.cart-page__product {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  min-width: 0;
}

.cart-page__thumb-link {
  flex-shrink: 0;
  text-decoration: none;
}

.cart-page__thumb {
  display: block;
  width: 88px;
  height: 88px;
  border-radius: 4px;
  overflow: hidden;
  background: #f6f9f8;
}

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

.cart-page__name {
  font-weight: 600;
  line-height: 1.35;
  margin: 0;
}

.cart-page__name-link {
  font-size: 1.05rem;
  color: #111;
  text-decoration: none;
}

.cart-page__name-link:hover {
  color: #d44601;
}

.cart-page__variant {
  font-size: 0.8rem;
  color: #555;
  line-height: 1.4;
}

.cart-page__unit-price {
  font-weight: 600;
}

.cart-page__price-old {
  display: inline-block;
  margin-left: 0.35rem;
  font-size: 0.85rem;
  font-weight: 400;
  color: #9a9a9a;
  text-decoration: line-through;
}

.cart-page__qty {
  display: inline-flex;
  align-items: stretch;
  border: 1px solid #d9d4cf;
  border-radius: 2px;
  background: #fff;
  overflow: hidden;
}

.cart-page__qty-btn {
  width: 2.25rem;
  padding: 0;
  border: none;
  background: #fff;
  color: #111;
  font-size: 1.1rem;
  line-height: 1;
  cursor: pointer;
  transition: background 0.15s ease;
}

.cart-page__qty-btn:hover {
  background: #f5f3f0;
}

.cart-page__qty-input {
  width: 2.75rem;
  padding: 0.35rem 0.25rem;
  border: none;
  border-left: 1px solid #e8e4e0;
  border-right: 1px solid #e8e4e0;
  text-align: center;
  font-size: 0.95rem;
  font-weight: 600;
  color: #111;
  -moz-appearance: textfield;
}

.cart-page__qty-input::-webkit-outer-spin-button,
.cart-page__qty-input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.cart-page__line-total {
  font-weight: 700;
}

.cart-page__remove {
  padding: 0.35rem;
  border: none;
  background: none;
  color: #aaa;
  cursor: pointer;
  line-height: 1;
  transition: color 0.15s ease;
}

.cart-page__remove:hover {
  color: #111;
}

/* Rând coș: un singur td; desktop = grilă tabel; mobile = antet + rânduri etichetă/valoare */
.cart-page__td--line {
  padding: 1.1rem 0.75rem;
  vertical-align: middle;
}

.cart-page__line {
  display: grid;
  grid-template-columns: 88px minmax(0, 2fr) minmax(5rem, 1fr) auto minmax(5rem, 1fr) auto;
  align-items: center;
  gap: 0.65rem 0.75rem;
  width: 100%;
  min-width: 0;
}

.cart-page__line-header {
  display: contents;
}

.cart-page__line-thumb-link {
  grid-column: 1;
  grid-row: 1;
  flex-shrink: 0;
  text-decoration: none;
  align-self: center;
}

.cart-page__line-meta {
  grid-column: 2;
  grid-row: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.cart-page__line-kv {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.5rem;
  min-width: 0;
}

.cart-page__line-kv--price {
  grid-column: 3;
  justify-content: flex-start;
}

.cart-page__line-kv--qty {
  grid-column: 4;
  justify-content: center;
}

.cart-page__line-kv--total {
  grid-column: 5;
  justify-content: flex-end;
}

.cart-page__line-kv--remove {
  grid-column: 6;
  justify-content: flex-end;
}

.cart-page__line-kv-label {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.cart-page__line-kv-value {
  flex: 1;
  min-width: 0;
  display: flex;
  justify-content: inherit;
  align-items: center;
}

.cart-page__line-kv--price .cart-page__line-kv-value {
  justify-content: flex-start;
}

.cart-page__line-kv--qty .cart-page__line-kv-value {
  justify-content: center;
}

.cart-page__line-kv--total .cart-page__line-kv-value,
.cart-page__line-kv--remove .cart-page__line-kv-value {
  justify-content: flex-end;
}

.cart-page__line-qty {
  display: flex;
  justify-content: center;
}

.cart-page__line-remove {
  flex-shrink: 0;
}

.cart-page__upsell {
  margin-top: 2rem;
  padding-top: 1.75rem;
  border-top: 1px solid #ebe8e4;
}

.cart-page__upsell-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem 1rem;
  margin-bottom: 1.15rem;
}

.cart-page__upsell-title {
  margin: 0;
  flex: 1;
  min-width: 0;
  font-family: "Nunito", sans-serif;
  font-size: clamp(1.2rem, 2.5vw, 1.5rem);
  font-weight: 700;
  color: #111;
}

.cart-page__upsell-toggle {
  display: none;
  flex-shrink: 0;
  margin: 0;
  padding: 0.4rem 0.7rem;
  border: 1px solid #111;
  border-radius: 2px;
  background: #fff;
  color: #111;
  font: inherit;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  line-height: 1.2;
}

.cart-page__upsell-toggle:hover {
  background: #f5f3f0;
}

.cart-page__upsell-panel {
  min-width: 0;
}

@media (max-width: 991.98px) {
  .cart-page__upsell-toggle {
    display: inline-block;
  }

  .cart-page__upsell-head {
    margin-bottom: 0;
  }

  .cart-page__upsell-panel {
    display: none;
    margin-top: 0.75rem;
    padding: 0.75rem;
    border: 1px solid #e5e2dd;
    border-radius: 4px;
    background: #fff;
  }

  .cart-page__upsell-panel.is-open {
    display: block;
  }
}

@media (min-width: 992px) {
  .cart-page__upsell-panel {
    display: block !important;
  }
}

.cart-page__upsell-item + .cart-page__upsell-item {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid #ebe8e4;
}

.cart-page__upsell-row {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 0.75rem 1rem;
  width: 100%;
  min-width: 0;
}

.cart-page__upsell-aside {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.65rem;
  flex-shrink: 0;
  margin-left: auto;
}

.cart-page__upsell-btn.buton-standard {
  padding: 0.65rem 1.15rem;
  font-size: 0.72rem;
  white-space: nowrap;
}

@media (max-width: 767.98px) {
  .cart-page__upsell-row {
    position: relative;
    align-items: flex-start;
  }

  .cart-page__upsell-aside {
    display: contents;
    width: auto;
    margin-left: 0;
  }

  .cart-page__upsell-main {
    padding-right: 5.75rem;
  }

  .cart-page__upsell-row > .cart-page__upsell-price,
  .cart-page__upsell-row > .cart-page__upsell-price-wrap {
    position: absolute;
    top: 0;
    right: 0;
    max-width: 42%;
    text-align: right;
    z-index: 1;
  }

  .cart-page__upsell-row > .cart-page__upsell-btn.buton-standard {
    flex: 0 0 100%;
    width: 100%;
    margin-top: 0.75rem;
    order: 5;
    justify-content: center;
  }
}

.cart-page__upsell-thumb {
  flex-shrink: 0;
  width: 72px;
  height: 72px;
  border-radius: 4px;
  overflow: hidden;
  background: #f6f9f8;
}

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

.cart-page__upsell-main {
  flex: 1 1 10rem;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.cart-page__upsell-name {
  font-weight: 600;
  font-size: 0.95rem;
  color: #111;
}

.cart-page__upsell-option {
  font-size: 0.85rem;
  color: #555;
}

.cart-page__upsell-swatches.product-detail__swatches {
  margin-top: 0.15rem;
}

.cart-page__upsell-price-wrap {
  text-align: right;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.35rem;
}

.cart-page__upsell-badge.product-label {
  position: static;
}

.cart-page__upsell-price {
  font-weight: 700;
  font-size: 0.95rem;
  color: #111;
}

.cart-page__upsell-price-current {
  color: #d44601;
}

.cart-page__upsell-price-old {
  display: block;
  font-size: 0.85rem;
  font-weight: 400;
  color: #9a9a9a;
  text-decoration: line-through;
}

.cart-page__aside {
  position: relative;
}

@media (min-width: 992px) {
  .cart-page__aside {
    position: sticky;
    top: 1rem;
  }
}

.cart-page__summary {
  /**/padding: 1.35rem 1.25rem;
  background: #f6f9f8;
  border: 1px solid #dfe8e5;
  border-radius: 2px;
}

.cart-page__summary-title {
  margin: 0 0 1.1rem;
  font-family: "Nunito", sans-serif;
  font-size: clamp(1.15rem, 2.2vw, 1.35rem);
  font-weight: 700;
  color: #111;
}

.cart-page__summary-rows {
  font-size: 0.95rem;
}

.cart-page__summary-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  padding: 0.45rem 0;
  border-bottom: 1px solid #ebe8e4;
}

.cart-page__summary-row dt {
  margin: 0;
  font-weight: 600;
  color: #333;
}

.cart-page__summary-row dd {
  margin: 0;
  font-weight: 600;
  color: #111;
  text-align: right;
}

.cart-page__summary-row--discount dd {
  color: #e85d04;
  font-weight: bold;
}

.cart-page__summary-row--shipping {
  flex-wrap: wrap;
  padding-bottom: 0.75rem;
  border-bottom: none;
}

.cart-page__summary-row--shipping dt {
  width: 100%;
}

.cart-page__summary-row--shipping dd {
  width: 100%;
  max-width: 100%;
  text-align: left;
  min-width: 0;
  box-sizing: border-box;
  padding-left: 0;
  padding-right: 0.35rem;
}

.cart-page__shipping-options {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  padding-right: 0.25rem;
}

.cart-page__ship-check.form-check {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 0.55rem;
  padding-left: 0;
  margin: 0;
  min-height: 0;
}

.cart-page__ship-check .form-check-input {
  width: 1.1rem;
  height: 1.1rem;
  margin-top: 0.2rem;
  margin-left: 0;
  flex-shrink: 0;
  float: none;
  border-color: #999;
  cursor: pointer;
}

.cart-page__ship-check .form-check-input:checked {
  background-color: #d44601;
  border-color: #d44601;
}

.cart-page__ship-check .form-check-input:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}

.cart-page__ship-label {
  font-size: 0.9rem;
  color: #222;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  flex: 1;
  min-width: 0;
  gap: 0.75rem;
}

.cart-page__ship-label--muted {
  color: #888;
}

.cart-page__ship-price {
  font-weight: 600;
  color: #111;
}

.cart-page__summary-total {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 1rem 0 1.15rem;
  margin-top: 0;
  border-top: 1px solid #ddd8d2;
  font-size: 1.15rem;
  font-weight: 700;
  color: #111;
}

.cart-page__summary-total-value {
  font-size: 1.35rem;
}

.cart-page__btn-pay {
  display: block;
  width: 100%;
  padding: 0.95rem 1rem;
  border: none;
  border-radius: 2px;
  background: #d44601;
  color: #fff !important;
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  text-decoration: none;
  text-align: center;
  transition: background 0.2s ease;
}

.cart-page__btn-pay:hover {
  background: #b33b01;
  color: #fff !important;
}

.cart-page__continue-shop {
  margin-top: 1rem;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  color: #222;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.cart-page__continue-shop:hover {
  color: #000;
}

.cart-page__voucher {
  margin-top: 1.25rem;
}

.cart-page__voucher-field {
  display: flex;
  align-items: stretch;
  min-height: 3rem;
  border: 1px solid #111;
  border-radius: 2px;
  overflow: hidden;
  background: #fff;
}

.cart-page__voucher-input {
  flex: 1;
  min-width: 0;
  padding: 0.65rem 0.9rem;
  border: none;
  font-family: "Nunito", sans-serif;
  font-size: 0.95rem;
  color: #111;
}

.cart-page__voucher-input:focus {
  outline: none;
}

.cart-page__voucher-field:focus-within {
  outline: 2px solid #52c0a7;
  outline-offset: 2px;
}

.cart-page__voucher-btn {
  flex: 0 0 auto;
  padding: 0 1.15rem;
  border: none;
  border-left: 1px solid #111;
  background: #111;
  color: #fff;
  font-family: "Nunito", sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  cursor: pointer;
  transition: background 0.2s ease;
}

.cart-page__voucher-btn:hover {
  background: #333;
}

/* ——— Pagină checkout (checkout.html; aliniat cos + WooCommerce) ——— */
.checkout-page__column {
  max-width: 100%;
}

.checkout-page__block {
  margin-bottom: 2rem;
}

.checkout-page__block:last-child {
  margin-bottom: 0;
}

.checkout-page__block--login {
  padding-bottom: 1.25rem;
  border-bottom: 1px solid #ebe8e4;
}

.checkout-page__login-lead {
  font-size: 0.95rem;
  color: #222;
}

.checkout-page__inline-link {
  color: #111;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.checkout-page__inline-link:hover {
  color: #d44601;
}

.checkout-page__label {
  font-size: 0.85rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 0.35rem;
}

.checkout-page__input {
  border-color: #d9d4cf;
  border-radius: 2px;
  font-family: "Nunito", sans-serif;
  font-size: 0.95rem;
}

.checkout-page__input:focus {
  border-color: #111;
  box-shadow: none;
}

.checkout-page__btn-login {
  padding: 0.5rem 1.25rem;
  border: none;
  border-radius: 2px;
  background: #d44601;
  color: #fff;
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  transition: background 0.2s ease;
}

.checkout-page__btn-login:hover {
  background: #b33b01;
  color: #fff;
}

.checkout-page__section-title {
  margin: 0 0 1rem;
  font-family: "Nunito", sans-serif;
  font-size: clamp(1.05rem, 2vw, 1.2rem);
  font-weight: 700;
  color: #111;
}

.checkout-page__check .form-check-input {
  width: 1.1rem;
  height: 1.1rem;
  margin-top: 0.2rem;
  border-color: #999;
  cursor: pointer;
}

.checkout-page__check .form-check-input:checked {
  background-color: #d44601;
  border-color: #d44601;
}

.checkout-page__check .form-check-label {
  font-size: 0.9rem;
  color: #222;
  cursor: pointer;
  padding-left: 0.15rem;
}

.checkout-page__company-fields {
  padding: 1rem;
  border: 1px solid #e5e2dd;
  border-radius: 4px;
  background: #fafaf9;
}

.checkout-page__subsection-title {
  margin: 0 0 0.25rem;
  font-family: "Nunito", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: #111;
}

.checkout-page__shipping-fields {
  padding: 1rem;
  border: 1px solid #e5e2dd;
  border-radius: 4px;
  background: #fafaf9;
}

.checkout-page__payment-list {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.checkout-page__payment-option {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.75rem;
  margin: 0;
  padding: 0.85rem 1rem;
  border: 1px solid #e8e4e0;
  border-radius: 4px;
  background: #f5f4f2;
  cursor: pointer;
  transition: border-color 0.15s ease, background 0.15s ease;
}

.checkout-page__payment-option:has(.checkout-page__payment-input:checked) {
  border-color: #d0cbc8;
  background: #eeebe8;
}

.checkout-page__payment-input {
  flex-shrink: 0;
  width: 1.15rem;
  height: 1.15rem;
  margin: 0;
  border-color: #999;
  cursor: pointer;
}

.checkout-page__payment-input:checked {
  background-color: #d44601;
  border-color: #d44601;
}

.checkout-page__payment-body {
  flex: 1;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  min-width: 0;
}

.checkout-page__payment-label {
  font-weight: 600;
  font-size: 0.95rem;
  color: #111;
}

.checkout-page__payment-logo {
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: #555;
  white-space: nowrap;
}

.checkout-page__submit.cart-page__btn-pay {
  border: none;
}

.checkout-page__order-title {
  margin-bottom: 1rem;
}

/* Separatori uniformi în sumar (aceeași culoare/grosime ca rândurile produs) */
.checkout-page__order-review .checkout-page__sep {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid #ebe8e4;
}

.checkout-page__order-review .cart-page__summary-total {
  border-top: 1px solid #ebe8e4;
}

.checkout-page__order-review .cart-page__summary-row {
  border-bottom: 1px solid #ebe8e4;
}

.checkout-page__order-review .checkout-page__totals .cart-page__summary-row:last-child {
  border-bottom: none;
  padding-bottom: 0.35rem;
}

.checkout-page__review-items {
  margin: 0;
  padding: 0.5rem 0 0;
  border-top: 1px solid #ebe8e4;
}

.checkout-page__review-item {
  display: flex;
  flex-wrap: nowrap;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 1.35rem 0 1.15rem;
  border-bottom: 1px solid #ebe8e4;
}

.checkout-page__review-item:first-child {
  padding-top: 1.5rem;
}

.checkout-page__review-item:last-child {
  border-bottom: none;
  padding-bottom: 0.25rem;
}

.checkout-page__review-thumb {
  flex-shrink: 0;
  width: 64px;
  height: 64px;
  border-radius: 4px;
  overflow: hidden;
  background: #f6f9f8;
}

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

.checkout-page__review-main {
  flex: 1;
  min-width: 0;
}

.checkout-page__review-name {
  font-size: 0.95rem;
  font-weight: 600;
  color: #111;
  line-height: 1.35;
}

.checkout-page__review-variant {
  font-size: 0.82rem;
  color: #555;
}

.checkout-page__review-aside {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.25rem;
  flex-shrink: 0;
  min-width: 5rem;
  max-width: 46%;
  text-align: right;
}

.checkout-page__review-price {
  font-size: 0.95rem;
  color: #111;
}

.checkout-page__review-price-current {
  color: #d44601;
  font-weight: 700;
}

.checkout-page__review-price-old {
  display: block;
  font-size: 0.82rem;
  color: #9a9a9a;
  text-decoration: line-through;
}

.checkout-page__voucher .cart-page__voucher-field {
  margin-top: 0;
}

.checkout-page__voucher-hint {
  line-height: 1.4;
}

.checkout-page__total-final {
  margin-top: 0;
}

.checkout-page__payment-wrap .checkout-page__block--payment {
  margin-bottom: 0;
}

@media (min-width: 992px) {
  .checkout-page__order-review.cart-page__summary {
    position: sticky;
    top: 1rem;
  }
}

@media (max-width: 991.98px) {
  .checkout-page__aside.cart-page__aside {
    position: static;
  }

  .cart-page__table {
    min-width: 0;
  }

  .cart-page__table thead {
    display: none;
  }

  .cart-page__table tbody {
    display: block;
  }

  .cart-page__table tr.cart-page__row {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    padding: 0.85rem 0;
    margin: 0;
    border-bottom: 1px solid #ebe8e4;
    box-sizing: border-box;
  }

  .cart-page__table td.cart-page__td {
    display: block;
    width: 100%;
    padding: 0;
    border: none;
  }

  .cart-page__td--line {
    padding: 0;
  }

  .cart-page__line {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    width: 100%;
    padding:10px;
    border:1px solid #f6f9f8;
  }

  .cart-page__line-header {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 0.65rem;
    width: 100%;
    padding: 0.65rem 0.75rem 0.75rem;
  }

  .cart-page__line-thumb-link {
    grid-column: auto;
    grid-row: auto;
    align-self: flex-start;
  }

  .cart-page__line-meta {
    grid-column: auto;
    grid-row: auto;
    flex: 1;
    min-width: 0;
  }

  .cart-page__line-meta .cart-page__name {
    line-height: 1.3;
    margin-bottom: 0.25rem !important;
  }

  .cart-page__line-meta .cart-page__name-link {
    font-size: 1rem;
  }

  .cart-page__line-meta .cart-page__variant {
    font-size: 0.78rem;
    margin: 0 !important;
  }

  .cart-page__line-kv {
    justify-content: space-between;
    align-items: center;
    gap: 0.75rem;
    padding: 0.65rem 0;
    border-bottom: 1px dotted #cbc6c0;
  }

  .cart-page__line-header + .cart-page__line-kv {
    border-top: 1px dotted #cbc6c0;
  }

  .cart-page__line-kv:last-child {
    border-bottom: none;
  }

  .cart-page__line-kv--price,
  .cart-page__line-kv--qty,
  .cart-page__line-kv--total,
  .cart-page__line-kv--remove {
    grid-column: auto;
    justify-content: space-between;
  }

  .cart-page__line-kv-label {
    position: static;
    width: auto;
    height: auto;
    margin: 0;
    padding: 0;
    overflow: visible;
    clip: unset;
    clip-path: none;
    white-space: normal;
    border: 0;
    flex: 0 0 auto;
    max-width: 45%;
    font-size: 0.9rem;
    color: #333;
  }

  .cart-page__line-kv-value {
    flex: 1;
    min-width: 0;
    justify-content: flex-end;
    text-align: right;
  }

  .cart-page__line-kv--price .cart-page__line-kv-value,
  .cart-page__line-kv--qty .cart-page__line-kv-value,
  .cart-page__line-kv--total .cart-page__line-kv-value,
  .cart-page__line-kv--remove .cart-page__line-kv-value {
    justify-content: flex-end;
  }

  .cart-page__line-qty {
    justify-content: flex-end;
  }

  .cart-page__thumb {
    width: 72px;
    height: 72px;
  }

  .cart-page__qty {
    margin: 0;
  }

  .cart-page__qty-btn {
    width: 2rem;
    min-height: 2.25rem;
  }

  .cart-page__qty-input {
    width: 2.35rem;
    padding: 0.3rem 0.2rem;
    font-size: 0.88rem;
  }

  .cart-page__unit-price,
  .cart-page__line-total {
    font-size: 0.9rem;
  }
}

@media (max-width: 380px) {
  .cart-page__qty-input {
    width: 2rem;
  }
}

/* ——— Pagină categorie (titlu, subcategorii, toolbar) ——— */
.category-page {
  --category-control-h: 2.5rem;
  --category-control-px: 0.9rem;
  font-family: "Nunito", sans-serif;
  color: #222;
  background: #fff;
}

.category-page .product-detail__title {
  padding-right: 0;
}

.category-page__breadcrumb .product-breadcrumb__viewport {
  margin: 0;
}

/* Subcategorii + Filtre + sort: aceeași înălțime și contur */
.category-subcat-btn {
  font-family: "Nunito", sans-serif;
  font-size: 0.8125rem;
  font-weight: 600;
  line-height: 1.2;
  color: #111 !important;
  background: transparent !important;
  border: 1px solid #111 !important;
  border-radius: 2px;
  min-height: var(--category-control-h);
  padding: 0 var(--category-control-px);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-sizing: border-box;
}

.btn.category-subcat-btn {
  --bs-btn-padding-y: 0;
  --bs-btn-padding-x: var(--category-control-px);
  --bs-btn-line-height: 1.2;
}

.category-subcat-btn:hover {
  background: #faf8f6 !important;
  color: #111 !important;
}

.category-toolbar {
  align-items: center;
}

.category-toolbar__filter {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: "Nunito", sans-serif;
  font-size: 0.8125rem;
  font-weight: 600;
  line-height: 1.2;
  color: #111 !important;
  background: transparent !important;
  border: 1px solid #111 !important;
  border-radius: 2px;
  min-height: var(--category-control-h);
  padding: 0 var(--category-control-px);
  box-sizing: border-box;
}

.btn.category-toolbar__filter {
  --bs-btn-padding-y: 0;
  --bs-btn-padding-x: var(--category-control-px);
  --bs-btn-line-height: 1.2;
}

.category-toolbar__filter:hover {
  background: #faf8f6 !important;
  color: #111 !important;
}

/* Mobil: etichetă pe un rând, dropdown sub ea; desktop: aceeași linie */
.category-toolbar__sort {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0.35rem;
}

.category-toolbar__sort-label {
  font-size: 0.8125rem;
  font-weight: 600;
  color: #333;
  line-height: 1.2;
  flex-shrink: 0;
}

.category-toolbar__select {
  min-width: 0;
  width: 100%;
  max-width: 100%;
  min-height: var(--category-control-h);
  padding: 0 2rem 0 var(--category-control-px);
  font-family: "Nunito", sans-serif;
  font-size: 0.8125rem;
  font-weight: 600;
  line-height: 1.2;
  color: #111;
  background-color: #fff;
  border: 1px solid #111;
  border-radius: 2px;
  box-sizing: border-box;
}

.category-toolbar__select:focus {
  border-color: #111;
  box-shadow: 0 0 0 0.2rem rgba(17, 17, 17, 0.12);
}

@media (max-width: 991.98px) {
  .category-toolbar__sort {
    flex-basis: 100%;
  }
}

@media (min-width: 992px) {
  .category-toolbar__sort {
    flex-direction: row;
    align-items: center;
    gap: 0.5rem;
    width: auto;
    flex-basis: auto;
  }

  .category-toolbar__select {
    width: auto;
    min-width: 11rem;
  }
}

/* ——— Intro colecție (text + 2 imagini; bandă pattern full width, conținut în .container) ——— */
.colectie-intro--full.pattern-frunze {
  --pattern-frunze-bg: #ffffff;
  --pattern-frunze-size: 560px auto;
  width: 100%;
  max-width: none;
  margin-left: 0;
  margin-right: 0;
  padding: 1.75rem 0 1.5rem;
  border-radius: 0;
  box-sizing: border-box;
}

@media (min-width: 992px) {
  .colectie-intro--full.pattern-frunze {
    padding: 2.25rem 0 1.75rem;
  }
}

.colectie-intro__text {
  font-family: "Nunito", sans-serif;
  font-size: 0.9375rem;
  line-height: 1.65;
  color: #333;
  max-width: 36rem;
}

.colectie-intro__photos {
  min-width: 0;
}

.colectie-intro__stack {
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  justify-content: center;
  gap: 0.75rem;
  min-height: 0;
}

.colectie-intro__figure {
  margin: 0;
  overflow: hidden;
  border-radius: 2px;
  flex-shrink: 0;
}

.colectie-intro__figure--secondary {
  width: 38%;
  max-width: 220px;
  z-index: 2;
}

.colectie-intro__figure--primary {
  width: 58%;
  max-width: 320px;
  z-index: 1;
}

.colectie-intro__img {
  display: block;
  width: 80%;
  height: auto;
  object-fit: cover;
  aspect-ratio: 3 / 4;
}

.colectie-intro__figure--primary .colectie-intro__img {
  aspect-ratio: 2 / 3;
}

@media (min-width: 992px) {
  .colectie-intro__photos {
    overflow: visible;
  }

  .colectie-intro__stack {
    align-items: flex-end;
    justify-content: flex-end;
    gap: clamp(1rem, 2vw, 1.75rem);
    padding-left: 0.5rem;
    padding-top: 0.5rem;
    padding-bottom: 0.75rem;
  }

  /* Trepte „fancy”: prima (stânga) mai jos, a doua (dreapta) mai sus */
  .colectie-intro__figure--secondary {
    max-width: none;
    width: 40%;
    transform: translateY(1.25rem);
  }

  .colectie-intro__figure--primary {
    max-width: none;
    width: 52%;
    transform: translateY(-2rem);
  }
}

/* Mobil: suprapunere ușoară între cele două imagini */
@media (max-width: 991.98px) {
  .colectie-intro__stack {
    justify-content: center;
    padding: 0 0.25rem 0.25rem;
    max-width: 22rem;
    margin-left: auto;
    margin-right: auto;
  }

  .colectie-intro__figure--secondary {
    margin-right: -10%;
    transform: translateY(8%);
  }

  .colectie-intro__figure--primary {
    margin-left: -8%;
    transform: translateY(-4%);
  }
}

/* Filtre — offcanvas din stânga (structură similară coșului) */
.filter-drawer.offcanvas {
  display: flex;
  flex-direction: column;
  width: 100% !important;
  max-width: 100%;
  height: 100dvh;
  height: 100vh;
  max-height: 100dvh;
  max-height: 100vh;
  background: #faf8f6;
  border-right: 1px solid rgba(0, 0, 0, 0.06);
}

@media (min-width: 576px) {
  .filter-drawer.offcanvas {
    width: min(420px, 100vw) !important;
    max-width: 420px;
  }
}

.filter-drawer__header {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.25rem;
  background: #f2e8e4;
}

.filter-drawer__heading {
  font-family: "Melodrama-Medium", "Nunito", serif;
  font-size: clamp(1.5rem, 4vw, 1.85rem);
  font-weight: 500;
  color: #111;
  line-height: 1.2;
}

.filter-drawer__close {
  opacity: 0.65;
}

.filter-drawer__body {
  position: relative;
  flex: 1 1 auto;
  min-height: 0;
  overflow-y: auto;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
  padding: 1rem 1.25rem 1.25rem;
  background: #fff;
}

.filter-drawer__section-label {
  font-family: "Nunito", sans-serif;
  font-size: 0.8125rem;
  font-weight: 700;
  color: #111;
  margin: 0;
}

.filter-drawer__links li + li {
  margin-top: 0.35rem;
}

.filter-drawer__link {
  font-size: 0.9rem;
  color: #333;
  text-decoration: underline;
  text-underline-offset: 0.12em;
}

.filter-drawer__link:hover {
  color: #000;
}

.filter-drawer__watermark {
  position: absolute;
  left: 50%;
  top: 42%;
  transform: translate(-50%, -50%) rotate(-8deg);
  font-family: "Melodrama-Medium", "Nunito", serif;
  font-size: clamp(3.5rem, 18vw, 5.5rem);
  font-weight: 500;
  color: rgba(0, 0, 0, 0.04);
  white-space: nowrap;
  pointer-events: none;
  z-index: 0;
}

.filter-drawer__body > *:not(.filter-drawer__watermark) {
  position: relative;
  z-index: 1;
}

.filter-drawer__price-range {
  position: relative;
}

.filter-drawer__range-track {
  height: 4px;
  background: #e0dcd8;
  border-radius: 2px;
  position: relative;
}

.filter-drawer__range-fill {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 65%;
  background: #111;
  border-radius: 2px;
}

.filter-drawer__input {
  font-size: 0.85rem;
  border-color: #ccc;
  border-radius: 2px;
}

.filter-drawer__chip-scroll {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin-left: -0.25rem;
  margin-right: -0.25rem;
  padding-left: 0.25rem;
  padding-right: 0.25rem;
}

.filter-drawer__chip {
  flex-shrink: 0;
  font-size: 0.75rem;
  font-weight: 600;
  color: #333 !important;
  background: #fff !important;
  border: 1px solid #ccc !important;
  border-radius: 2px;
  padding: 0.4rem 0.75rem;
}

.filter-drawer__pill {
  font-size: 0.8125rem;
  font-weight: 600;
  color: #111 !important;
  background: #fff !important;
  border: 1px solid #ccc !important;
  border-radius: 2px;
  padding: 0.45rem 0.85rem;
}

.filter-drawer__pill:hover,
.filter-drawer__chip:hover {
  background: #faf8f6 !important;
}

.filter-drawer__check {
  position: relative;
  cursor: pointer;
  font-size: 0.9rem;
  color: #222;
  padding-left: 1.75rem;
}

.filter-drawer__check-input {
  position: absolute;
  left: 0;
  top: 0.15rem;
  width: 1.125rem;
  height: 1.125rem;
  margin: 0;
  opacity: 0;
  cursor: pointer;
  z-index: 1;
}

.filter-drawer__check-ui {
  position: absolute;
  left: 0;
  top: 0.15rem;
  width: 1.125rem;
  height: 1.125rem;
  border: 1px solid #111;
  background: #fff;
  box-sizing: border-box;
  pointer-events: none;
  border-radius: 2px;
}

.filter-drawer__check-input:checked + .filter-drawer__check-ui {
  background: #d44601;
  border-color: #d44601;
}

.filter-drawer__check-input:checked + .filter-drawer__check-ui::after {
  content: "";
  position: absolute;
  left: 5px;
  top: 1px;
  width: 4px;
  height: 8px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.filter-drawer__check-input:focus-visible + .filter-drawer__check-ui {
  outline: 2px solid #52c0a7;
  outline-offset: 2px;
}

.filter-drawer__footer {
  flex-shrink: 0;
  padding: 1rem 1.25rem 1.25rem;
  background: #faf8f6;
  border-top: 1px solid #e8e4e0;
}

.filter-drawer__reset {
  font-family: "Nunito", sans-serif;
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  color: #111 !important;
  background: #fff !important;
  border: 1px solid #111 !important;
  border-radius: 2px;
  padding: 0.85rem 1rem;
}

.filter-drawer__reset:hover {
  background: #f2e8e4 !important;
  color: #111 !important;
}

/*
  Fundal reutilizabil: culoare solidă + pattern seamless (fără opacitate pe strat).
  Culoarea: --pattern-frunze-bg. Dimensiune tile: --pattern-frunze-size (implicit 840px auto).
  Ex.: <div class="pattern-frunze" style="--pattern-frunze-bg: #52c0a7">
*/
.pattern-frunze {
  --pattern-frunze-bg: #52c0a7cc;
  --pattern-frunze-size: 840px auto;
  position: relative;
  background-color: var(--pattern-frunze-bg);
  overflow: hidden;
}

.pattern-frunze::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 1;
  background-image: url("../images/pattern-frunze.svg");
  background-repeat: repeat;
  background-size: var(--pattern-frunze-size);
  pointer-events: none;
}

.pattern-frunze-small-light::before {
  background-image: url("../images/pattern-frunze-light.svg");
}

/* Intro colecție: permite margini negative / translate pe imagini (suprapunere mobil) */
.colectie-intro.pattern-frunze {
  overflow: visible;
}

.pattern-frunze > * {
  position: relative;
  z-index: 1;
}

/* Hero: doar înălțime viewport (combină cu .pattern-frunze pentru același look) */
.site-hero {
  min-height: 100dvh;
  min-height: 100vh;
  box-sizing: border-box;
}

.site-hero.pattern-frunze {
  overflow-x: visible;
  overflow-y: clip;
}

.site-hero__inner {
  position: relative;
  z-index: 1;
  height: 100%;
  min-height: inherit;
}

.site-hero__layout {
  position: relative;
  min-height: 100vh;
}

/* Desktop: text în flux (stânga ca .container); imagine position absolute dreapta 50% — suprapunere pentru fade-in */
@media (min-width: 992px) {
  .site-hero__layout {
    position: relative;
    min-height: 100vh;
    width: 100%;
  }

  .site-hero__copy {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    width: 100%;
    max-width: 70%;
    min-height: 100vh;
    /* același „start” de conținut ca un container centrat max 1600px + gutter ca la .container-fluid px-3 px-lg-5 */
    padding-left: max(
      0.75rem,
      calc((100vw - min(100vw, 1600px)) / 2 + clamp(0.75rem, 2vw, 3rem))
    );
    padding-right: clamp(1rem, 2vw, 1.5rem);
    box-sizing: border-box;
  }

  .site-hero__copy-inner {
    width: 100%;
    max-width: 100%;
  }

  .site-hero__figure {
    position: absolute;
    right: 0;
    bottom: 0;
    top: auto;
    left: auto;
    z-index: 2;
    width: 50%;
    height: min(95vh, calc(100dvh - 4.5rem));
    height: min(95vh, calc(100vh - 4.5rem));
    max-height: none;
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
    pointer-events: none;
    box-sizing: border-box;
  }

  .site-hero__photo {
    display: block;
    width: auto;
    height: 140%;
    object-fit: contain;
    object-position: right bottom;
  }

  .site-hero__title--display {
    font-family: "Melodrama-Medium", serif;
    font-size: clamp(4rem, 10vw, 10rem) !important;
    font-weight: 500;
    line-height: 0.98;
    color: #fff !important;
    margin: 0 0 0.25rem;
    text-shadow: 0 2px 40px rgba(0, 0, 0, 0.15);
    letter-spacing: -0.02em;
  }

  .site-hero__link {
    font-size: clamp(0.78rem, 1.15vw, 0.88rem);
  }
}

.site-hero__title {
  font-family: "Melodrama-Medium", serif;
  font-weight: 500;
  color: #fff !important;
  margin: 0 0 0.25rem;
  text-shadow: 0 1px 24px rgba(0, 0, 0, 0.12);
}

.site-hero__cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.65rem 1rem;
  margin-top: clamp(1.75rem, 3vw, 2.75rem);
  padding-top: clamp(1rem, 2vw, 2.35rem);
  border-top: 2px solid rgba(255, 255, 255, 0.65);
}

.site-hero__cta-sep {
  display: block;
  width: 1px;
  height: 0.95em;
  background: rgba(255, 255, 255, 0.65);
  flex-shrink: 0;
}

.site-hero__link {
  font-family: "Nunito", sans-serif;
  font-size: clamp(0.68rem, 1.1vw, 0.75rem);
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #fff;
  text-decoration: none;
  pointer-events: auto;
}

.site-hero__link:hover {
  color: #fff;
  opacity: 0.88;
  text-decoration: underline;
  text-underline-offset: 3px;
}

@media (max-width: 991.98px) {
  .site-hero__inner {
    min-height: calc(100vh - 70px);
    min-height: calc(100dvh - 70px);
  }

  .site-hero__layout {
    position: relative;
    display: block;
    width: 100%;
    min-height: calc(100vh - 70px);
    min-height: calc(100dvh - 70px);
  }

  .site-hero {
    min-height: calc(100vh - 70px);
  }

  /* Imagine full-bleed, aspect natural, lipită de bottom */
  .site-hero__figure {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 0;
    width: 100%;
    height: auto;
    min-height: 0;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: row;
    align-items: flex-end;
    justify-content: flex-end;
    align-self: stretch;
    pointer-events: none;
  }

  .site-hero__photo {
    display: block;
    width: auto;
    max-width: 100%;
    height: auto;
    max-height: 92vh;
    margin: auto 0 0 0;
    object-fit: contain;
    object-position: bottom center;
    flex-shrink: 0;
  }

  /* Text peste imagine + gradient negru jos → sus */
  .site-hero__copy {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    top: auto;
    transform: none;
    display: block;
    width: 100%;
    max-width: 100%;
    text-align: center;
    padding-left: 0.75rem;
    padding-right: 0.75rem;
    padding-bottom: max(1.25rem, env(safe-area-inset-bottom, 0px));
    padding-top: clamp(2.75rem, 20vw, 4.5rem);
    box-sizing: border-box;
    background: linear-gradient(
      to top,
      rgba(0, 0, 0, 0.7) 0%,
      rgba(0, 0, 0, 0) 100%
    );
  }

  .site-hero__title--display {
    font-size: clamp(1.65rem, 5.5vw, 2.35rem) !important;
    line-height: 1.15;
    margin-bottom: 0;
  }

  .site-hero__cta {
    justify-content: space-between;
    width: 100%;
    margin-top: 1.15rem;
    padding-top: 1.1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.65);
    gap: 0.5rem;
  }

  .site-hero__cta-sep {
    display: none;
  }
}

/* ——— Promo mood: stânga aliniată la container (max 1600px); dreapta + pattern până la marginea viewport ——— */
.section-mood {
  --section-mood-container-max: 1600px;
  --section-mood-gutter: 0.75rem;
  background: #fff;
  overflow: hidden;
}

.section-mood__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: stretch;
  min-height: clamp(380px, 52vw, 640px);
}

.section-mood__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: clamp(2.5rem, 6vw, 4.5rem);
  padding-bottom: clamp(2.5rem, 6vw, 4.5rem);
  padding-right: clamp(1rem, 3vw, 2.5rem);
  padding-left: max(
    var(--section-mood-gutter),
    calc((100vw - var(--section-mood-container-max)) / 2 + var(--section-mood-gutter))
  );
}

.section-mood__copy {
  max-width: 28rem;
}

.section-mood__title {
  margin: 0 0 0.75rem;
  font-family: "Melodrama-Medium", serif;
  font-size: clamp(2rem, 4.2vw, 3rem);
  font-weight: 500;
  line-height: 1.15;
  color: #111;
  letter-spacing: 0.01em;
}

.section-mood__subtitle {
  margin: 0 0 1.75rem;
  font-family: "Nunito", sans-serif;
  font-size: clamp(1rem, 1.35vw, 1.125rem);
  font-weight: 400;
  line-height: 1.5;
  color: #333;
}

.section-mood__cta {
  margin-top: 0;
}

.section-mood__visual {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  min-height: 0;
  margin-right: 0;
  width: 100%;
}

/* Pattern = 70% din înălțimea imaginii, centrat vertical; foto deasupra (z-index), „iese” sus/jos față de banda pattern */
.section-mood__figure {
  position: relative;
  z-index: 1;
  display: flex;
  max-width: 100%;
  margin: 0;
  padding: 0 clamp(0.5rem, 2vw, 1.5rem) 0 0;
  vertical-align: bottom;
  justify-content: center;
}

.section-mood__pattern {
  --pattern-frunze-bg: #ebe4dc;
  --pattern-frunze-size: 520px auto;
  position: absolute;
  left: 0;
  right: 0;
  top: 15%;
  bottom: 15%;
  z-index: 0;
  pointer-events: none;
}

.section-mood__photo {
  position: relative;
  z-index: 1;
  width: auto;
  max-width: 80%;
  height: auto;
  display: block;
  object-fit: contain;
  object-position: right bottom;
}

@media (max-width: 991.98px) {
  .section-mood__grid {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .section-mood__content {
    text-align: center;
    align-items: center;
    padding-left: var(--section-mood-gutter);
    padding-right: var(--section-mood-gutter);
    padding-bottom: 0;
    order: 1;
  }

  .section-mood__copy {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }

  /* Margine negativă doar pentru CTA deasupra imaginii (în .section-mood__content), nu pentru CTA-ul de sub grid-ul de produse */
  .section-mood__cta:not(.section-mood__cta--after-products) {
    position: relative;
    z-index: 2;
    margin-bottom: -2.25rem;
  }

  .section-mood__visual {
    order: 2;
    min-height: clamp(260px, 58vw, 420px);
    padding-top: 2.5rem;
    justify-content: center;
  }

  .section-mood__figure {
    padding: 0 0.5rem 0;
    margin-top:-20px;
  }

  .section-mood__photo {
    max-width: 90%;
  }
}

@media (min-width: 992px) {
  .section-mood__copy {
    padding-right: 0.5rem;
  }
}

/* ——— Despre: univers în cifre (text aliniat ca la .section-mood__content; Swiper până la marginea dreaptă) ——— */
.despre-univers {
  --despre-univers-container-max: 1600px;
  --despre-univers-gutter: 0.75rem;
  --despre-univers-inline: max(
    var(--despre-univers-gutter),
    calc((100vw - var(--despre-univers-container-max)) / 2 + var(--despre-univers-gutter))
  );
  background: #fff;
  color: #111;
  overflow: hidden;
  padding: clamp(2.5rem, 6vw, 4rem) 0;
}

.despre-univers__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: center;
  gap: 0;
  min-height: 0;
}

.despre-univers__intro {
  padding-left: var(--despre-univers-inline);
  padding-right: clamp(1rem, 3vw, 2rem);
}

.despre-univers__copy {
  max-width: 35rem;
}

.despre-univers__title {
  margin: 0 0 0.85rem;
  font-family: "Melodrama-Medium", serif;
  font-size: clamp(1.85rem, 3.5vw, 2.75rem);
  font-weight: 500;
  line-height: 1.2;
  color: #111;
  letter-spacing: 0.01em;
}

.despre-univers__lead {
  margin: 0;
  font-family: "Nunito", sans-serif;
  font-size: clamp(0.9375rem, 1.15vw, 1.0625rem);
  font-weight: 400;
  line-height: 1.65;
  color: #333;
}

.despre-univers__swiper-shell {
  min-width: 0;
  width: 100%;
  box-sizing: border-box;
}

.despre-univers-swiper {
  overflow: hidden;
  width: 100%;
}

.despre-univers-swiper .swiper-slide {
  height: auto;
  box-sizing: border-box;
}

.despre-univers__card {
  background: #f9f0e8;
  padding: clamp(1.35rem, 3.2vw, 1.85rem);
  height: 100%;
  min-height: 11rem;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  border-radius: 2px;
}

.despre-univers__card-title {
  margin: 0;
  font-family: "Nunito", sans-serif;
  font-size: clamp(1.05rem, 1.35vw, 1.2rem);
  font-weight: 700;
  line-height: 1.3;
  color: #111;
}

.despre-univers__card-text {
  margin: 0;
  font-family: "Nunito", sans-serif;
  font-size: clamp(0.875rem, 1.05vw, 0.9375rem);
  line-height: 1.65;
  color: #333;
}

@media (max-width: 991.98px) {
  .despre-univers__grid {
    grid-template-columns: 1fr;
  }

  .despre-univers__intro {
    padding-left: var(--despre-univers-inline);
    padding-right: var(--despre-univers-inline);
    margin-bottom: clamp(1.5rem, 4vw, 2.25rem);
  }

  .despre-univers__copy {
    max-width: 100%;
  }

  .despre-univers__swiper-shell {
    padding-left: var(--despre-univers-inline);
    padding-right: 0;
  }
}

/* ——— Despre: Boutique (intro + Swiper; fundal 70% #F9F1E8 / 30% alb) ——— */
.despre-boutique {
  --despre-boutique-cream: #f9f1e8;
  background: linear-gradient(
    to bottom,
    var(--despre-boutique-cream) 0%,
    var(--despre-boutique-cream) 70%,
    #fff 70%,
    #fff 100%
  );
  color: #111;
  overflow: hidden;
  padding: clamp(2.25rem, 5vw, 3.5rem) 0 clamp(2.5rem, 6vw, 4rem);
}

.despre-boutique__intro-row {
  margin-bottom: clamp(1.75rem, 4vw, 2.75rem);
}

.despre-boutique__hero {
  margin: 0;
  border-radius: 2px;
  overflow: hidden;
  background: #ede6df;
}

.despre-boutique__hero-img {
  display: block;
  width: 100%;
  height: auto;
  vertical-align: middle;
}

.despre-boutique__copy {
  max-width: 36rem;
}

.despre-boutique__title {
  margin: 0 0 clamp(1rem, 2.5vw, 1.35rem);
  font-family: "Melodrama-Medium", serif;
  font-size: clamp(1.85rem, 3.5vw, 2.75rem);
  font-weight: 500;
  line-height: 1.2;
  color: #111;
  letter-spacing: 0.01em;
}

.despre-boutique__text {
  margin: 0 0 1rem;
  font-family: "Nunito", sans-serif;
  font-size: clamp(0.9375rem, 1.15vw, 1.0625rem);
  font-weight: 400;
  line-height: 1.65;
  color: #333;
}

.despre-boutique__text:last-child {
  margin-bottom: 0;
}

.despre-boutique__carousel {
  padding-top: clamp(0.25rem, 1.5vw, 0.75rem);
}

.despre-boutique__swiper-wrap {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.15rem;
  align-items: center;
  max-width: 100%;
}

.despre-magazin-swiper {
  grid-column: 1;
  grid-row: 1;
  width: 100%;
  min-width: 0;
  overflow: hidden;
}

.despre-magazin-swiper .swiper-slide {
  height: auto;
  box-sizing: border-box;
}

.despre-boutique__slide {
  border-radius: 2px;
  overflow: hidden;
  background: #f0ebe4;
  aspect-ratio: 4 / 3;
}

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

.despre-boutique__nav-pair {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  grid-column: 1;
  grid-row: 2;
}

.despre-boutique__nav {
  flex-shrink: 0;
  width: 2.65rem;
  height: 2.65rem;
  padding: 0;
  border: 1px solid #111;
  border-radius: 50%;
  background: #fff;
  color: #111;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  transition:
    background 0.2s ease,
    color 0.2s ease,
    border-color 0.2s ease;
}

.despre-boutique__nav:hover {
  background: #111;
  color: #fff;
  border-color: #111;
}

.despre-boutique__nav:focus-visible {
  outline: 2px solid #d94100;
  outline-offset: 3px;
}

@media (min-width: 992px) {
  .despre-boutique__swiper-wrap {
    grid-template-columns: auto minmax(0, 1fr) auto;
    gap: clamp(0.65rem, 1.5vw, 1rem);
  }

  .despre-boutique__nav-pair {
    display: contents;
  }

  .despre-magazin-swiper {
    grid-column: 2;
    grid-row: 1;
  }

  .despre-boutique__nav--prev {
    grid-column: 1;
    grid-row: 1;
  }

  .despre-boutique__nav--next {
    grid-column: 3;
    grid-row: 1;
  }
}

/* ——— Despre: News (3 carduri; fundal card #F6F9F8; secțiune moștenește fundalul paginii) ——— */
.despre-news {
  padding: clamp(2rem, 5vw, 3.5rem) 0 clamp(2.5rem, 6vw, 4rem);
}

.despre-news__head {
  margin: 0 auto clamp(1.75rem, 4vw, 2.5rem);
  text-align: center;
}

.despre-news__title {
  margin: 0;
  font-family: "Melodrama-Medium", serif;
  font-size: clamp(2rem, 4.2vw, 3rem);
  font-weight: 500;
  line-height: 1.15;
  color: #111;
  letter-spacing: 0.01em;
}

.despre-news__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(1rem, 2.5vw, 1.5rem);
  width: 100%;
}

@media (min-width: 992px) {
  .despre-news__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.25rem;
    align-items: stretch;
  }
}

.despre-news-card {
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2.5vw, 1.35rem);
  height: 100%;
  min-height: 0;
  padding: clamp(1.35rem, 3vw, 1.85rem);
  box-sizing: border-box;
  background: #f6f9f8;
  border-radius: 2px;
}

.despre-news-card__top {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.75rem;
}

.despre-news-card__badge {
  display: inline-block;
  padding: 0.35rem 0.65rem;
  font-family: "Nunito", sans-serif;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  line-height: 1.3;
  color: #fff;
  background: #d94100;
}

.despre-news-card__arrow {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  margin: 0;
  padding: 0;
  border: none;
  background: #111;
  color: #fff;
  text-decoration: none;
  cursor: pointer;
  transition:
    background-color 0.25s ease,
    color 0.25s ease,
    transform 0.25s ease;
}

.despre-news-card__arrow:hover {
  background: #d94100;
  color: #fff;
}

.despre-news-card__arrow:focus-visible {
  outline: 2px solid #d94100;
  outline-offset: 2px;
}

.despre-news-card__arrow-svg {
  display: block;
  flex-shrink: 0;
  color: #fff;
}

.despre-news-card__arrow-svg path {
  stroke: #fff;
}

.despre-news-card__title {
  margin: 0;
  font-family: "Nunito", sans-serif;
  font-size: clamp(1.05rem, 1.35vw, 1.2rem);
  font-weight: 700;
  line-height: 1.35;
  color: #111;
}

.despre-news-card__title-link {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease;
}

.despre-news-card__title-link:hover {
  color: #d94100;
}

.despre-news-card__title-link:focus-visible {
  outline: 2px solid #d94100;
  outline-offset: 3px;
  border-radius: 2px;
}

.despre-news__footer {
  margin-top: clamp(2rem, 5vw, 3rem);
  text-align: center;
}

/* Mood invers: imagine + pattern în stânga (până la marginea ecranului), text + CTA în dreapta (aliniat la container) */
.section-mood--reverse .section-mood__content {
  padding-left: clamp(1rem, 3vw, 2.5rem);
  padding-right: max(
    var(--section-mood-gutter),
    calc((100vw - var(--section-mood-container-max)) / 2 + var(--section-mood-gutter))
  );
}

.section-mood--reverse .section-mood__visual {
  justify-content: flex-start;
}

.section-mood--reverse .section-mood__figure {
  padding: 0 0 0 clamp(0.5rem, 2vw, 1.5rem);
  justify-content: center;
}

.section-mood--reverse .section-mood__photo {
  object-position: left bottom;
}

@media (max-width: 991.98px) {
  .section-mood--reverse .section-mood__content {
    text-align: center;
    align-items: center;
    padding-left: var(--section-mood-gutter);
    padding-right: var(--section-mood-gutter);
  }
}

/* Grid 4 produse sub mood + CTA (etichete portocalii ca în mockup) */
.section-mood__products {
  max-width: 1600px;
  margin-left: auto;
  margin-right: auto;
  padding-bottom: clamp(0.5rem, 2vw, 1.5rem);
}

.section-mood__products .product-label--new {
  background: #d44601;
}

.section-mood__cta--after-products .buton-portocaliu {
  display: inline-block;
}

/* ——— Despre: secțiune lungă + video sticky + scrub la scroll ——— */
.despre-story {
  --despre-story-length: 60vh;
  --despre-story-sticky-top: 200px;
  position: relative;
  min-height: var(--despre-story-length);
  background: #fff;
  color: #111;
}

.despre-story__container {
  padding-top: clamp(1rem, 3vw, 2rem);
  padding-bottom: clamp(1rem, 3vw, 2rem);
}

.despre-story__row {
  align-items: stretch;
}

@media (min-width: 992px) {
  .despre-story__row {
    min-height: var(--despre-story-length);
  }
}

.despre-story__sticky {
  position: sticky;
  top: 0;
  width: 100%;
  box-sizing: border-box;
}

.despre-story__media {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: min(88vh, calc(100vh - var(--despre-story-sticky-top)));
  max-height: min(90vh, calc(100vh - var(--despre-story-sticky-top)));
  border-radius: 2px;
  overflow: hidden;
  background: #fff;
}

/* Încadrează video-ul; ::before = fade sus/jos; ::after = mască circulară (centru vizibil). */
.despre-story__video-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 100%;
  min-height: 0;
  max-height: 100%;
}

.despre-story__video-wrap::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  pointer-events: none;
  border-radius: inherit;
  background: linear-gradient(
    to bottom,
    #ffffff 0%,
    rgba(255, 255, 255, 0) 10%,
    rgba(255, 255, 255, 0) 90%,
    #ffffff 100%
  );
}

.despre-story__video-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  pointer-events: none;
  border-radius: inherit;
  background: radial-gradient(
    circle at center,
    transparent 0%,
    transparent 38%,
    rgba(255, 255, 255, 0.35) 58%,
    rgba(255, 255, 255, 0.82) 78%,
    #ffffff 100%
  );
}

.despre-story__video {
  position: relative;
  z-index: 0;
  display: block;
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  object-position: center center;
}

.despre-story__panels {
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 3vh, 2.5rem);
  width: 100%;
  min-height: 0;
}

.despre-story__title {
  margin: 0 0 0.75rem;
  font-family: "Melodrama-Medium", "Nunito", serif;
  font-size: clamp(1.65rem, 3vw, 2.25rem);
  font-weight: 500;
  line-height: 1.2;
  color: #111;
}

.despre-story__text {
  margin: 0 0 0.85rem;
  font-family: "Nunito", sans-serif;
  font-size: clamp(0.9375rem, 1.15vw, 1rem);
  line-height: 1.65;
  color: #333;
}

.despre-story__text:last-child {
  margin-bottom: 0;
}

.despre-story__lead {
  font-weight: 600;
  color: #111;
}

.despre-story__kicker {
  font-size: clamp(0.9rem, 1.05vw, 0.98rem);
  font-style: italic;
  color: #444;
}

.despre-story__signoff {
  font-weight: 600;
  font-style: italic;
  letter-spacing: 0.02em;
  color: #111;
}

@media (min-width: 992px) {
  .despre-story__panels {
    min-height: var(--despre-story-length);
    height: 100%;
    justify-content: space-around;
    gap: 0;
    padding-bottom: 0.25rem;
  }

  .despre-story__panel {
    flex: 0 1 auto;
  }
}

@media (max-width: 991.98px) {
  /*
   * Coloana video: absolute în .despre-story__row (înălțimea rândului = coloana text).
   * .despre-story__sticky: sticky în acel strat înalt → videoul rămâne în viewport
   * cât timp secțiunea e parcursă, fără position:fixed pe viewport.
   */
  .despre-story__row {
    position: relative;
    flex-direction: column;
    align-items: stretch;
    min-height: 0;
    --bs-gutter-y: 0;
  }

  .despre-story__col-video {
    order: 0;
    position: absolute;
    inset: 0;
    width: 100%;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    pointer-events: none;
    box-sizing: border-box;
    padding-bottom: env(safe-area-inset-bottom, 0);
  }

  .despre-story__col-copy {
    order: 1;
    position: relative;
    z-index: 2;
    width: 100%;
  }

  .despre-story__panels {
    margin-top: 27vh;
    position: relative;
    z-index: 2;
    margin-bottom: 17vh;
  }

  .despre-story__panel {
    margin: 17vh 0;
    padding: 20px;
    background-color: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(2px);
  }

  .despre-story__sticky {
    position: sticky;
    top: max(5rem, env(safe-area-inset-top, 0px) + 4.5rem);
    flex: 0 0 auto;
    align-self: stretch;
    width: 100%;
    height: 35vh;
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
  }

  .despre-story__media {
    min-height: 0;
    max-height: 100%;
    width: 100%;
  }

  .despre-story__video-wrap {
    flex: 1 1 auto;
    min-height: 0;
    height: 100%;
  }

  .despre-story__video {
    width: 100%;
    height: 100%;
    max-height: none;
    object-fit: contain;
  }
}

@media (prefers-reduced-motion: reduce) {
  .despre-story {
    min-height: 0;
  }

  .despre-story__sticky {
    position: relative;
    top: auto;
  }

  .despre-story__panels {
    min-height: 0 !important;
    justify-content: flex-start !important;
    gap: 2rem;
  }
}

/* ——— Secțiune produse (titluri + grid reutilizabil) ——— */
.section-showcase {
  padding: clamp(2rem, 5vw, 3.5rem) 0;
  background: #fff;
  color: #111;
}

.section-showcase__container {
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
}

.section-showcase__layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.75rem;
}

.section-showcase__intro {
  text-align: center;
}

.section-showcase__kicker {
  font-size: 0.9rem;
  color: #555;
  margin: 0 0 0.5rem;
  font-family: "Nunito", sans-serif;
}

.section-showcase__title {
  font-family: "Melodrama-Medium", "Nunito", serif;
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-weight: 500;
  color: #111 !important;
  margin: 0;
  line-height: 1.2;
}

.section-showcase__see-all {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: "Nunito", sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #111;
  text-decoration: none;
  justify-self: center;
  transition: color 0.2s ease;
}

.section-showcase__see-all:hover {
  color: #d44601;
}

.section-showcase__see-all-arrow {
  font-weight: 400;
}

@media (min-width: 992px) {
  .section-showcase__layout {
    grid-template-columns: 1fr auto;
    grid-template-rows: auto auto;
    gap: 2rem 1.5rem;
    align-items: end;
  }

  .section-showcase__intro {
    grid-column: 1;
    grid-row: 1;
    text-align: left;
  }

  .section-showcase__see-all {
    grid-column: 2;
    grid-row: 1;
    justify-self: end;
    align-self: end;
  }

  .section-showcase__grid {
    grid-column: 1 / -1;
    grid-row: 2;
  }
}

/* Reduceri: titlu serif centrat + „Vezi toate” la dreapta; grid doar pe un rând de header + produse */
.section-showcase--reduceri .section-showcase__layout--reduceri {
  grid-template-columns: 1fr;
}

@media (min-width: 992px) {
  .section-showcase--reduceri .section-showcase__layout--reduceri {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
    align-items: stretch;
    gap: 2rem;
  }

  .section-showcase--reduceri .section-showcase__grid {
    grid-column: 1;
    grid-row: 2;
  }
}

.section-showcase__head-reduceri {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: end;
  gap: 0.75rem 1rem;
  width: 100%;
}

.section-showcase__head-reduceri .section-showcase__title {
  grid-column: 2;
  margin: 0;
  text-align: center;
}

.section-showcase__head-reduceri .section-showcase__see-all--reduceri {
  grid-column: 3;
  justify-self: end;
  align-self: end;
}

@media (max-width: 991.98px) {
  .section-showcase__head-reduceri {
    grid-template-columns: 1fr;
    justify-items: center;
  }

  .section-showcase__head-reduceri .section-showcase__title {
    grid-column: 1;
  }

  .section-showcase__head-reduceri .section-showcase__see-all--reduceri {
    grid-column: 1;
    justify-self: center;
  }
}

/* Etichete produs (reutilizabile: --bestseller, --last, etc.) */
.product-label {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.35rem 0.65rem;
  font-family: "Nunito", sans-serif;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #fff;
  background: #d44601;
  border-radius: 2px;
  line-height: 1.2;
}

.product-label__icon {
  font-size: 0.65rem;
  opacity: 0.95;
}

.product-label--last {
  background: #c73d00;
}

.product-label--new {
  background: #2a8f82;
}

.product-label--discount {
  padding: 0.4rem 0.55rem;
  font-size: 0.7rem;
  letter-spacing: 0.04em;
}

/* Card produs */
.product-card {
  height: 100%;
}

.product-card__media {
  position: relative;
  margin-bottom: 0.75rem;
}

.product-card__thumb-link {
  display: block;
  text-decoration: none;
  color: inherit;
}

.product-card__thumb {
  aspect-ratio: 1;
  width: 100%;
  background: #f8f8f8;
  border-radius: 2px;
  overflow: hidden;
  transition: background 0.2s ease;
}

.product-card:hover .product-card__thumb {
  background: #f0f0f0;
}

.product-card__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 2px;
  transform: scale(1);
  transition: transform 0.45s ease;
  will-change: transform;
}

.product-card:hover .product-card__thumb img,
.product-card:focus-within .product-card__thumb img {
  transform: scale(1.06);
}

@media (prefers-reduced-motion: reduce) {
  .product-card__thumb img {
    transition: none;
  }

  .product-card:hover .product-card__thumb img,
  .product-card:focus-within .product-card__thumb img {
    transform: scale(1);
  }
}

.product-card__actions {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.product-card__action {
  width: 2.25rem;
  height: 2.25rem;
  padding: 0;
  border: 1px solid #e0e0e0;
  border-radius: 4px;
  background: #fff;
  color: #111;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  line-height: 1;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.06);
  transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease;
}

.product-card__action:hover {
  border-color: #ccc;
  color: #d44601;
}

/* Touch / mobil: min. 44×44px (WCAG 2.5.5 / Lighthouse touch targets) */
@media (max-width: 991.98px) {
  .product-card__action {
    width: 2.75rem;
    min-width: 2.75rem;
    height: 2.75rem;
    min-height: 2.75rem;
  }
}

/* Mobil: ascundem butonul "adaugă în coș" (al 2-lea action),
   reducem dimensiunea butonului de wishlist și a etichetei produs.
   Acțiunea principală pe mobil rămâne tap pe card -> pagina produsului. */
@media (max-width: 767.98px) {
  .product-card__actions {
    top: 0.5rem;
    right: 0.5rem;
    gap: 0.35rem;
  }

  .product-card__action:nth-child(2) {
    display: none;
  }

  .product-card__action {
    width: 2rem;
    min-width: 2rem;
    height: 2rem;
    min-height: 2rem;
    font-size: 0.8rem;
    border-radius: 3px;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.08);
  }

  .product-label {
    top: 0.5rem;
    left: 0.5rem;
    gap: 0.25rem;
    padding: 0.25rem 0.45rem;
    font-size: 0.55rem;
    letter-spacing: 0.05em;
  }

  .product-label__icon {
    font-size: 0.55rem;
  }

  .product-label--discount {
    padding: 0.3rem 0.45rem;
    font-size: 0.6rem;
  }
}

/* Desktop: acțiuni doar la hover / focus în card */
@media (min-width: 992px) {
  .product-card__actions {
    opacity: 0;
    transition: opacity 0.2s ease;
  }

  .product-card:hover .product-card__actions,
  .product-card:focus-within .product-card__actions {
    opacity: 1;
  }
}

.product-card__title {
  font-family: "Nunito", sans-serif;
  font-size: 1rem;
  font-weight: 600;
  text-align: center;
  margin: 0 0 0.35rem;
  line-height: 1.35;
  color: #111 !important;
}

.product-card__title-link {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease;
}

.product-card__title-link:hover {
  color: #d44601;
}

.product-card__price {
  text-align: center;
  margin: 0;
  font-family: "Nunito", sans-serif;
  font-size: 0.9rem;
  color: #333;
}

.product-card__price--sale {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: center;
  gap: 0.5rem 0.65rem;
}

.product-card__price-current {
  font-weight: 700;
  color: #d44601;
}

.product-card__price-old {
  font-size: 0.85em;
  font-weight: 400;
  color: #9a9a9a;
  text-decoration: line-through;
}

/* ——— Beneficii (fundal pattern + panou alb, 3 coloane egale ~33%) ——— */

.section-usps {
  padding: clamp(2rem, 5vw, 4rem) 0;
  color: #111;
}

.section-usps__wrap {
  width: 100%;
}

.section-usps__panel {
  background: #fff;
  border-radius: 4px;
  padding: clamp(2rem, 4vw, 3rem);
  box-shadow: 0 4px 28px rgba(0, 0, 0, 0.08);
}

.section-usps__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  height: 100%;
  gap: 1rem;
}

.section-usps__icon {
  width: 80px;
  height: 80px;
  object-fit: contain;
  flex-shrink: 0;
}

.section-usps__title {
  font-family: "Nunito", sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: #111 !important;
  margin: 0;
  line-height: 1.3;
}

.section-usps__text {
  font-family: "Nunito", sans-serif;
  font-size: 0.9rem;
  line-height: 1.55;
  color: #333;
  margin: 0;
}

/* Mobile: icon stânga, text dreapta; desktop: totul centrat pe coloană */
@media (max-width: 991.98px) {
  .section-usps__item {
    flex-direction: row;
    align-items: flex-start;
    text-align: left;
    gap: 1.25rem;
  }

  .section-usps__body {
    flex: 1;
    min-width: 0;
  }
}

/* ——— Grilă categorii: 3 coloane egale; mijloc = brățări + (pandantive | coliere 50%) ——— */
.section-categories {
  background: #fff;
}

.category-grid {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-template-rows: minmax(240px, 1fr) minmax(240px, 1fr);
  min-height: 500px;
  align-items: stretch;
}

.category-tile--inele {
  grid-column: 1;
  grid-row: 1 / -1;
}

.category-grid__center {
  grid-column: 2;
  grid-row: 1 / -1;
  display: grid;
  grid-template-rows: 1fr 1fr;
  gap: 12px;
  min-height: 0;
}

.category-grid__center-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  min-height: 0;
}

.category-tile--cercei {
  grid-column: 3;
  grid-row: 1 / -1;
}

.category-grid__center .category-tile {
  min-height: 0;
  height: 100%;
}

.category-grid__center-split .category-tile {
  min-height: 0;
  height: 100%;
}

.category-tile {
  position: relative;
  display: block;
  overflow: hidden;
  min-height: 0;
  color: inherit;
  text-decoration: none;
  outline: none;
}

.category-tile:focus-visible {
  box-shadow: 0 0 0 3px rgba(82, 192, 167, 0.6);
  z-index: 1;
}

.category-tile__media {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.category-tile__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1);
  transition: transform 0.45s ease;
  will-change: transform;
}

.category-tile:hover .category-tile__media img,
.category-tile:focus-visible .category-tile__media img {
  transform: scale(1.08);
}

@media (prefers-reduced-motion: reduce) {
  .category-tile__media img {
    transition: none;
  }

  .category-tile:hover .category-tile__media img,
  .category-tile:focus-visible .category-tile__media img {
    transform: none;
  }
}

.category-tile__label {
  position: absolute;
  left: 12px;
  bottom: 12px;
  z-index: 2;
  padding: 0.5rem 0.95rem;
  background: #52c0a7;
  color: #fff;
  font-family: "Nunito", sans-serif;
  font-size: 1rem;
  font-weight: 600;
  text-transform: lowercase;
  letter-spacing: 0.03em;
  line-height: 1.2;
  pointer-events: none;
}

@media (max-width: 991.98px) {
  .category-grid {
    grid-template-columns: 1fr;
    grid-template-rows: none;
    min-height: 0;
  }

  .category-tile--inele,
  .category-grid__center,
  .category-tile--cercei {
    grid-column: auto;
    grid-row: auto;
  }

  .category-grid__center {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }

  .category-grid__center-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .category-grid__center .category-tile,
  .category-tile--inele,
  .category-tile--cercei {
    min-height: 220px;
    height: auto;
  }

  .category-tile--inele {
    min-height: 260px;
  }

  .category-grid__center-split .category-tile {
    min-height: 200px;
  }

  .category-tile--cercei {
    min-height: 280px;
  }
}

@media (min-width: 992px) {
  .category-tile--inele,
  .category-tile--cercei {
    min-height: 0;
  }
}

#nav-icon3 {
  width: 50px;
  height: 45px;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: .5s ease-in-out;
  -moz-transition: .5s ease-in-out;
  -o-transition: .5s ease-in-out;
  transition: .5s ease-in-out;
  cursor: pointer;
  position: absolute;
  /*top:25px;*/
  left:0px;
}

#nav-icon3 span {
  display: block;
  position: absolute;
  height: 8px;
  width: 100%;
  background: #1e2d7c;
  border-radius: 7px;
  border:0px solid white;
  opacity: 1;
  left: 0;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: .25s ease-in-out;
  -moz-transition: .25s ease-in-out;
  -o-transition: .25s ease-in-out;
  transition: .25s ease-in-out;
  
}

#nav-icon3 span:nth-child(1) {
  top: 0px;
  -webkit-box-shadow: 1px 1px 0px 1px rgba(0,0,0,0.2);
	-moz-box-shadow: 1px 1px 0px 1px rgba(0,0,0,0.2);
	box-shadow: 1px 1px 0px 1px rgba(0,0,0,0.2);
}

#nav-icon3 span:nth-child(2),#nav-icon3 span:nth-child(3) {
  top: 14px;
}

#nav-icon3 span:nth-child(3) {  
  -webkit-box-shadow: 1px 1px 0px 1px rgba(0,0,0,0.2);
	-moz-box-shadow: 1px 1px 0px 1px rgba(0,0,0,0.2);
	box-shadow: 1px 1px 0px 1px rgba(0,0,0,0.2);
}

#nav-icon3 span:nth-child(4) {
  top: 28px;
  -webkit-box-shadow: 1px 1px 0px 1px rgba(0,0,0,0.2);
	-moz-box-shadow: 1px 1px 0px 1px rgba(0,0,0,0.2);
	box-shadow: 1px 1px 0px 1px rgba(0,0,0,0.2);
}

#nav-icon3.open span {
	background:#1e2d7c;
	box-shadow:none;
}

#nav-icon3.open span:nth-child(1) {
  top: 18px;
  width: 0%;
  left: 50%;
}

#nav-icon3.open span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
    border:none;
}

#nav-icon3.open span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
    border:none;
}

#nav-icon3.open span:nth-child(4) {
  top: 18px;
  width: 0%;
  left: 50%;
  border:none;
}

/* Customize the checkbox appearance */
.custom-checkbox {
  display: inline-block;
  position: relative;
  padding-left: 40px;
  margin-bottom: 15px;
  margin-top:15px;
  cursor: pointer;
  font-size: 16px;
  line-height: 1.5;
}

/* Style the checkbox input */
.custom-checkbox input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}

.custom-checkbox .checkmark {
  position: absolute;
  top: 0;
  left: 0;
  width: 30px;
  height: 30px;
  border: 3px solid #fff;
  border-radius: 5px;
  margin-right:10px;
  background-color:#fff;
}

/* Style the checkmark icon */
.custom-checkbox .checkmark:after {
  content: "";
  position: absolute;
  display: none;
  left: 9px;
  top: 5px;
  width: 6px;
  height: 13px;
  border: solid #000;
  border-width: 0 3px 3px 0;
  transform: rotate(45deg);
}

/* Style the checked state */
.custom-checkbox input[type="checkbox"]:checked + .checkmark:after {
  display: block;
}

/* ——— Testimoniale (Swiper: 2.2 slide desktop, 1 mobil) ——— */
.section-testimonials {
  padding: clamp(2.5rem, 6vw, 4rem) 0 clamp(3rem, 7vw, 5rem);
  background: #fff;
  color: #111;
  overflow: hidden;
}

.section-testimonials__title {
  font-family: "Melodrama-Medium", serif;
  font-size: clamp(1.5rem, 4vw, 2.35rem);
  font-weight: 500;
  line-height: 1.25;
  text-align: center;
  color: #111 !important;
  margin: 0 auto 2rem;
  max-width: 42rem;
}

.section-testimonials__title-line {
  display: inline-block;
}

.section-testimonials__slider-wrap {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  max-width: 100%;
  position: relative;
  z-index: 0;
}

@media (min-width: 992px) {
  .section-testimonials__slider-wrap {
    gap: 0.75rem;
  }
}

.testimonial-swiper {
  flex: 1;
  min-width: 0;
  overflow: hidden;
  position: relative;
  z-index: 1;
}

.testimonial-swiper .swiper-slide {
  height: auto;
  box-sizing: border-box;
}

.testimonial-nav {
  flex-shrink: 0;
  width: 2.75rem;
  height: 2.75rem;
  padding: 0;
  border: 1px solid #111;
  border-radius: 50%;
  background: #fff;
  color: #111;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  position: relative;
  z-index: 20;
  pointer-events: auto;
  transition:
    background 0.2s ease,
    color 0.2s ease,
    border-color 0.2s ease;
}

.testimonial-nav:hover {
  background: #111;
  color: #fff;
  border-color: #111;
}

.testimonial-nav:focus-visible {
  outline: 2px solid #52c0a7;
  outline-offset: 3px;
}

.testimonial-card {
  display: grid;
  grid-template-columns: minmax(0, 140px) minmax(0, 1fr);
  gap: 1.25rem;
  align-items: stretch;
  height: 100%;
  min-height: 280px;
  padding: 1.25rem 1.25rem 1.35rem;
  background: #fff;
  border-radius: 4px;
}

.testimonial-card--no-mood {
  grid-template-columns: 1fr;
}

.testimonial-card__mood {
  position: relative;
  height: 100%;
  min-height: 0;
  border-radius: 4px;
  overflow: hidden;
  background: #f5f5f5;
  align-self: stretch;
  min-width: 0;
}

.testimonial-card__mood img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: bottom center;
  display: block;
}

.testimonial-card__body {
  display: flex;
  flex-direction: column;
  min-width: 0;
  text-align: left;
}

.testimonial-card__stars {
  display: flex;
  gap: 0.2rem;
  margin-bottom: 0.75rem;
  letter-spacing: 0.02em;
}

.testimonial-card__stars .fa-star {
  color: #52c0a7;
  font-size: 0.85rem;
}

.testimonial-card__stars .testimonial-card__star--empty {
  opacity: 0.35;
  color: #b0b0b0;
}

.testimonial-card__quote {
  margin: 0 0 1rem;
  padding: 0;
  border: 0;
  font-family: "Nunito", sans-serif;
  font-weight: 400;
  line-height: 1.55;
  color: #444;
}

.testimonial-card__quote p {
  margin: 0;
  font-size: 16px;
}

.testimonial-card__author {
  margin: 0 0 1rem;
  font-family: "Nunito", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: #111;
}

.testimonial-card__separator {
  border: 0;
  border-top: 1px solid #e0e0e0;
  margin: 0 0 1rem;
  width: 100%;
}

.testimonial-card__product {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-top: auto;
}

.testimonial-card__product-thumb {
  width: 56px;
  height: 56px;
  flex-shrink: 0;
  border-radius: 4px;
  overflow: hidden;
  background: #f5f5f5;
}

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

.testimonial-card__product-name {
  margin: 0;
  font-family: "Nunito", sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  color: #111;
  line-height: 1.35;
}

@media (max-width: 991.98px) {
  .testimonial-nav {
    width: 2.4rem;
    height: 2.4rem;
    font-size: 0.8rem;
  }

  .testimonial-card {
    grid-template-columns: minmax(0, 100px) minmax(0, 1fr);
    gap: 1rem;
    min-height: 0;
    padding: 1rem;
  }

  .testimonial-card--no-mood {
    grid-template-columns: 1fr;
  }

  .testimonial-card__quote p {
    font-size: 14px;
  }
}

/* ——— Blog (grid desktop: featured stânga, 2 carduri dreapta; mobil: coloană) ——— */
.section-blog {
  background: #fff;
  color: #111;
  padding-top: clamp(2.75rem, 5vw, 4.25rem);
  padding-bottom: clamp(3.25rem, 6vw, 5.5rem);
}

.section-blog__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.section-blog__title {
  font-family: "Melodrama-Medium", serif;
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 500;
  margin: 0;
  color: #111 !important;
  line-height: 1.2;
}

.section-blog__see-all {
  align-items: center;
  gap: 0.4rem;
  font-family: "Nunito", sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #111;
  text-decoration: none;
  transition: color 0.2s ease;
}

.section-blog__see-all:hover {
  color: #d44601;
}

.section-blog__see-all-arrow {
  font-weight: 400;
}

.section-blog__grid {
  display: grid;
  gap: 1rem;
}

.blog-card {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 0;
  text-decoration: none;
  color: inherit;
  min-height: 280px;
  outline: none;
  transition: transform 0.35s ease;
}

.blog-card:focus-visible {
  outline: 2px solid #52c0a7;
  outline-offset: 3px;
}

.blog-card:hover {
  transform: translateY(-4px);
}

.blog-card--featured {
  min-height: 320px;
}

.blog-card__link-icon {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  z-index: 10;
  width: 2.25rem;
  height: 2.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #111;
  color: #fff;
  line-height: 1;
  pointer-events: none;
}

.blog-card__link-icon-svg {
  display: block;
  flex-shrink: 0;
  color: inherit;
}

.blog-card--image .blog-card__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.blog-card--image .blog-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1);
  transition: transform 0.5s ease;
  will-change: transform;
}

.blog-card--image:hover .blog-card__media img,
.blog-card--image:focus-visible .blog-card__media img {
  transform: scale(1.07);
}

.blog-card--image .blog-card__panel {
  position: absolute;
  left: 25px;
  right: 25px;
  bottom: 25px;
  z-index: 2;
  padding: 1rem 1.15rem 1.2rem;
  box-sizing: border-box;
  background: rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
}

.blog-card__label {
  display: inline-block;
  padding: 0.35rem 0.65rem;
  margin-bottom: 0.65rem;
  font-family: "Nunito", sans-serif;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #fff;
  background: #d44601;
  line-height: 1.2;
}

.blog-card .blog-card__title {
  margin: 0;
  font-family: "Nunito", sans-serif;
  font-size: clamp(0.95rem, 1.2vw, 1.1rem);
  font-weight: 600;
  line-height: 1.45;
  color: #fff !important;
}

.blog-card--featured .blog-card__title {
  font-size: clamp(1rem, 1.35vw, 1.2rem);
}

.blog-card--text {
  background: #f0f0f0;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 1.5rem 1.35rem;
  min-height: 240px;
}

.blog-card--text .blog-card__inner {
  position: relative;
  z-index: 1;
  max-width: 100%;
}

.blog-card--text .blog-card__title {
  color: #111 !important;
}

@media (prefers-reduced-motion: reduce) {
  .blog-card {
    transition: none;
  }

  .blog-card:hover {
    transform: none;
  }

  .blog-card--image .blog-card__media img {
    transition: none;
  }

  .blog-card--image:hover .blog-card__media img,
  .blog-card--image:focus-visible .blog-card__media img {
    transform: none;
  }
}

@media (max-width: 991.98px) {
  .section-blog__head {
    justify-content: center;
    margin-bottom: 1.25rem;
  }

  .section-blog__title {
    text-align: center;
  }
}

@media (min-width: 992px) {
  .section-blog__grid {
    grid-template-columns: minmax(0, 2fr) minmax(0, 1fr);
    grid-template-rows: minmax(0, 1fr) minmax(0, 1fr);
    min-height: clamp(580px, 48vh, 720px);
    align-items: stretch;
  }

  .blog-card--featured {
    grid-column: 1;
    grid-row: 1 / -1;
    min-height: 0;
  }

  .section-blog__grid > .blog-card:nth-child(2) {
    grid-column: 2;
    grid-row: 1;
  }

  .section-blog__grid > .blog-card:nth-child(3) {
    grid-column: 2;
    grid-row: 2;
  }
}

/* Pagină blog: titlu + breadcrumb + articol featured (același snippet ca index, full width în container) */
.blog-page {
  font-family: "Nunito", sans-serif;
  color: #222;
  background: #fff;
}

.blog-page .product-detail__title {
  padding-right: 0;
}

.blog-page__breadcrumb .product-breadcrumb__viewport {
  margin: 0;
}

.blog-page__featured {
  width: 100%;
}

/* Resetează regulile din grid-ul homepage (min-height: 0, grid-row) pentru cardul izolat */
.blog-page__featured .blog-card.blog-card--featured {
  grid-column: auto;
  grid-row: auto;
  width: 100%;
  min-height: clamp(300px, 52vw, 560px);
}

@media (min-width: 992px) {
  .blog-page__featured .blog-card.blog-card--featured {
    min-height: clamp(360px, 40vw, 580px);
  }
}

/* Secțiune blog: Ghidul bijuteriilor — grid 3×33%: featured 66%, dreapta + rând jos = 33% fiecare */
.blog-guide {
  background: #fff;
  color: #111;
}

.blog-guide__grid {
  display: grid;
  gap: 1rem;
}

.blog-guide__stack {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

@media (max-width: 991.98px) {
  .blog-guide__grid {
    grid-template-columns: 1fr;
  }

  /* Arta de a trăi: pe mobil, cele două carduri stânga înaintea featured-ului mare */
  .blog-guide__grid--mirror .blog-guide__stack {
    order: 1;
  }

  .blog-guide__grid--mirror > .blog-card--featured {
    order: 2;
  }

  .blog-guide__grid--mirror > .blog-guide__card-bottom {
    order: 3;
  }
}

@media (min-width: 992px) {
  .blog-guide__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    /* Primul rând: înălțime minimă clară (featured + stack dreapta), aliniat vizual cu rândul de jos */
    grid-template-rows: minmax(clamp(520px, 42vh, 680px), 1fr) auto;
    min-height: clamp(820px, 62vh, 1040px);
    align-items: stretch;
  }

  .blog-guide__grid > .blog-card--featured {
    grid-column: 1 / span 2;
    grid-row: 1;
    min-height: 0;
  }

  .blog-guide__stack {
    grid-column: 3;
    grid-row: 1;
    min-width: 0;
    min-height: 0;
  }

  .blog-guide__stack > .blog-card {
    flex: 1 1 0;
    min-height: 0;
  }

  .blog-guide__grid > .blog-guide__card-bottom {
    grid-row: 2;
    min-height: clamp(280px, 28vw, 400px);
  }

  .blog-guide__grid > .blog-guide__card-bottom:nth-child(3) {
    grid-column: 1;
  }

  .blog-guide__grid > .blog-guide__card-bottom:nth-child(4) {
    grid-column: 2;
  }

  .blog-guide__grid > .blog-guide__card-bottom:nth-child(5) {
    grid-column: 3;
  }

  /* Varianta în oglindă: 33% stânga (2 carduri), 66% dreapta (featured) */
  .blog-guide__grid--mirror > .blog-card--featured {
    grid-column: 2 / span 2;
    grid-row: 1;
  }

  .blog-guide__grid--mirror > .blog-guide__stack {
    grid-column: 1;
    grid-row: 1;
  }
}

/*
 * Arhivă categorie (carduri lista): grid separat față de blog-guide__grid —
 * exact 3 coloane pe rând pe desktop; pe mobil o coloană.
 * Cardurile rămân vizual „bottom” prin clasa pe link (.blog-guide__card-bottom).
 */
.category-archive-cards {
  display: grid;
  gap: 1rem;
  grid-template-columns: minmax(0, 1fr);
  align-items: stretch;
}

@media (min-width: 992px) {
  .category-archive-cards {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    /* flow implicit: câte o „linie” de 3 celule, apoi rând nou */
  }

  .category-archive-cards .blog-guide__card-bottom {
    min-height: clamp(280px, 28vw, 400px);
  }
}

.blog-guide__load-more {
  font-family: "Nunito", sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #111 !important;
  background: #fff !important;
  border: 1px solid #111 !important;
  border-radius: 2px;
  padding: 0.85rem 2rem;
}

.blog-guide__load-more:hover {
  background: #faf8f6 !important;
  color: #111 !important;
}

/* ——— Pagină articol blog ——— */
.article-page {
  background: #fff;
  color: #222;
}

.article-page__breadcrumb .product-breadcrumb__viewport {
  margin: 0;
}

.article-page__label {
  display: inline-block;
  padding: 0.35rem 0.65rem;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #fff;
  background: #d44601;
  border-radius: 2px;
  line-height: 1.2;
}

.article-page .product-detail__title {
  padding-right: 0;
}

.article-page__hero {
  margin: 0;
}

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

.article-page__content {
  line-height: 1.75;
}

.article-page__content p {
  margin-bottom: 1.15rem;
}

.article-page__h2 {
  font-size: clamp(1.35rem, 2.5vw, 1.75rem);
  font-weight: 500;
  color: #111;
  margin: 2rem 0 1rem;
  line-height: 1.2;
}

.article-page__inline-img {
  display: block;
  height: auto;
  object-fit: cover;
  aspect-ratio: 1 / 1;
}

.article-page__share {
  border-color: #e8e4e0 !important;
}

.article-page__share-label {
  font-size: 0.875rem;
  font-weight: 700;
  color: #111;
}

.article-page__share-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 50%;
  background: #bfe8df;
  color: #1a5c52;
  text-decoration: none;
  font-size: 0.9rem;
  transition: background 0.2s ease, color 0.2s ease;
}

.article-page__share-btn:hover {
  background: #52c0a7;
  color: #fff;
}

@media (min-width: 992px) {
  .article-page__sidebar {
    position: sticky;
    top: 1rem;
  }
}

.article-widget__title {
  font-family: "Nunito", sans-serif;
  font-size: 1.125rem;
  font-weight: 700;
  color: #111;
  margin: 0 0 1rem;
  line-height: 1.3;
}

.article-widget__featured-media {
  overflow: hidden;
  background: #f0eeeb;
}

.article-widget__featured-media img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  aspect-ratio: 16 / 10;
}

.article-widget__featured-title {
  font-size: 1.1rem;
  font-weight: 500;
  line-height: 1.35;
  color: #111;
  margin: 0 0 0.35rem;
}

.article-widget__read-more {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(0, 0, 0, 0.5);
  text-decoration: underline;
  text-underline-offset: 0.15em;
}

.article-widget__read-more:hover {
  color: rgba(0, 0, 0, 0.75);
}

.article-widget__featured:hover .article-widget__featured-title {
  color: #d44601;
}

.article-widget--must-read .article-widget__list {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid #ebe8e4;
}

.article-widget__item + .article-widget__item {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid #ebe8e4;
}

.article-widget__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  align-items: center;
  text-decoration: none;
  color: inherit;
}

.article-widget__row:hover .article-widget__item-title {
  color: #d44601;
}

.article-widget__thumb {
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #f0eeeb;
}

.article-widget__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.article-widget__body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.5rem;
  min-width: 0;
}

.article-widget__item-title {
  font-size: 0.95rem;
  font-weight: 500;
  line-height: 1.35;
  color: #111;
}

.article-widget__cats li + li {
  margin-top: 0.5rem;
}

.article-widget__cat-link {
  font-size: 0.9rem;
  color: #333;
  text-decoration: underline;
  text-underline-offset: 0.12em;
}

.article-widget__cat-link:hover {
  color: #d44601;
}

.article-related__title {
  font-family: "Nunito", sans-serif;
  font-size: 1.125rem;
  font-weight: 700;
  color: #111;
  margin: 0;
}

.article-related__card-title {
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  font-weight: 500;
  line-height: 1.35;
  margin: 0 0 0.5rem;
}

.article-related__card-title a {
  color: #111;
  text-decoration: none;
}

.article-related__card-title a:hover {
  color: #d44601;
}

.article-related__media {
  overflow: hidden;
  background: #f0eeeb;
}

.article-related__media img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  object-position: center;
  transition: transform 0.4s ease;
}

.article-related__media:hover img {
  transform: scale(1.04);
}

.article-related__read-more {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(0, 0, 0, 0.5);
  text-decoration: underline;
  text-underline-offset: 0.15em;
}

.article-related__read-more:hover {
  color: rgba(0, 0, 0, 0.75);
}

/* ——— Pagină Contact ——— */
.contact-page {
  --contact-accent: #58c1a8;
  --contact-accent-hover: #4aab93;
  background: #fff;
  color: #222;
}

@media (min-width: 992px) {
  .contact-page__row > .contact-page__col-info {
    flex: 0 0 35%;
    width: 35%;
    max-width: 35%;
  }

  .contact-page__row > .contact-page__col-form {
    flex: 0 0 65%;
    width: 65%;
    max-width: 65%;
  }
}

.contact-page__title {
  font-size: clamp(2.25rem, 5vw, 3.25rem);
  font-weight: 500;
  line-height: 1.15;
  margin: 0;
}

.contact-page__h2 {
  font-size: clamp(1.5rem, 2.8vw, 2.25rem);
  font-weight: 500;
  line-height: 1.2;
  margin: 0;
}

.contact-page__block + .contact-page__block {
  margin-top: 1.5rem;
}

.contact-page__field-label {
  font-size: 0.875rem;
  font-weight: 700;
  margin: 0 0 0.4rem;
  line-height: 1.3;
}

.contact-page__value {
  font-size: 1rem;
  line-height: 1.55;
}

.contact-page__value a {
  color: #111;
  text-decoration: none;
}

.contact-page__value a:hover {
  color: var(--contact-accent-hover);
  text-decoration: underline;
}

.contact-page__social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  color: var(--contact-accent);
  text-decoration: none;
  transition: color 0.2s ease, transform 0.2s ease;
}

.contact-page__social-link:hover {
  color: var(--contact-accent-hover);
  transform: translateY(-2px);
}

.contact-page__label {
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 0.35rem;
}

.contact-page__input,
.contact-page__textarea {
  border: 1px solid #d9d6d2;
  border-radius: 2px;
  font-size: 1rem;
  padding: 0.6rem 0.75rem;
}

.contact-page__input:focus,
.contact-page__textarea:focus {
  border-color: var(--contact-accent);
  box-shadow: 0 0 0 0.15rem rgba(88, 193, 168, 0.25);
}

.contact-page__textarea {
  min-height: 10rem;
  resize: vertical;
}

.contact-page__checkbox {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  margin: 0;
  padding-left: 1.5rem;
  cursor: pointer;
  font-size: clamp(0.8rem, 1.6vw, 0.875rem);
  line-height: 1.45;
  color: #111;
}

.contact-page__checkbox-input {
  position: absolute;
  left: 0;
  top: 0.2em;
  width: 1rem;
  height: 1rem;
  margin: 0;
  opacity: 0;
  cursor: pointer;
  z-index: 1;
}

.contact-page__checkbox-ui {
  position: absolute;
  left: 0;
  top: 0.2em;
  flex-shrink: 0;
  width: 1rem;
  height: 1rem;
  border: 1px solid #111;
  background: #fff;
  box-sizing: border-box;
  pointer-events: none;
  border-radius: 2px;
}

.contact-page__checkbox-input:checked + .contact-page__checkbox-ui {
  background: var(--contact-accent);
  border-color: var(--contact-accent);
  box-shadow: inset 0 0 0 2px #fff;
}

.contact-page__checkbox-input:focus-visible + .contact-page__checkbox-ui {
  outline: 2px solid var(--contact-accent);
  outline-offset: 2px;
}

.contact-page__checkbox-text a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 0.1em;
}

.contact-page__checkbox-text a:hover {
  color: #000;
}

.contact-page__submit {
  border: none;
  border-radius: 2px;
  background: var(--contact-accent) !important;
  color: #fff !important;
  padding: 0.9rem 1.25rem;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  transition: background 0.2s ease;
}

.contact-page__submit:hover {
  background: var(--contact-accent-hover) !important;
  color: #fff !important;
}

.contact-page__map {
  width: 100%;
  margin-top: 0;
  overflow: hidden;
  filter: grayscale(1);
  -webkit-filter: grayscale(1);
  line-height: 0;
}

.contact-page__map-frame {
  display: block;
  width: 100%;
  height: min(420px, 55vh);
  min-height: 280px;
  border: 0;
}

/* ——— FAQ (pattern frunze absolut, full width; panou crem peste, .container) ——— */
.section-faq {
  position: relative;
  margin: 0;
}

/* Frunze: nu ocupă loc în flux; ancorate sus în secțiune */
.section-faq__pattern.pattern-frunze {
  --pattern-frunze-bg: #bfe8df;
  --pattern-frunze-size: 640px auto;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 600px;
  max-height: 600px;
  z-index: 0;
  pointer-events: none;
  box-sizing: border-box;
}

.section-faq__pattern.pattern-frunze-small-light {
  --pattern-frunze-bg: #ffffff;
  height: 150px;
} 

/* Panoul FAQ = lățime .container; peste pattern */
.section-faq .container {
  position: relative;
  z-index: 1;
}

.section-faq__panel {
  margin-left: auto;
  margin-right: auto;
  margin-top:50px;
  background: #fcf0e4;
  padding-top: clamp(2.25rem, 5vw, 4rem);
  padding-bottom: clamp(2.5rem, 6vw, 4.5rem);
}

.section-faq__inner {
  max-width: 45rem;
  margin-left: auto;
  margin-right: auto;
  padding:0 25px;
}

.section-faq__title {
  font-family: "Melodrama-Medium", serif;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 500;
  text-align: center;
  color: #111 !important;
  margin: 0 0 clamp(2rem, 4vw, 3rem);
  line-height: 1.2;
}

.section-faq__list {
  text-align: left;
}

.section-faq__item {
  margin-bottom: clamp(1.75rem, 3vw, 2.5rem);
}

.section-faq__item:last-of-type {
  margin-bottom: 0;
}

.section-faq .section-faq__question {
  font-family: "Nunito", sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: #111;
  margin: 0 0 0.75rem;
  line-height: 1.35;
}

.section-faq .section-faq__answer {
  font-family: "Nunito", sans-serif;
  font-size: 1rem;
  font-weight: 400;
  color: #333;
  line-height: 1.65;
  margin: 0;
}

.section-faq__cta {
  text-align: center;
  margin-top: clamp(3rem, 6vw, 4.5rem);
  padding-top: clamp(2rem, 4vw, 3rem);
}

.section-faq .section-faq__cta-title {
  font-family: "Melodrama-Medium", serif;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 500;
  color: #111 !important;
  margin: 0 0 0.75rem;
  line-height: 1.25;
}

.section-faq__cta-text {
  font-family: "Nunito", sans-serif;
  font-size: 1rem;
  color: #444;
  margin: 0 auto 1.75rem;
  line-height: 1.5;
  max-width: 28rem;
}

.section-faq__cta .buton-standard {
  margin-top: 0.25rem;
}

/* ——— Instagram (Swiper: 5 desktop, 1.2 mobil, autoplay lent) ——— */
.section-instagram {
  padding: clamp(2.5rem, 6vw, 4rem) 0 0;
  background: #fff;
  color: #111;
  overflow: hidden;
}

.section-instagram__head {
  text-align: center;
  margin: 0 auto clamp(1.75rem, 4vw, 2.5rem);
  max-width: 42rem;
  padding: 0 clamp(0.75rem, 3vw, 1.25rem);
}

.section-instagram h2 {
  font-family: "Melodrama-Medium", serif;
  font-size: clamp(1.5rem, 4vw, 2.35rem);
  font-weight: 500;
  line-height: 1.25;
  color: #111 !important;
  margin: 0;
}

.section-instagram h2 a {
  color: #000;
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 0.12em;
  transition: color 0.2s ease;
}

.section-instagram h2 a:hover,
.section-instagram h2 a:focus-visible {
  color: #c73d00;
}

.section-instagram__slider {
  width: 100%;
  margin: 0;
}

.section-instagram-swiper {
  overflow: hidden;
  position: relative;
}

.section-instagram-swiper .swiper-wrapper {
  transition-timing-function: linear !important;
}

.section-instagram-swiper .swiper-slide {
  aspect-ratio: 1;
  overflow: hidden;
  box-sizing: border-box;
}

.section-instagram__tile {
  display: block;
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  container-type: inline-size;
  container-name: insta-tile;
}

.section-instagram__media {
  display: block;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.section-instagram__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1);
  transition:
    transform 0.38s ease,
    filter 0.38s ease;
  will-change: transform;
}

.section-instagram__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.35s ease;
}

.section-instagram__ig-icon {
  color: #fff;
  font-size: clamp(1.75rem, 5vw, 3.25rem);
  line-height: 1;
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.25));
}

@supports (width: 1cqi) {
  .section-instagram__ig-icon {
    font-size: clamp(1.75rem, 18cqi, 3.25rem);
  }
}

.section-instagram__tile:hover .section-instagram__media img,
.section-instagram__tile:focus-visible .section-instagram__media img {
  transform: scale(1.06);
  filter: sepia(0.32) saturate(0.72) brightness(0.96);
}

.section-instagram__tile:hover .section-instagram__overlay,
.section-instagram__tile:focus-visible .section-instagram__overlay {
  opacity: 1;
}

.section-instagram__tile:focus-visible {
  outline: 2px solid #52c0a7;
  outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
  .section-instagram__media img {
    transition: none;
  }

  .section-instagram__overlay {
    transition: none;
  }

  .section-instagram__tile:hover .section-instagram__media img,
  .section-instagram__tile:focus-visible .section-instagram__media img {
    transform: none;
    filter: none;
  }

  .section-instagram__tile:hover .section-instagram__overlay,
  .section-instagram__tile:focus-visible .section-instagram__overlay {
    opacity: 1;
  }
}

/* ——— Breadcrumb pagină produs ——— */
.product-breadcrumb {
  background: #fff;
  padding: 0.75rem 0;
}

.product-breadcrumb__viewport {
  min-width: 0;
}

@media (max-width: 991.98px) {
  .product-breadcrumb__viewport {
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    touch-action: pan-x;
    padding-bottom: 2px;
  }
}

.product-breadcrumb__list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
  font-family: "Nunito", sans-serif;
  /* 14px mobil — contrast #222 pe #fff respectă WCAG; line-height ușor mărit pentru lizibilitate */
  font-size: 0.775rem;
  font-weight: 600;
  line-height: 1.45;
  color: #222;
}

@media (min-width: 992px) {
  .product-breadcrumb__list {
    font-size: 0.8375rem; /* 15px */
    line-height: 1.4;
  }
}

@media (max-width: 991.98px) {
  .product-breadcrumb__list {
    flex-wrap: nowrap;
    width: max-content;
    max-width: none;
    min-width: min-content;
  }
}

.product-breadcrumb__item {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
}

.product-breadcrumb__item + .product-breadcrumb__item::before {
  content: ">";
  margin: 0 0.4rem;
  color: rgba(34, 34, 34, 0.45);
  font-weight: 400;
  pointer-events: none;
}

.product-breadcrumb__link,
.product-breadcrumb__list > .product-breadcrumb__item > a {
  color: #222;
  text-decoration: none;
  white-space: nowrap;
  /* zonă de atingere puțin mai înaltă pe touch, fără a schimba aspectul vizual mult */
  padding: 0.3rem 0;
  margin: -0.3rem 0;
  border-radius: 2px;
}

.product-breadcrumb__link:hover,
.product-breadcrumb__list > .product-breadcrumb__item > a:hover {
  opacity: 0.8;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.product-breadcrumb__link:focus-visible,
.product-breadcrumb__list > .product-breadcrumb__item > a:focus-visible {
  outline: 2px solid #111;
  outline-offset: 2px;
}

.product-breadcrumb__current {
  color: #222;
  white-space: nowrap;
  padding: 0.3rem 0;
}

/* ——— Galerie produs (thumbnails + principal + lightbox Swiper) ——— */
.product-page-section {
  overflow: visible;
}

.product-page-section .row {
  overflow: visible;
}

/* Sticky pe coloană (nu pe .product-gallery): funcționează corect cu grid/flex Bootstrap */
@media (min-width: 768px) {
  .product-page__gallery-col {
    position: -webkit-sticky;
    position: sticky;
    top: 30px;
    z-index: 4;
    align-self: flex-start;
  }
}

.product-gallery {
  width: 100%;
}

.product-gallery__layout {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.product-gallery__main {
  order: 1;
}

.product-gallery__thumbs {
  order: 2;
}

@media (min-width: 768px) {
  .product-gallery__layout {
    flex-direction: row;
    align-items: flex-start;
    gap: clamp(0.75rem, 2vw, 1.25rem);
  }

  .product-gallery__main,
  .product-gallery__thumbs {
    order: unset;
  }
}

.product-gallery__thumbs {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 0.5rem;
  margin: 0;
  padding: 0;
  list-style: none;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  touch-action: pan-x;
}

@media (min-width: 768px) {
  .product-gallery__thumbs {
    flex-direction: column;
    flex-wrap: nowrap;
    overflow-x: visible;
    overflow-y: auto;
    max-height: min(70vh, 520px);
    width: auto;
    flex-shrink: 0;
    gap: 0.5rem;
    padding-right: 2px;
    touch-action: auto;
  }
}

.product-gallery__thumb {
  flex: 0 0 auto;
  width: 4.25rem;
  height: 4.25rem;
  padding: 0;
  margin: 0;
  border: 2px solid transparent;
  border-radius: 2px;
  background: #f0f0f0;
  cursor: pointer;
  overflow: hidden;
  transition:
    border-color 0.2s ease,
    opacity 0.2s ease;
}

@media (min-width: 768px) {
  .product-gallery__thumb {
    width: 4.5rem;
    height: 4.5rem;
  }
}

.product-gallery__thumb:hover {
  opacity: 0.92;
}

.product-gallery__thumb.is-active {
  border-color: #111;
}

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

.product-gallery__main {
  flex: 1;
  min-width: 0;
}

.product-gallery__stage {
  position: relative;
  background: #f0f0f0;
  border-radius: 2px;
  cursor: zoom-in;
  outline: none;
}

.product-gallery__stage:focus-visible {
  box-shadow: 0 0 0 3px rgba(17, 17, 17, 0.25);
}

.product-gallery__stage-inner {
  overflow: hidden;
  aspect-ratio: 1;
  border-radius: inherit;
}

.product-gallery__hero-img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.35s ease;
  transform-origin: center center;
}

.product-gallery__stage:hover .product-gallery__hero-img {
  transform: scale(1.06);
}

@media (prefers-reduced-motion: reduce) {
  .product-gallery__hero-img {
    transition: none;
  }

  .product-gallery__stage:hover .product-gallery__hero-img {
    transform: none;
  }
}

.product-gallery__zoom-open {
  position: absolute;
  right: 0.65rem;
  bottom: 0.65rem;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  color: #111;
  font-size: 1rem;
  cursor: pointer;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.12);
  transition:
    background 0.2s ease,
    transform 0.2s ease;
}

.product-gallery__zoom-open:hover {
  background: #fff;
  transform: scale(1.05);
}

.product-gallery__zoom-open:focus-visible {
  outline: 2px solid #111;
  outline-offset: 2px;
}

/* Lightbox */
.product-gallery-lightbox .modal-dialog {
  margin: 0;
  max-width: none;
}

.product-gallery-lightbox__content {
  min-height: 100dvh;
  min-height: 100vh;
  background: #0a0a0a;
}

.product-gallery-lightbox__toolbar {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 10;
  padding: max(0.75rem, env(safe-area-inset-top, 0px)) max(0.75rem, env(safe-area-inset-right, 0px)) 0.5rem
    max(0.75rem, env(safe-area-inset-left, 0px));
}

.product-gallery-lightbox__swiper {
  width: 100%;
  height: 100dvh;
  height: 100vh;
  padding: 0;
}

.product-gallery-lightbox__slide {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: max(3rem, env(safe-area-inset-top, 0px)) max(1rem, env(safe-area-inset-right, 0px))
    max(1rem, env(safe-area-inset-bottom, 0px)) max(1rem, env(safe-area-inset-left, 0px));
  box-sizing: border-box;
}

.product-gallery-lightbox__slide img {
  max-width: 100%;
  max-height: calc(100dvh - 5rem);
  max-height: calc(100vh - 5rem);
  width: auto;
  height: auto;
  object-fit: contain;
}

.product-gallery-lightbox .swiper-button-prev,
.product-gallery-lightbox .swiper-button-next {
  color: #fff;
  width: 2.75rem;
  height: 2.75rem;
  margin-top: 0;
  top: 50%;
  transform: translateY(-50%);
}

.product-gallery-lightbox .swiper-button-prev::after,
.product-gallery-lightbox .swiper-button-next::after {
  font-size: 1.25rem;
  font-weight: 700;
}

.product-gallery-lightbox .swiper-button-disabled {
  opacity: 0.25;
}

/* ——— Detalii produs (pagină produs) ——— */
.product-detail {
  position: relative;
  font-family: "Nunito", sans-serif;
  color: #222;
  font-size: 1rem;
  line-height: 1.5;
}

.product-detail__title {
  font-family: "Melodrama-Medium", serif;
  font-size: clamp(1.75rem, 4.2vw, 2.75rem) !important;
  font-weight: 500;
  line-height: 1.12;
  color: #111;
  margin: 0 0 1rem;
}

@media (max-width: 767.98px) {
  .product-detail__title {
    padding-right: 3.25rem;
  }

  .product-detail__wish {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 2;
  }
}

@media (min-width: 768px) {
  .product-detail__title {
    padding-right: 0;
  }
}

.product-detail__header {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem 1rem;
  margin-bottom: 1rem;
}

.product-detail__rating-block {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem 0.65rem;
  flex: 1 1 auto;
  min-width: 0;
}

@media (min-width: 768px) {
  .product-detail__header {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
    align-items: center;
    gap: 0.75rem 1rem;
  }

  .product-detail__rating-block {
    justify-self: start;
    flex: none;
  }

  .product-detail__sold {
    justify-self: center;
  }

  .product-detail__wish {
    justify-self: end;
  }
}

.product-detail__stars {
  display: inline-flex;
  gap: 0.12rem;
  color: #e85d04;
  font-size: 0.95rem;
}

.product-detail__reviews-link {
  font-size: 0.9rem;
  color: #6c757d;
  text-decoration: none;
}

.product-detail__reviews-link:hover {
  color: #111;
  text-decoration: underline;
}

.product-detail__sold {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin: 0;
  font-size: 0.9rem;
  color: #e85d04;
  font-weight: 600;
  width: 100%;
}

@media (min-width: 768px) {
  .product-detail__sold {
    width: auto;
  }
}

.product-detail__sold-icon {
  flex-shrink: 0;
}

.product-detail__wishlist-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  padding: 0;
  margin: 0;
  border: 1px solid #e0e0e0;
  border-radius: 50%;
  background: #fff;
  cursor: pointer;
  transition:
    border-color 0.2s ease,
    background 0.2s ease;
}

.product-detail__wishlist-btn:hover {
  border-color: #bbb;
  background: #fafafa;
}

.product-detail__wishlist-icon {
  display: block;
  width: 20px;
  height: 19px;
  object-fit: contain;
  filter: brightness(0);
  opacity: 0.75;
}

.product-detail__price-row {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.5rem 0.75rem;
  margin-bottom: 1rem;
}

.product-detail__price-current {
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 700;
  color: #111;
  letter-spacing: -0.02em;
}

.product-detail__price-old {
  font-size: 1.1rem;
  color: #9aa0a6;
  text-decoration: line-through;
}

.product-detail__badge {
  display: inline-block;
  padding: 0.2rem 0.45rem;
  font-size: 0.8rem;
  font-weight: 700;
  color: #fff;
  background: #e85d04;
  border-radius: 2px;
  position:relative;
  top:-5px;
}

.product-detail__desc {
  color: #555;
  margin-bottom: 1.25rem;
  font-size: 0.98rem;
  line-height: 1.55;
}

.product-detail__specs {
  list-style: none;
  margin: 0 0 1.25rem;
  padding: 0;
  display: grid;
  gap: 0.85rem 1.25rem;
}

@media (min-width: 768px) {
  .product-detail__specs {
    grid-template-columns: 1fr 1fr;
  }
}

.product-detail__spec {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.88rem;
  color: #333;
  line-height: 1.4;
}

.product-detail__spec-icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  object-fit: contain;
  margin-top: 0.1rem;
}

.product-detail__section {
  padding-top: 1.15rem;
  margin-top: 1.15rem;
  border-top: 1px solid #e8e8e8;
}

.product-detail__options-label {
  margin: 0 0 0.75rem;
  font-size: 0.95rem;
  color: #333;
}

.product-detail__swatches {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.product-detail__swatch {
  width: 2.25rem;
  height: 2.25rem;
  padding: 0;
  border: 2px solid transparent;
  border-radius: 50%;
  background: var(--swatch, #ccc);
  cursor: pointer;
  box-sizing: border-box;
  transition: border-color 0.2s ease;
}

.product-detail__swatch:hover {
  border-color: #bbb;
}

.product-detail__swatch.is-active {
  border-color: #111;
}

.product-detail__bonus-title {
  margin: 0 0 0.75rem;
  font-size: 0.95rem;
  font-weight: 600;
  color: #222;
}

.product-detail__bonus-row {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

@media (min-width: 768px) {
  .product-detail__bonus-row {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    gap: 1.25rem 2rem;
  }
}

.product-detail__bonus-item {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.92rem;
  color: #333;
}

.product-detail__bonus-icon {
  flex-shrink: 0;
  object-fit: contain;
}

.product-detail__bonus-help {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.25rem;
  height: 1.25rem;
  margin-left: 0.15rem;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: #e8e8e8;
  color: #666;
  font-size: 0.65rem;
  font-weight: 700;
  cursor: help;
  line-height: 1;
}

.product-detail__cta-wrap {
  margin-top: 1.25rem;
}

.product-detail__cta {
  display: block;
  width: 100%;
  padding: 1rem 1.25rem;
  border: none;
  border-radius: 2px;
  background: #52c0a7;
  color: #fff !important;
  font-family: "Nunito", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-align: center;
  cursor: pointer;
  transition: background 0.2s ease;
}

.product-detail__cta:hover {
  background: #45a890;
  color: #fff !important;
}

.product-detail__cta:focus-visible {
  outline: 2px solid #111;
  outline-offset: 3px;
}

.product-detail__links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-start;
  gap: 0.5rem clamp(1rem, 2.5vw, 1.75rem);
  margin-top: 1.25rem;
  padding-top: 1.15rem;
  border-top: 1px solid #e8e8e8;
}

.product-detail__link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: #222;
  text-decoration: none;
}

.product-detail__link:hover {
  color: #1a4545;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.product-detail__link-icon {
  flex-shrink: 0;
  object-fit: contain;
  opacity: 0.85;
}

.product-detail__links-sep {
  display: block;
  width: 1px;
  height: 1em;
  background: #d0d0d0;
  flex-shrink: 0;
  margin: 0 0.15rem;
}

@media (max-width: 767.98px) {
  .product-detail__links {
    display: grid;
    grid-template-columns: 1fr 1fr;
    justify-items: start;
    text-align: left;
    gap: 0.75rem 0.5rem;
  }

  .product-detail__links-sep {
    display: none;
  }

  .product-detail__link {
    font-size: 0.8rem;
  }

  .product-detail__link:nth-of-type(3) {
    grid-column: 1 / -1;
    justify-self: start;
  }
}

.product-detail__trust {
  list-style: none;
  margin: 1.15rem 0 0;
  padding: 1.15rem 0 0;
  border-top: 1px solid #e8e8e8;
}

.product-detail__trust-item {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  margin-bottom: 0.65rem;
  font-size: 0.9rem;
  color: #444;
  line-height: 1.45;
}

.product-detail__trust-item:last-child {
  margin-bottom: 0;
}

.product-detail__trust-icon {
  flex-shrink: 0;
  margin-top: 0.1rem;
  object-fit: contain;
}

.product-detail__footer-meta {
  margin-top: 1.25rem;
  padding-top: 1.15rem;
  border-top: 1px solid #e8e8e8;
  font-size: 1rem;
  color: #111;
}

.product-detail__footer-meta p {
  margin-bottom: 0.45rem;
  font-size: 0.9rem;
  color: #111;
}

.product-detail__footer-meta p:last-child {
  margin-bottom: 0;
}

.product-detail__footer-line {
  margin-bottom: 0.45rem;
  font-size: 0.9rem;
  color: #111;
}

.product-detail__footer-line:last-child {
  margin-bottom: 0;
}

.product-detail__footer-line .stock {
  display: inline;
  margin: 0 0 0 0.25rem;
  padding: 0;
}

.product-detail__footer-meta a {
  color: inherit;
  text-decoration: none;
}

.product-detail__footer-meta a:hover {
  text-decoration: underline;
}

/* ——— WooCommerce: notificări (succes / eroare / info) — container + culori Teratai ——— */
/* .logicware-wc-notices-wrap = doar .container Bootstrap (max-width la breakpoints), fără fluid */
.logicware-wc-notices-inner {
  width: 100%;
  box-sizing: border-box;
}

.logicware-wc-notices-inner .woocommerce-notices-wrapper,
.woocommerce-notices-wrapper {
  margin: 0;
  padding: 0;
  list-style: none;
  width: 100%;
}

.logicware-wc-notices-inner .woocommerce-notices-wrapper > *:last-child,
.woocommerce-notices-wrapper > *:last-child {
  margin-bottom: 0 !important;
}

.logicware-wc-notices-inner .woocommerce-notices-wrapper > * + *,
.woocommerce-notices-wrapper > * + * {
  margin-top: 0.65rem;
}

.logicware-wc-notices-inner .woocommerce-message,
.logicware-wc-notices-inner .woocommerce-error,
.logicware-wc-notices-inner .woocommerce-info,
.logicware-wc-notices-inner ul.woocommerce-message,
.logicware-wc-notices-inner ul.woocommerce-error,
.logicware-wc-notices-inner ul.woocommerce-info,
.woocommerce-notices-wrapper .woocommerce-message,
.woocommerce-notices-wrapper .woocommerce-error,
.woocommerce-notices-wrapper .woocommerce-info,
.woocommerce-notices-wrapper ul.woocommerce-message,
.woocommerce-notices-wrapper ul.woocommerce-error,
.woocommerce-notices-wrapper ul.woocommerce-info {
  position: relative;
  margin: 0 0 0.75rem;
  padding: 0.95rem 2.35rem 0.95rem 1.15rem;
  border-radius: 12px;
  font-family: "Nunito", sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1.45;
  box-sizing: border-box;
  border: 1px solid transparent;
  box-shadow: 0 1px 2px rgba(17, 17, 17, 0.06);
}

.logicware-wc-notices-inner ul.woocommerce-message,
.logicware-wc-notices-inner ul.woocommerce-error,
.logicware-wc-notices-inner ul.woocommerce-info,
.woocommerce-notices-wrapper ul.woocommerce-message,
.woocommerce-notices-wrapper ul.woocommerce-error,
.woocommerce-notices-wrapper ul.woocommerce-info {
  list-style: none;
}

.logicware-wc-notices-inner ul.woocommerce-message li,
.logicware-wc-notices-inner ul.woocommerce-error li,
.logicware-wc-notices-inner ul.woocommerce-info li,
.woocommerce-notices-wrapper ul.woocommerce-message li,
.woocommerce-notices-wrapper ul.woocommerce-error li,
.woocommerce-notices-wrapper ul.woocommerce-info li {
  margin: 0;
}

.logicware-wc-notices-inner ul.woocommerce-message li + li,
.logicware-wc-notices-inner ul.woocommerce-error li + li,
.woocommerce-notices-wrapper ul.woocommerce-message li + li,
.woocommerce-notices-wrapper ul.woocommerce-error li + li {
  margin-top: 0.35rem;
}

/* Succes (adăugare în coș, confirmări) */
.logicware-wc-notices-inner .woocommerce-message,
.logicware-wc-notices-inner ul.woocommerce-message,
.woocommerce-notices-wrapper .woocommerce-message,
.woocommerce-notices-wrapper ul.woocommerce-message {
  background: rgba(82, 192, 167, 0.14);
  border-color: rgba(82, 192, 167, 0.45);
  color: #145240;
}

.logicware-wc-notices-inner .woocommerce-message a,
.woocommerce-notices-wrapper .woocommerce-message a {
  color: #0d8f6e;
  font-weight: 700;
  text-decoration: underline;
}

.logicware-wc-notices-inner .woocommerce-message a:hover,
.woocommerce-notices-wrapper .woocommerce-message a:hover {
  color: #0a6b52;
}

/* Eroare / validare */
.logicware-wc-notices-inner .woocommerce-error,
.logicware-wc-notices-inner ul.woocommerce-error,
.woocommerce-notices-wrapper .woocommerce-error,
.woocommerce-notices-wrapper ul.woocommerce-error {
  background: rgba(232, 93, 4, 0.1);
  border-color: rgba(232, 93, 4, 0.35);
  color: #5c2503;
}

.logicware-wc-notices-inner .woocommerce-error a,
.woocommerce-notices-wrapper .woocommerce-error a {
  color: #c2410c;
  font-weight: 700;
}

/* Informare neutră */
.logicware-wc-notices-inner .woocommerce-info,
.logicware-wc-notices-inner ul.woocommerce-info,
.woocommerce-notices-wrapper .woocommerce-info,
.woocommerce-notices-wrapper ul.woocommerce-info {
  background: rgba(17, 17, 17, 0.05);
  border-color: rgba(17, 17, 17, 0.12);
  color: #333;
}

@media (prefers-reduced-motion: reduce) {
  .logicware-wc-notices-inner .woocommerce-message,
  .logicware-wc-notices-inner .woocommerce-error,
  .logicware-wc-notices-inner .woocommerce-info,
  .woocommerce-notices-wrapper .woocommerce-message,
  .woocommerce-notices-wrapper .woocommerce-error,
  .woocommerce-notices-wrapper .woocommerce-info {
    box-shadow: none;
  }
}

button.logicware-wc-notice-dismiss {
  position: absolute;
  top: 0.35rem;
  right: 0.35rem;
  z-index: 5;
  width: 1.75rem;
  height: 1.75rem;
  padding: 0;
  margin: 0;
  border: none;
  background: rgba(255, 255, 255, 0.65);
  color: #111;
  opacity: 1;
  font-size: 1.35rem;
  line-height: 1;
  font-weight: 600;
  cursor: pointer;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: inherit;
  -webkit-tap-highlight-color: transparent;
  box-shadow: 0 1px 2px rgba(17, 17, 17, 0.12);
}

button.logicware-wc-notice-dismiss:hover {
  background: rgba(255, 255, 255, 0.95);
  color: #000;
}

button.logicware-wc-notice-dismiss:focus,
button.logicware-wc-notice-dismiss:focus-visible,
button.logicware-wc-notice-dismiss:active {
  outline: none !important;
  box-shadow: none !important;
  border: none;
}

/* ——— WooCommerce pe pagina produs: același aspect ca mockup-ul (produs.php) ——— */
.logicware-single-product .product-detail__rating-block::after {
  content: "";
  display: table;
  clear: both;
}

.logicware-single-product .product-detail__rating-block .woocommerce-product-rating {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem 0.65rem;
  margin: 0;
}

.logicware-single-product .product-detail__rating-block .star-rating {
  float: none;
  margin: 0;
  position: relative;
  top: 0;
  width: 5.5em;
  height: 1em;
  line-height: 1;
  font-size: 0.95rem;
  color: #e85d04;
  overflow: hidden;
}

.logicware-single-product .product-detail__rating-block .star-rating::before {
  color: #e0e0e0;
}

.logicware-single-product .product-detail__rating-block .star-rating span {
  color: #e85d04;
}

/* wc_price() în .product-detail__price-current / __price-old — același aspect ca textul din produs.html */
.logicware-single-product .product-detail__price-current .woocommerce-Price-amount,
.logicware-single-product .product-detail__price-current .woocommerce-Price-amount bdi {
  font-size: inherit;
  font-weight: inherit;
  color: inherit;
  letter-spacing: inherit;
}

.logicware-single-product .product-detail__price-old .woocommerce-Price-amount,
.logicware-single-product .product-detail__price-old .woocommerce-Price-amount bdi {
  font-size: inherit;
  font-weight: inherit;
  color: inherit;
  letter-spacing: inherit;
  text-decoration: inherit;
}

.logicware-single-product .product-detail__price-row p.price,
.logicware-single-product .product-detail__price-row span.price {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.5rem 0.75rem;
  margin: 0;
  padding: 0;
  font-size: inherit;
  font-weight: inherit;
  color: inherit;
}

.logicware-single-product .product-detail__price-row .price del,
.logicware-single-product .product-detail__price-row .price del .amount,
.logicware-single-product .product-detail__price-row .price del bdi {
  font-size: 1.1rem;
  font-weight: 400;
  color: #9aa0a6;
  text-decoration: line-through;
  opacity: 1;
}

.logicware-single-product .product-detail__price-row .price ins,
.logicware-single-product .product-detail__price-row .price ins .amount,
.logicware-single-product .product-detail__price-row .price ins bdi {
  text-decoration: none;
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 700;
  color: #111;
  letter-spacing: -0.02em;
}

.logicware-single-product .product-detail__price-row .price > .amount,
.logicware-single-product .product-detail__price-row .price > span.woocommerce-Price-amount.amount {
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 700;
  color: #111;
  letter-spacing: -0.02em;
}

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

.logicware-single-product .product-detail__price-row .price .woocommerce-price-suffix {
  font-size: 0.85rem;
  font-weight: 400;
  color: #6c757d;
  width: 100%;
  flex-basis: 100%;
}

.logicware-single-product .product-detail__cta-wrap form.cart {
  margin: 0;
  padding: 0;
  border: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.logicware-single-product .product-detail__cta-wrap form.cart::before,
.logicware-single-product .product-detail__cta-wrap form.cart::after {
  display: none;
}

.logicware-single-product .product-detail__cta-wrap .quantity {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0;
}

.logicware-single-product .logicware-add-to-cart-wrap form.cart:not(.grouped_form) > .quantity,
.logicware-single-product .logicware-add-to-cart-wrap .woocommerce-variation-add-to-cart .quantity {
  display: none !important;
}

.logicware-single-product .product-detail__cta-wrap .quantity .qty {
  width: 4.5rem;
  min-height: 2.75rem;
  padding: 0.35rem 0.5rem;
  border: 1px solid #e0e0e0;
  border-radius: 2px;
  font-family: "Nunito", sans-serif;
  font-size: 1rem;
  text-align: center;
  color: #222;
}

.logicware-single-product .product-detail__cta-wrap .single_add_to_cart_button,
.logicware-single-product .product-detail__cta-wrap button.single_add_to_cart_button.button.alt,
.logicware-single-product .product-detail__cta-wrap .button.alt:not(.checkout-button) {
  display: block;
  width: 100%;
  padding: 1rem 1.25rem;
  border: none;
  border-radius: 2px;
  background: #52c0a7;
  color: #fff !important;
  font-family: "Nunito", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-align: center;
  cursor: pointer;
  line-height: 1.25;
  transition: background 0.2s ease;
}

.logicware-single-product .product-detail__cta-wrap .single_add_to_cart_button:hover,
.logicware-single-product .product-detail__cta-wrap button.single_add_to_cart_button.button.alt:hover,
.logicware-single-product .product-detail__cta-wrap .button.alt:not(.checkout-button):hover {
  background: #45a890;
  color: #fff !important;
}

.logicware-single-product .product-detail__cta-wrap .single_add_to_cart_button:focus-visible,
.logicware-single-product .product-detail__cta-wrap button.single_add_to_cart_button.button.alt:focus-visible {
  outline: 2px solid #111;
  outline-offset: 3px;
}

.logicware-single-product .product-detail__cta-wrap .single_add_to_cart_button.disabled,
.logicware-single-product .product-detail__cta-wrap .single_add_to_cart_button:disabled {
  opacity: 0.55;
  cursor: not-allowed;
}

.logicware-single-product .logicware-add-to-cart-wrap table.variations {
  display: none !important;
}

.logicware-single-product .product-detail__cta-wrap table.variations {
  width: 100%;
  margin: 0 0 0.5rem;
  border: none;
}

.logicware-single-product .product-detail__cta-wrap table.variations th,
.logicware-single-product .product-detail__cta-wrap table.variations td {
  display: block;
  width: 100%;
  padding: 0.35rem 0;
  border: none;
  text-align: left;
  vertical-align: middle;
}

.logicware-single-product .product-detail__cta-wrap table.variations label {
  font-family: "Nunito", sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: #333;
}

.logicware-single-product .product-detail__cta-wrap table.variations select {
  width: 100%;
  max-width: 100%;
  min-height: 2.75rem;
  padding: 0.4rem 0.65rem;
  border: 1px solid #e0e0e0;
  border-radius: 2px;
  font-family: "Nunito", sans-serif;
  font-size: 0.95rem;
  color: #222;
  background-color: #fff;
}

.logicware-single-product .product-detail__cta-wrap .woocommerce-variation-add-to-cart {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.logicware-single-product .logicware-add-to-cart-wrap .woocommerce-variation-price {
  display: none !important;
}

.logicware-single-product .product-detail__cta-wrap .woocommerce-variation-price {
  margin: 0;
}

.logicware-single-product .product-detail__cta-wrap .woocommerce-variation-price .price {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.5rem 0.75rem;
}

.logicware-single-product .logicware-add-to-cart-wrap .reset_variations {
  display: none !important;
}

.logicware-single-product .product-detail__cta-wrap .reset_variations {
  font-size: 0.85rem;
  font-weight: 600;
  color: #222;
  text-decoration: underline;
  text-underline-offset: 2px;
  margin-top: 0.25rem;
}

.logicware-single-product .product-detail__cta-wrap .group_table {
  width: 100%;
  margin-bottom: 0.5rem;
  font-size: 0.92rem;
}

.logicware-single-product .product-detail__cta-wrap .group_table td,
.logicware-single-product .product-detail__cta-wrap .group_table th {
  padding: 0.5rem 0.35rem;
  vertical-align: middle;
}

.logicware-single-product .product-detail__footer-meta .stock {
  display: inline;
  margin: 0;
  font-size: inherit;
  font-weight: 600;
}

.logicware-single-product .product-detail__footer-meta .stock.in-stock {
  color: #1a7f5a;
}

.logicware-single-product .product-detail__footer-meta .stock.out-of-stock {
  color: #c0392b;
}

/* Recenzii WooCommerce în secțiunea .section-reviews */
.logicware-single-product .section-reviews #reviews {
  max-width: 100%;
}

.logicware-single-product .section-reviews #reviews .woocommerce-Reviews-title {
  font-family: "Melodrama-Medium", serif;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 500;
  color: #111;
  margin: 0 0 1rem;
}

.logicware-single-product .section-reviews #reviews .comment-reply-title {
  font-family: "Nunito", sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: #222;
}

.logicware-single-product .section-reviews #reviews .comment-form-rating .stars a {
  color: #e85d04;
}

.logicware-single-product .section-reviews #reviews .comment-form input[type="text"],
.logicware-single-product .section-reviews #reviews .comment-form input[type="email"],
.logicware-single-product .section-reviews #reviews .comment-form textarea {
  width: 100%;
  max-width: 100%;
  border: 1px solid #e0e0e0;
  border-radius: 2px;
  padding: 0.5rem 0.65rem;
  font-family: "Nunito", sans-serif;
  font-size: 0.95rem;
}

.logicware-single-product .section-reviews #reviews .comment-form .form-submit input[type="submit"] {
  display: inline-block;
  padding: 0.65rem 1.25rem;
  border: none;
  border-radius: 2px;
  background: #52c0a7;
  color: #fff !important;
  font-family: "Nunito", sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  cursor: pointer;
}

.logicware-single-product .section-reviews #reviews .comment-form .form-submit input[type="submit"]:hover {
  background: #45a890;
}

.logicware-single-product .section-reviews #reviews .commentlist {
  list-style: none;
  margin: 1.5rem 0 0;
  padding: 0;
}

.logicware-single-product .section-reviews #reviews .comment_container {
  padding: 1rem 0;
  border-bottom: 1px solid #e8e8e8;
}

.logicware-single-product .section-reviews #reviews .star-rating {
  color: #e85d04;
}

/* ——— Acordeon info produs (pagină produs) ——— */
.product-info-accordion {
  margin-top: 1.5rem;
}

.product-info-accordion .accordion-item {
  border: none;
  border-bottom: 1px solid #e8e8e8;
  background: transparent;
}

.product-info-accordion .accordion-item:first-of-type {
  border-top: 1px solid #e8e8e8;
}

.product-info-accordion .accordion-button {
  padding: 0.9rem 0;
  font-family: "Nunito", sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: #222;
  background: transparent;
  box-shadow: none;
}

.product-info-accordion .accordion-button:not(.collapsed) {
  color: #222;
  background: transparent;
  box-shadow: none;
}

.product-info-accordion .accordion-button::after {
  content: "−";
  flex-shrink: 0;
  width: auto;
  height: auto;
  margin-left: auto;
  background-image: none;
  transform: none;
  font-size: 1.2rem;
  font-weight: 400;
  line-height: 1;
  color: #222;
}

.product-info-accordion .accordion-button.collapsed::after {
  content: "+";
}

.product-info-accordion .accordion-button:focus {
  box-shadow: none;
  border-color: transparent;
}

.product-info-accordion .accordion-button:focus-visible {
  outline: 2px solid #111;
  outline-offset: 2px;
}

.product-info-accordion .accordion-body {
  padding: 0 0 1rem;
  color: #555;
  line-height: 1.55;
}

.product-info-accordion .accordion-body p {
  font-size: 16px;
}

.product-info-accordion .accordion-body p:last-child {
  margin-bottom: 0;
}

/* ——— Recenzii pagină produs ——— */
.section-reviews {
  --reviews-teal: #068979;
  padding: clamp(2.5rem, 6vw, 4rem) 0;
  background: #fff;
  color: #222;
}

.section-reviews__summary {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 1.5rem clamp(1rem, 3vw, 2rem);
  margin-bottom: 1.75rem;
}

/* Notă + distribuție: o singură coloană (stivuite), lățime 50% din container */
.section-reviews__summary-stats {
  display: flex;
  flex-direction: row;
}

.section-reviews__summary-col--cta {
  flex: 1 1 0;
  min-width: min(100%, 17rem);
}

.section-reviews__summary-col--distribution {
  flex-grow:1;
  margin-left:50px;
}

@media (max-width: 991.98px) {
  .section-reviews__summary {
    flex-direction: column;
  }

  .section-reviews__summary-col--cta {
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }
}

.section-reviews__title {
  font-family: "Melodrama-Medium", serif;
  font-size: clamp(1.5rem, 3vw, 2rem) !important;
  font-weight: 500;
  color: #111;
  margin: 0 0 0.75rem;
}

.section-reviews__score {
  font-family: "Nunito", sans-serif;
  font-size: clamp(2.75rem, 6vw, 3.75rem);
  font-weight: 800;
  line-height: 1;
  color: #111;
  margin: 0 0 0.5rem;
}

.section-reviews__stars-large {
  display: flex;
  gap: 0.2rem;
  font-size: 1.15rem;
  color: var(--reviews-teal);
  margin-bottom: 0.35rem;
}

.section-reviews__count {
  margin: 0;
  font-size: 0.9rem;
  color: #6c757d;
}

.section-reviews__dist-row {
  display: grid;
  grid-template-columns: 1.25rem 1rem minmax(0, 1fr) 2rem;
  align-items: center;
  gap: 0.4rem 0.5rem;
  margin-bottom: 0.45rem;
  font-size: 0.88rem;
}

.section-reviews__dist-row:last-child {
  margin-bottom: 0;
}

.section-reviews__dist-num {
  font-weight: 600;
  color: #333;
  text-align: right;
}

.section-reviews__dist-star {
  font-size: 0.65rem;
  color: var(--reviews-teal);
}

.section-reviews__dist-track {
  height: 8px;
  background: #e8e8e8;
  border-radius: 999px;
  overflow: hidden;
  min-width: 0;
}

.section-reviews__dist-fill {
  display: block;
  height: 100%;
  background: var(--reviews-teal);
  border-radius: inherit;
  transition: width 0.3s ease;
}

.section-reviews__dist-count {
  font-size: 0.85rem;
  color: #555;
  text-align: right;
}

.section-reviews__btn-review {
  display: block;
  width: 100%;
  padding: 0.9rem 1rem;
  border: 2px solid #111;
  border-radius: 2px;
  background: #fff;
  color: #111;
  font-family: "Nunito", sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  cursor: pointer;
  transition:
    background 0.2s ease,
    color 0.2s ease;
}

.section-reviews__btn-review:hover {
  background: #111;
  color: #fff;
}

.section-reviews__btn-review:focus-visible {
  outline: 2px solid var(--reviews-teal);
  outline-offset: 3px;
}

a.section-reviews__btn-review {
  text-decoration: none;
  text-align: center;
}

.section-reviews__rewards {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem 0.75rem;
  margin-top: 1rem;
  font-size: 0.85rem;
  color: #333;
}

.section-reviews__reward {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.section-reviews__petal-icon {
  width: 20px;
  height: 20px;
  object-fit: contain;
  flex-shrink: 0;
}

.section-reviews__reward-sep {
  width: 1px;
  height: 1em;
  background: #d0d0d0;
  flex-shrink: 0;
}

.section-reviews__reward-help {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.35rem;
  height: 1.35rem;
  margin: 0;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: #e8e8e8;
  color: #666;
  font-size: 0.7rem;
  font-weight: 700;
  cursor: help;
  line-height: 1;
}

.section-reviews__toolbar {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1.75rem;
}

@media (min-width: 576px) {
  .section-reviews__toolbar {
    flex-direction: row;
    align-items: center;
    gap: 0.75rem 1rem;
  }
}

.section-reviews__sort-label {
  margin: 0;
  font-size: 0.95rem;
  font-weight: 600;
  color: #333;
  flex-shrink: 0;
}

.section-reviews__sort {
  max-width: 20rem;
  border-color: #ccc;
  font-size: 0.9rem;
}

.section-reviews__list {
  padding: 0;
  margin: 0;
}

.section-reviews__item {
  padding: 1.25rem 0;
}

.section-reviews__item + .section-reviews__item {
  border-top: 1px solid #e8e8e8;
}

.section-reviews__card-head {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.section-reviews__avatar {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  border-radius: 50%;
  background: #e8e8e8;
  overflow: hidden;
}

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

.section-reviews__card-meta {
  flex: 1;
  min-width: 0;
}

.section-reviews__card-topline {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.35rem 0.75rem;
  margin-bottom: 0.25rem;
}

.section-reviews__author {
  font-weight: 700;
  font-size: 1rem;
  color: #111;
}

.section-reviews__verified {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--reviews-teal);
}

.section-reviews__verified .fa-circle-check {
  color: var(--reviews-teal);
}

.section-reviews__card-sub {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem 0.75rem;
}

.section-reviews__time {
  font-size: 0.85rem;
  color: #6c757d;
}

.section-reviews__stars-small {
  display: inline-flex;
  gap: 0.1rem;
  font-size: 0.72rem;
  color: var(--reviews-teal);
}

.section-reviews__text {
  margin: 0 0 0.75rem;
  font-size: 0.95rem;
  line-height: 1.55;
  color: #444;
}

.section-reviews__photos {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 0.25rem;
}

.section-reviews__photo-link {
  display: inline-flex;
  line-height: 0;
  border-radius: 4px;
  overflow: hidden;
  cursor: zoom-in;
  vertical-align: top;
  transition: opacity 0.2s ease, box-shadow 0.2s ease;
}

.section-reviews__photo-link:hover {
  opacity: 0.92;
  box-shadow: 0 2px 10px rgba(17, 17, 17, 0.14);
}

.section-reviews__photo-link:focus-visible {
  outline: 2px solid var(--reviews-teal, #52c0a7);
  outline-offset: 2px;
}

.section-reviews__photo-thumb {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 4px;
  display: block;
}

.section-reviews__reply {
  margin-top: 1.15rem;
  padding-left: 1rem;
  border-left: 3px solid #e8e8e8;
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  margin-left:3rem;
}

.section-reviews__reply-avatar-wrap {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  border-radius: 50%;
  background: #f3f3f3;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.section-reviews__reply-avatar {
  width: 26px;
  height: 26px;
  object-fit: contain;
}

.section-reviews__reply-body {
  flex: 1;
  min-width: 0;
}

.section-reviews__reply-head {
  margin: 0 0 0.35rem;
  font-size: 0.88rem;
  color: #555;
}

.section-reviews__reply-head strong {
  color: #111;
}

.section-reviews__reply-sep {
  margin: 0 0.25rem;
  color: #aaa;
}

.section-reviews__reply-text {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.5;
  color: #444;
}

/* Formular recenzie inline (sub listă, WooCommerce comment form) */
#logicware-review-form.logicware-review-inline {
  scroll-margin-top: 5.5rem;
  border-top: 1px solid #e8e8e8;
}

.logicware-review-inline__title {
  margin-bottom: 1rem;
}

.logicware-review-inline__inner {
  max-width: 42rem;
}

.logicware-review-inline__inner #commentform {
  margin: 0;
}

.logicware-review-inline__inner .comment-form-rating {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.logicware-review-modal__stars-picker {
  margin-bottom: 1.25rem;
}

.logicware-review-modal__stars-label {
  display: block;
  font-family: "Nunito", sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  color: #111;
  margin-bottom: 0.5rem;
}

.logicware-review-modal__stars-row {
  display: inline-flex;
  gap: 0.35rem;
  align-items: center;
}

.logicware-review-modal__star-btn {
  padding: 0.25rem 0.35rem;
  border: none;
  background: transparent;
  cursor: pointer;
  color: var(--reviews-teal, #52c0a7);
  font-size: 1.35rem;
  line-height: 1;
  border-radius: 4px;
  transition: transform 0.15s ease, color 0.15s ease;
}

.logicware-review-modal__star-btn:hover,
.logicware-review-modal__star-btn:focus-visible {
  transform: scale(1.08);
  outline: none;
}

.logicware-review-modal__star-btn:focus-visible {
  box-shadow: 0 0 0 2px #111;
}

.logicware-review-modal__star-btn.is-active {
  color: var(--reviews-teal, #52c0a7);
}

.logicware-review-modal__photos {
  margin-top: 1rem;
  margin-bottom: 0;
}

.logicware-review-modal__photos-label {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 0.35rem;
}

.logicware-review-modal__file {
  font-size: 0.88rem;
}

.logicware-review-modal__photos-hint {
  display: block;
  margin-top: 0.35rem;
  font-size: 0.8rem;
  color: #6c757d;
}

.logicware-review-inline__inner .form-submit {
  margin-top: 1.25rem;
  margin-bottom: 0;
}

.logicware-review-inline__inner #submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 12rem;
  padding: 0.85rem 1.25rem;
  border-radius: 2px;
  font-family: "Nunito", sans-serif;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 0.78rem;
  background: var(--reviews-teal, #52c0a7);
  border: none;
  color: #fff;
  cursor: pointer;
  transition: background 0.2s ease;
}

.logicware-review-inline__inner #submit:hover {
  background: #45a890;
  color: #fff;
}

.logicware-review-inline__inner .logged-in-as,
.logicware-review-inline__inner .comment-notes {
  font-size: 0.88rem;
  color: #555;
  margin-bottom: 0.75rem;
}

.logicware-review-inline__inner .comment-form-comment label {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  margin-bottom: 0.35rem;
  color: #333;
}

.logicware-review-inline__inner #comment {
  width: 100%;
  min-height: 8rem;
  padding: 0.65rem 0.75rem;
  border: 1px solid #e0e0e0;
  border-radius: 2px;
  font-family: "Nunito", sans-serif;
  font-size: 0.95rem;
  resize: vertical;
}

.logicware-review-inline__inner .comment-form-author input,
.logicware-review-inline__inner .comment-form-email input {
  width: 100%;
  padding: 0.5rem 0.65rem;
  border: 1px solid #e0e0e0;
  border-radius: 2px;
  font-size: 0.95rem;
}

/* ——— Newsletter ——— */
.section-newsletter {
  background: #bbe5d9;
  color: #111;
  padding: clamp(3rem, 8vw, 5.5rem) 0;
}

.section-newsletter__inner {
  max-width: 40rem;
  margin: 0 auto;
  text-align: center;
}

.section-newsletter__title {
  font-family: "Melodrama-Medium", serif;
  font-size: clamp(1.65rem, 4.5vw, 2.65rem);
  font-weight: 500;
  line-height: 1.2;
  color: #111 !important;
  margin: 0 auto 1.25rem;
  text-align: center;
}

.section-newsletter__lead {
  font-family: "Nunito", sans-serif;
  font-size: clamp(0.95rem, 2.2vw, 1.05rem);
  font-weight: 400;
  line-height: 1.55;
  color: #111;
  margin: 0 auto 2rem;
  max-width: 36rem;
}

.section-newsletter__form {
  margin: 0 auto;
  max-width: min(32rem, 100%);
}

.section-newsletter__field {
  display: flex;
  align-items: stretch;
  min-height: 3.25rem;
  border: 1px solid #000;
  background: transparent;
}

.section-newsletter__input {
  flex: 1;
  min-width: 0;
  border: none;
  background: transparent;
  padding: 0.75rem 1rem;
  font-family: "Nunito", sans-serif;
  font-size: 1rem;
  color: #111;
}

.section-newsletter__input::placeholder {
  color: #8a8a8a;
}

.section-newsletter__input:focus {
  outline: none;
}

.section-newsletter__field:focus-within {
  outline: 2px solid #111;
  outline-offset: 2px;
}

.section-newsletter__submit {
  flex: 0 0 auto;
  width: 3.25rem;
  min-height: 3.25rem;
  align-self: stretch;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: none;
  border-left: 1px solid #000;
  background: #000;
  color: #fff;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}

.section-newsletter__submit:hover {
  background: #222;
}

.section-newsletter__submit:focus-visible {
  outline: 2px solid #52c0a7;
  outline-offset: 2px;
}

.section-newsletter__submit-icon {
  display: block;
  width: 1.125rem;
  height: 1.125rem;
  flex-shrink: 0;
}

.section-newsletter__consent {
  margin-top: 1.25rem;
  display: flex;
  justify-content: center;
}

.section-newsletter__checkbox {
  position: relative;
  display: inline-flex;
  align-items: flex-start;
  gap: 0.5rem;
  margin: 0;
  padding-left: 1.375rem;
  max-width: 36rem;
  text-align: left;
  cursor: pointer;
  font-family: "Nunito", sans-serif;
  font-size: clamp(0.7rem, 1.8vw, 0.8125rem);
  line-height: 1.45;
  color: #111;
}

.section-newsletter__checkbox-input {
  position: absolute;
  left: 0;
  top: 0.2em;
  width: 0.875rem;
  height: 0.875rem;
  margin: 0;
  opacity: 0;
  cursor: pointer;
  z-index: 1;
}

.section-newsletter__checkbox-ui {
  position: absolute;
  left: 0;
  top: 0.2em;
  flex-shrink: 0;
  width: 0.875rem;
  height: 0.875rem;
  border: 1px solid #000;
  background: transparent;
  box-sizing: border-box;
  pointer-events: none;
}

.section-newsletter__checkbox-input:checked + .section-newsletter__checkbox-ui {
  background: #111;
  box-shadow: inset 0 0 0 2px #bbe5d9;
}

.section-newsletter__checkbox-input:focus-visible + .section-newsletter__checkbox-ui {
  outline: 2px solid #52c0a7;
  outline-offset: 2px;
}

.section-newsletter__checkbox-text a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 0.1em;
}

.section-newsletter__checkbox-text a:hover {
  color: #000;
}

@media only screen and (max-width: 480px) {
  .section-newsletter__field {
    flex-direction: column;
    min-height: 0;
  }

  .section-newsletter__submit {
    width: 100%;
    min-height: 3rem;
    border-left: none;
    border-top: 1px solid #000;
  }
}

/* ——— Landing: lp-dark (Black Friday) ——— */
.lp-dark {
  color: rgba(255, 255, 255, 0.92);
}

.lp-dark-hero {
  position: relative;
}

.lp-dark-hero__banner {
  position: relative;
  z-index: 1;
  background-color: #0d0c10;
  background-image: url("../images/bannerblackfriday.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.lp-dark-hero__banner::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(12, 11, 16, 0.65) 0%,
    rgba(12, 11, 16, 0.2) 45%,
    transparent 78%
  );
  pointer-events: none;
}

.lp-dark-hero__banner-inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: clamp(300px, 52vh, 520px);
  padding-top: clamp(1.75rem, 5vw, 3.5rem);
  padding-bottom: clamp(1.75rem, 5vw, 3.5rem);
}

@media (min-width: 992px) {
  .lp-dark-hero__banner-inner {
    justify-content: flex-start;
    min-height: clamp(360px, 56vh, 620px);
  }
}

.lp-dark-hero__title {
  margin: 0;
  max-width: 18ch;
  font-family: "Melodrama-Medium", serif;
  font-size: clamp(3.7rem, 10.4vw, 7rem);
  font-weight: 500;
  line-height: 1.12;
  letter-spacing: 0.02em;
  color: #fff !important;
  text-wrap: balance;
}

.lp-dark-hero__counter-wrap {
  position: relative;
  z-index: 3;
  margin-top: clamp(-1.75rem, -3.5vw, -2.85rem);
}

.lp-dark-countdown {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(0.45rem, 1.8vw, 0.75rem);
  max-width: 34rem;
  margin-left: auto;
  margin-right: auto;
}

.lp-dark-countdown__cell {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  min-height: 0;
  padding: clamp(0.55rem, 2vw, 0.95rem) 0.35rem;
  background: rgba(25, 24, 32, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 10px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.lp-dark-countdown__num {
  font-family: "Nunito", sans-serif;
  font-size: clamp(1.2rem, 3.8vw, 1.85rem);
  font-weight: 700;
  line-height: 1;
  color: #fff;
  font-variant-numeric: tabular-nums;
}

.lp-dark-countdown__label {
  font-family: "Nunito", sans-serif;
  font-size: clamp(0.58rem, 1.65vw, 0.7rem);
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: lowercase;
  color: rgba(255, 255, 255, 0.9);
}

.lp-dark-hero__content {
  padding-top: clamp(1.75rem, 4.5vw, 3rem);
  padding-bottom: clamp(2.25rem, 6vw, 4.25rem);
  text-align: center;
}

.lp-dark-hero__subtitle {
  margin: 0 auto 1rem;
  max-width: 42rem;
  font-family: "Melodrama-Medium", serif;
  font-size: clamp(1.25rem, 2.8vw, 1.85rem);
  font-weight: 500;
  line-height: 1.28;
  color: #fff !important;
}

.lp-dark-hero__text {
  margin: 0 auto;
  font-family: "Nunito", sans-serif;
  font-size: clamp(0.875rem, 1.65vw, 1.02rem);
  font-weight: 400;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.88);
}

.lp-dark-products {
  padding: clamp(1.5rem, 4vw, 2.75rem) 0 clamp(2rem, 5vw, 3.5rem);
}

.lp-dark-products .product-card__title {
  color: #fff !important;
}

.lp-dark-products .product-card__title-link:hover {
  color: #f0a080;
}

.lp-dark-products .product-card__price {
  color: rgba(255, 255, 255, 0.88);
}

.lp-dark-products .product-card__price-old {
  color: rgba(255, 255, 255, 0.45);
}

/* ——— Bandă marquee (mesaje + separator SVG) ——— */
.marquee-band {
  background: #fff;
  color: #111;
}

.marquee-band__viewport {
  overflow: hidden;
}

.marquee-band__track {
  display: flex;
  width: max-content;
  animation: marquee-band-scroll 55s linear infinite;
  will-change: transform;
}

.marquee-band__group {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  gap: clamp(1rem, 3vw, 1.75rem);
  padding: 0.65rem 0;
}

.marquee-band__text {
  font-family: "Nunito", sans-serif;
  font-size: clamp(0.8125rem, 1.85vw, 0.9375rem);
  font-weight: 600;
  letter-spacing: 0.02em;
  color: #111;
  white-space: nowrap;
}

.marquee-band__sep {
  display: block;
  flex-shrink: 0;
  height: clamp(1.5rem, 3.5vw, 1.85rem);
  width: auto;
  object-fit: contain;
}

@keyframes marquee-band-scroll {
  0% {
    transform: translate3d(0, 0, 0);
  }
  100% {
    transform: translate3d(-50%, 0, 0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .marquee-band__track {
    animation: none;
  }

  .marquee-band__viewport {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .marquee-band__track {
    flex-wrap: wrap;
    justify-content: center;
    row-gap: 0.5rem;
    width: 100%;
    max-width: 100%;
  }

  .marquee-band__group {
    flex-wrap: wrap;
    justify-content: center;
  }

  .marquee-band__group[aria-hidden="true"] {
    display: none;
  }
}

/* ——— Footer ——— */
.site-footer {
  background: #181818;
  color: rgba(255, 255, 255, 0.82);
  padding: clamp(2.75rem, 6vw, 4.25rem) 0 15px;
}

.site-footer__top {
  padding-bottom: clamp(2rem, 5vw, 3rem);
}

.site-footer__logo-link {
  display: inline-block;
  margin-bottom: 1.25rem;
}

.site-footer__logo {
  display: block;
  height: auto;
  max-width: 142px;
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 992px) {
  .site-footer__logo {
    margin-left: 0;
  }
}

.site-footer__address {
  font-family: "Nunito", sans-serif;
  font-size: clamp(0.875rem, 1.8vw, 0.9375rem);
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.78);
  margin: 0 0 1rem;
  max-width: 22rem;
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 992px) {
  .site-footer__address {
    margin-left: 0;
    margin-right: 0;
  }
}

.site-footer__map-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-family: "Nunito", sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #fff;
  text-decoration: none;
  margin-bottom: 1.35rem;
}

.site-footer__map-link:hover {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: underline;
}

.site-footer__map-icon {
  flex-shrink: 0;
}

.site-footer__contact {
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.65rem;
}

@media (min-width: 992px) {
  .site-footer__contact {
    align-items: flex-start;
  }
}

.site-footer__contact-line {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: "Nunito", sans-serif;
  font-size: clamp(0.875rem, 1.8vw, 0.9375rem);
  color: rgba(255, 255, 255, 0.78);
  text-decoration: none;
}

.site-footer__contact-line:hover {
  color: #fff;
}

.site-footer__contact-line i {
  width: 1.1em;
  text-align: center;
  opacity: 0.95;
}

.site-footer__heading {
  font-family: "Nunito", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: #fff !important;
  margin: 0 0 1rem;
  line-height: 1.3;
}

.site-footer__list {
  margin: 0;
  padding: 0;
}

.site-footer__list li {
  margin-bottom: 0.5rem;
}

.site-footer__list li:last-child {
  margin-bottom: 0;
}

.site-footer__list a {
  font-family: "Nunito", sans-serif;
  font-size: 0.9375rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.78);
  text-decoration: none;
}

.site-footer__list a:hover {
  color: #fff;
  text-decoration: underline;
}

.site-footer__newsletter-text {
  font-family: "Nunito", sans-serif;
  font-size: clamp(0.8125rem, 1.7vw, 0.9375rem);
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.72);
  margin: 0 0 1.25rem;
  max-width: 22rem;
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 992px) {
  .site-footer__newsletter-text {
    margin-left: 0;
    margin-right: 0;
  }
}

.site-footer__field {
  display: flex;
  align-items: stretch;
  min-height: 3rem;
  border: 1px solid rgba(255, 255, 255, 0.85);
  background: rgba(0, 0, 0, 0.25);
  max-width: min(22rem, 100%);
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 992px) {
  .site-footer__field {
    margin-left: 0;
    margin-right: 0;
  }
}

.site-footer__input {
  flex: 1;
  min-width: 0;
  border: none;
  background: transparent;
  padding: 0.65rem 0.85rem;
  font-family: "Nunito", sans-serif;
  font-size: 0.9375rem;
  color: #fff;
}

.site-footer__input::placeholder {
  color: rgba(255, 255, 255, 0.45);
}

.site-footer__input:focus {
  outline: none;
}

.site-footer__field:focus-within {
  outline: 1px solid rgba(255, 255, 255, 0.5);
  outline-offset: 2px;
}

.site-footer__submit {
  flex: 0 0 auto;
  width: 3rem;
  min-height: 3rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: none;
  border-left: 1px solid rgba(255, 255, 255, 0.85);
  background: #fff;
  color: #111;
  cursor: pointer;
  transition: background 0.2s ease;
}

.site-footer__submit:hover {
  background: #e8e8e8;
}

.site-footer__submit:focus-visible {
  outline: 2px solid #52c0a7;
  outline-offset: 2px;
}

.site-footer__submit-icon {
  display: block;
  width: 1.125rem;
  height: 1.125rem;
  flex-shrink: 0;
}

.site-footer__consent {
  margin-top: 1rem;
  text-align: left;
  max-width: min(22rem, 100%);
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 992px) {
  .site-footer__consent {
    margin-left: 0;
    margin-right: 0;
  }
}

.site-footer__checkbox {
  position: relative;
  display: inline-flex;
  align-items: flex-start;
  gap: 0.5rem;
  margin: 0;
  padding-left: 1.375rem;
  cursor: pointer;
  font-family: "Nunito", sans-serif;
  font-size: clamp(0.65rem, 1.6vw, 0.75rem);
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.65);
}

.site-footer__checkbox-input {
  position: absolute;
  left: 0;
  top: 0.15em;
  width: 0.875rem;
  height: 0.875rem;
  margin: 0;
  opacity: 0;
  cursor: pointer;
  z-index: 1;
}

.site-footer__checkbox-ui {
  position: absolute;
  left: 0;
  top: 0.15em;
  width: 0.875rem;
  height: 0.875rem;
  border: 1px solid rgba(255, 255, 255, 0.85);
  background: transparent;
  box-sizing: border-box;
  pointer-events: none;
}

.site-footer__checkbox-input:checked + .site-footer__checkbox-ui {
  background: #fff;
  box-shadow: inset 0 0 0 2px #181818;
}

.site-footer__checkbox-input:focus-visible + .site-footer__checkbox-ui {
  outline: 2px solid #52c0a7;
  outline-offset: 2px;
}

.site-footer__checkbox-text a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 0.1em;
}

.site-footer__checkbox-text a:hover {
  color: #fff;
}

.site-footer-accordion .accordion-item {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.12);
}

.site-footer-accordion .accordion-button {
  padding: 0.85rem 0;
  font-family: "Nunito", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  background: transparent;
  box-shadow: none;
}

.site-footer-accordion .accordion-button:not(.collapsed) {
  color: #fff;
  background: transparent;
  box-shadow: none;
}

.site-footer-accordion .accordion-button::after {
  filter: invert(1);
  opacity: 0.85;
}

.site-footer-accordion .accordion-button:focus {
  box-shadow: none;
  border-color: rgba(255, 255, 255, 0.12);
}

.site-footer-accordion .accordion-button:focus-visible {
  outline: 2px solid #52c0a7;
  outline-offset: 2px;
}

.site-footer-accordion .accordion-body {
  padding: 0 0 1rem;
  background: transparent;
}

.site-footer-accordion .site-footer__list a {
  color: rgba(255, 255, 255, 0.78);
}

.site-footer__bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  text-align: center;
}

@media (min-width: 992px) {
  .site-footer__bottom {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    text-align: left;
  }
}

.site-footer__copyright {
  font-family: "Nunito", sans-serif;
  font-size: clamp(0.75rem, 1.6vw, 0.8125rem);
  color: rgba(255, 255, 255, 0.55);
  margin: 0;
}

.site-footer__badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem 1rem;
}

@media (min-width: 992px) {
  .site-footer__badges {
    justify-content: flex-end;
  }
}

.site-footer__badge {
  display: inline-block;
  line-height: 0;
}

.site-footer__badge img {
  display: block;
  height: auto;
  max-width: min(140px, 42vw);
}

/* Mobil: ținte tactiles ≥44px — header, offcanvas, overlay căutare, footer (Lighthouse / WCAG 2.5.5) */
@media (max-width: 991.98px) {
  .site-header__mobile .site-header__icon-btn,
  .site-header__mobile .site-header__tool {
    min-width: 2.75rem;
    min-height: 2.75rem;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
  }

  .site-header__mobile .site-header__icon-btn {
    padding: 0;
  }

  .site-header__mobile .site-header__tool--badge {
    padding: 0;
  }

  .offcanvas-header .btn-close,
  .cart-drawer__header .btn-close,
  .filter-drawer__header .btn-close {
    min-width: 2.75rem;
    min-height: 2.75rem;
    padding: 0.5rem;
    box-sizing: border-box;
  }

  .site-menu-mobile .offcanvas-header .site-header__tool {
    min-width: 2.75rem;
    min-height: 2.75rem;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
  }

  .site-search-overlay__close {
    min-width: 2.75rem;
    min-height: 2.75rem;
    padding: 0.5rem;
    margin: 0;
    box-sizing: border-box;
  }

  .site-footer-accordion .accordion-button {
    min-height: 2.75rem;
    align-items: center;
  }

  .site-footer-accordion .site-footer__list a {
    display: inline-flex;
    align-items: center;
    min-height: 2.75rem;
    padding: 0.25rem 0;
    box-sizing: border-box;
  }

  .site-footer__map-link {
    min-height: 2.75rem;
    padding: 0.35rem 0;
    box-sizing: border-box;
  }

  .site-footer__contact-line {
    min-height: 2.75rem;
    padding: 0.35rem 0;
    box-sizing: border-box;
  }

  .site-footer__checkbox {
    padding-left: 2.75rem;
    min-height: 2.75rem;
    align-items: center;
  }

  .site-footer__checkbox-input {
    width: 2.75rem;
    height: 2.75rem;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    margin-top: 0;
  }

  .site-footer__checkbox-ui {
    width: 1.125rem;
    height: 1.125rem;
    top: 50%;
    left: 0.35rem;
    margin-top: 0;
    transform: translateY(-50%);
  }
}

@media only screen and (max-width:1570px) {

}	

@media only screen and (max-width:850px) {
	p {font-size:16px;}
  h1 {font-size:40px;}
  h2 {font-size:32px;}
  h3 {font-size:28px;}
  h4 {font-size:22px;}
  h5 {font-size:18px;}
}

/* ——— Contul meu (WooCommerce) — layout Teratai ——— */
.logicware-account-page {
  background: #fff;
  --logicware-account-accent: #d44601;
  --logicware-account-sidebar-bg: #f6f9f8;
  --logicware-account-border: #d9d9d9;
}

.logicware-account-page__title {
  font-family: 'Melodrama-Medium', serif;
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 500;
  text-align: center;
  color: #000;
  margin-bottom: 0.5rem;
}

.logicware-account-page__title--mobile {
  font-size: 1.5rem;
}

.logicware-account-mobile-bar {
  position: relative;
}

.logicware-account-nav-toggle {
  flex: 0 0 auto;
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--logicware-account-sidebar-bg);
  border-radius: 2px;
}

.logicware-account-nav-toggle__icon {
  color: var(--logicware-account-accent);
  font-size: 1.25rem;
}

.logicware-account-mobile-bar__spacer {
  flex: 0 0 44px;
  width: 44px;
  height: 44px;
}

.logicware-account-breadcrumb .product-breadcrumb__viewport {
  padding-left: 0 !important;
}

.logicware-account-layout__sidebar-col {
  position: relative;
}

@media (max-width: 991.98px) {
  .logicware-account-layout__main {
    min-height: 70vh;
  }
}

.logicware-account-sidebar {
  background: var(--logicware-account-sidebar-bg);
  padding: 1.75rem 1.25rem;
  border-radius: 2px;
}

.logicware-account-sidebar-inner__profile {
  text-align: center;
}

.logicware-account-avatar {
  width: 120px;
  height: 120px;
  margin: 0 auto 1rem;
  border-radius: 50%;
  overflow: hidden;
  background: #fff;
}

.logicware-account-avatar__img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover;
}

.logicware-account-sidebar-inner__name {
  font-family: "Nunito", sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  margin: 0 0 0.35rem;
  color: #000;
}

.logicware-account-sidebar-inner__email {
  font-family: "Nunito", sans-serif;
  font-size: 0.9rem;
  margin: 0;
  color: #333;
}

.logicware-account-sidebar-inner__sep {
  border: 0;
  border-top: 1px solid var(--logicware-account-border);
  margin: 1.25rem 0 1rem;
}

.logicware-account-nav {
  list-style: none;
  margin: 0;
  padding: 0;
}

.logicware-account-nav__item {
  margin: 0 0 0.35rem;
}

.logicware-account-nav__link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 0.9rem;
  text-decoration: none;
  color: #000;
  font-family: "Nunito", sans-serif;
  font-size: 0.95rem;
  border: 1px solid transparent;
  border-radius: 2px;
  background: transparent;
  transition: background 0.2s ease, border-color 0.2s ease;
  position: relative;
}

.logicware-account-nav__link:hover {
  background: rgba(255, 255, 255, 0.6);
  color: #000;
}

.logicware-account-nav__link.is-active {
  background: #fff;
  border-color: var(--logicware-account-border);
}

.logicware-account-nav__icon {
  width: 1.25rem;
  text-align: center;
  color: #111;
  flex-shrink: 0;
}

.logicware-account-nav__label {
  flex: 1 1 auto;
}

.logicware-account-nav__badge {
  min-width: 1.25rem;
  height: 1.25rem;
  padding: 0 0.35rem;
  border-radius: 999px;
  background: var(--logicware-account-accent);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  line-height: 1.25rem;
  text-align: center;
}

.logicware-account-content {
  padding-top: 0;
}

.logicware-account-content > .woocommerce {
  max-width: 100%;
}

.logicware-account-offcanvas {
  --bs-offcanvas-width: min(88vw, 22rem);
  background: var(--logicware-account-sidebar-bg);
}

.logicware-account-offcanvas .offcanvas-header {
  min-height: 2.5rem;
}

/* formular */
.logicware-edit-account-form .logicware-account-password-fieldset {
  border: 0;
  margin: 0;
  padding: 0;
  min-width: 0;
}

.logicware-edit-account-form .logicware-account-section {
  margin-bottom: 2.25rem;
}

.logicware-edit-account-form .logicware-account-section__title {
  font-family: "Nunito", sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
  color: #000;
  margin: 0 0 1.25rem;
  line-height: 1.3;
}

.logicware-account-fields--grid {
  display: grid;
  gap: 1rem 1.5rem;
  grid-template-columns: 1fr;
}

@media (min-width: 992px) {
  .logicware-account-fields--grid {
    grid-template-columns: 1fr 1fr;
  }

  .logicware-account-fields--grid .form-row-wide {
    grid-column: 1 / -1;
  }

  .logicware-account-fields--password .form-row-wide {
    grid-column: 1 / -1;
    max-width: 50%;
  }
}

.logicware-edit-account-form .form-row label {
  font-family: "Nunito", sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  color: #000;
  margin-bottom: 0.4rem;
  display: block;
}

.logicware-edit-account-form .input-text,
.logicware-edit-account-form input[type="email"],
.logicware-edit-account-form input[type="tel"],
.logicware-edit-account-form input[type="password"] {
  width: 100%;
  padding: 0.65rem 0.85rem;
  border: 1px solid var(--logicware-account-border);
  border-radius: 2px;
  font-family: "Nunito", sans-serif;
  font-size: 1rem;
  background: #fff;
}

/* WooCommerce: afișare parolă — icon Font Awesome, poziționare în dreapta inputului */
.woocommerce form .password-input {
  display: block;
  position: relative;
  width: 100%;
  max-width: 100%;
}

.woocommerce form .password-input input[type="password"],
.woocommerce form .password-input input[type="text"] {
  padding-right: 2.75rem !important;
  box-sizing: border-box;
}

.woocommerce form .password-input input::-ms-reveal {
  display: none;
}

.woocommerce form .show-password-input {
  position: absolute;
  right: 0.45rem;
  top: 50%;
  transform: translateY(-50%);
  width: 2.5rem;
  height: 2.5rem;
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

/* înlocuiește glyph-ul din fontul WooCommerce (lipsește des în teme) */
.woocommerce form .show-password-input::after {
  font-family: "Font Awesome 6 Free", "Font Awesome 7 Free", "Font Awesome 5 Free";
  font-weight: 900;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  display: block;
  font-size: 1.05rem;
  line-height: 1;
  color: #444;
  content: "\f06e";
}

.woocommerce form .show-password-input:hover::after {
  color: #111;
}

.woocommerce form .show-password-input.display-password::after {
  content: "\f070";
  color: #d44601;
}

.woocommerce form .show-password-input:focus-visible {
  outline: 2px solid #d44601;
  outline-offset: 2px;
  border-radius: 4px;
}

.logicware-profile-upload__row {
  display: flex;
  align-items: stretch;
  border: 1px solid var(--logicware-account-border);
  border-radius: 2px;
  overflow: hidden;
  background: #fff;
  position: relative;
}

.logicware-profile-upload__filename {
  flex: 1 1 auto;
  border: 0 !important;
  padding: 0.65rem 0.85rem !important;
  font-style: italic;
  color: #666;
  min-width: 0;
}

.logicware-profile-upload__input {
  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;
}

.logicware-profile-upload__trigger {
  flex: 0 0 auto;
  margin: 0;
  padding: 0.65rem 1.25rem;
  background: #111;
  color: #fff;
  border: 0;
  font-family: "Nunito", sans-serif;
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
}

.logicware-profile-upload__trigger:hover {
  background: #000;
  color: #fff;
}

.logicware-account-actions {
  margin-top: 0.5rem;
}

.logicware-account-save-btn.woocommerce-Button,
.logicware-account-save-btn.button {
  width: 100%;
  display: block;
  padding: 1rem 1.5rem;
  margin: 0;
  border: 0;
  border-radius: 2px;
  background: var(--logicware-account-accent) !important;
  color: #fff !important;
  font-family: "Nunito", sans-serif !important;
  font-weight: 700 !important;
  font-size: 0.8rem !important;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.logicware-account-save-btn:hover {
  opacity: 0.92;
}

/* Login / înregistrare / recuperare — același limbaj vizual ca „Contul meu” */
.logicware-account-auth .logicware-account-page__title {
  margin-bottom: 0.75rem;
}

.logicware-account-auth__panel {
  background: #f6f9f8;
  padding: 1.75rem 1.5rem;
  border-radius: 2px;
  border: 1px solid rgba(0, 0, 0, 0.06);
}

.logicware-account-auth__login-plain {
  background: transparent;
  border: none;
  padding: 0;
  box-shadow: none;
}

#logicware-register-form {
  scroll-margin-top: 6rem;
}

.logicware-account-auth__register-jump-wrap {
  margin-top: 0.65rem !important;
  margin-bottom: 0 !important;
  font-family: "Nunito", sans-serif;
  font-size: 0.95rem;
}

.logicware-account-auth__register-jump {
  color: #d44601;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.logicware-account-auth__register-jump:hover {
  color: #111;
}

.logicware-account-auth__register-tagline {
  font-family: "Nunito", sans-serif;
  font-size: 0.95rem;
  color: #555;
  margin: 0 0 1.25rem;
  line-height: 1.45;
}

.logicware-account-auth__panel-title {
  font-family: "Nunito", sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
  color: #000;
  margin: 0 0 1rem;
  line-height: 1.3;
}

.logicware-account-auth__intro,
.logicware-account-auth__lead,
.logicware-account-auth__hint {
  font-family: "Nunito", sans-serif;
  font-size: 1rem;
  line-height: 1.5;
  color: #444;
  margin: 0 0 1.25rem;
}

.logicware-account-auth__lead:last-child {
  margin-bottom: 0;
}

.logicware-account-auth-form .woocommerce-form-row {
  margin-bottom: 1rem;
}

.logicware-account-auth-form .woocommerce-form-row:last-child {
  margin-bottom: 0;
}

.logicware-account-auth-form label {
  font-family: "Nunito", sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  color: #000;
  margin-bottom: 0.4rem;
  display: block;
}

.logicware-account-auth-form .input-text,
.logicware-account-auth-form input[type="email"],
.logicware-account-auth-form input[type="password"],
.logicware-account-auth-form input[type="text"] {
  width: 100%;
  padding: 0.65rem 0.85rem;
  border: 1px solid var(--logicware-account-border, #d9d9d9);
  border-radius: 2px;
  font-family: "Nunito", sans-serif;
  font-size: 1rem;
  background: #fff;
  box-sizing: border-box;
}

.logicware-account-auth__remember-row label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  cursor: pointer;
  margin-bottom: 0;
}

.logicware-account-auth__remember-row .woocommerce-form__input-checkbox {
  width: 1.1rem;
  height: 1.1rem;
  accent-color: #d44601;
}

.logicware-account-auth__submit-row {
  margin-top: 1.25rem !important;
  margin-bottom: 0 !important;
}

.logicware-account-auth__lost {
  margin-top: 1rem !important;
  margin-bottom: 0 !important;
  font-family: "Nunito", sans-serif;
  font-size: 0.95rem;
}

.logicware-account-auth__lost a {
  color: #d44601;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.logicware-account-auth__lost a:hover {
  color: #111;
}

.logicware-account-auth__back {
  margin: 1.5rem 0 0;
  padding-top: 1rem;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  font-family: "Nunito", sans-serif;
}

.logicware-account-auth__link-back {
  color: #333;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.logicware-account-auth__link-back:hover {
  color: #d44601;
}

a.logicware-account-save-btn.woocommerce-button,
a.logicware-account-save-btn.button {
  width: 100%;
  text-decoration: none !important;
  text-align: center;
  box-sizing: border-box;
  line-height: 1.35;
  min-height: 3.25rem;
}

.logicware-account-auth__register-fields {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 0;
}

.logicware-account-auth__register-fields > .woocommerce-form-row {
  margin-bottom: 1rem !important;
}

.logicware-account-auth__register-fields > .woocommerce-form-row:last-child {
  margin-bottom: 0 !important;
}

.logicware-account-auth__panel .woocommerce-privacy-policy-text,
.logicware-account-auth__panel .woocommerce-terms-and-conditions-wrapper {
  margin-top: 1rem;
}

.logicware-account-endpoint__title {
  font-family: "Nunito", sans-serif;
  font-weight: 700;
  font-size: 1.35rem;
  margin: 0 0 1rem;
}

.logicware-account-endpoint__lead,
.logicware-account-endpoint__empty {
  font-family: "Nunito", sans-serif;
  color: #333;
}

.logicware-account-reviews {
  list-style: none;
  margin: 0;
  padding: 0;
}

.logicware-account-reviews__item {
  padding: 1.25rem 0;
  border-bottom: 1px solid #eee;
}

.logicware-account-reviews__product {
  font-weight: 700;
  color: #000;
  text-decoration: none;
}

.logicware-account-reviews__product:hover {
  color: var(--logicware-account-accent);
}

.logicware-account-reviews__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1rem;
  align-items: baseline;
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
}

.logicware-account-reviews__date {
  color: #777;
  font-size: 0.85rem;
}

@media (max-width: 991.98px) {
  .logicware-account-fields--password .form-row-wide {
    max-width: 100%;
  }
}