/* =========================================================
   1) STICKY ADD TO CART
   ========================================================= */

.faber-sticky-atc {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  transform: translateY(110%);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.28s ease, opacity 0.28s ease;
  background: var(--faber-sticky-bg);
  border-top: 1px solid var(--faber-sticky-border);
  box-shadow: var(--faber-sticky-shadow);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding-bottom: env(safe-area-inset-bottom);
}

.faber-sticky-atc.is-visible {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.faber-sticky-atc__inner {
  max-width: 980px;
  margin: 0 auto;
  padding: 12px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.faber-sticky-atc__meta {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  flex: 1 1 auto;
}

.faber-sticky-atc__thumb {
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  border-radius: 8px;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.03);
}

.faber-sticky-atc__thumb-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.faber-sticky-atc__text {
  display: flex;
  align-items: baseline;
  gap: 12px;
  min-width: 0;
  flex-wrap: wrap;
}

.faber-sticky-atc__name {
  font-family: "Inter", sans-serif;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.2;
  white-space: nowrap;
  color: #111111;
}

.faber-sticky-atc__price,
.faber-sticky-atc__price .price {
  font-family: "Inter", sans-serif;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.2;
  color: #111111;
}

.faber-sticky-atc__actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 0 0 auto;
}

/* Quantità — desktop / tablet */
.faber-sticky-atc__qty-wrap {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: auto !important;
  min-width: 0 !important;
  flex: 0 0 auto !important;
  min-height: 38px !important;
  height: 38px !important;
  border: 1px solid rgba(0, 0, 0, 0.10) !important;
  border-radius: 8px !important;
  overflow: hidden !important;
  background: rgba(255, 255, 255, 0.96) !important;
  box-sizing: border-box !important;
}

.faber-sticky-atc__qty-btn {
  appearance: none !important;
  -webkit-appearance: none !important;
  border: 0 !important;
  background: transparent !important;
  width: 32px !important;
  min-width: 32px !important;
  max-width: 32px !important;
  min-height: 38px !important;
  height: 38px !important;
  line-height: 38px !important;
  padding: 0 !important;
  margin: 0 !important;
  flex: 0 0 32px !important;
  cursor: pointer !important;
  font-family: "Inter", sans-serif !important;
  font-size: 16px !important;
  font-weight: 500 !important;
  color: #1b1b1b !important;
  text-align: center !important;
  box-shadow: none !important;
}

.faber-sticky-atc__qty-btn:hover {
  background: rgba(0, 0, 0, 0.03) !important;
}

.faber-sticky-atc__qty-input {
  appearance: textfield !important;
  -webkit-appearance: none !important;
  -moz-appearance: textfield !important;
  width: 28px !important;
  min-width: 28px !important;
  max-width: 28px !important;
  min-height: 38px !important;
  height: 38px !important;
  line-height: 38px !important;
  padding: 0 !important;
  margin: 0 !important;
  flex: 0 0 28px !important;
  box-sizing: border-box !important;
  border: 0 !important;
  border-left: 1px solid rgba(0, 0, 0, 0.07) !important;
  border-right: 1px solid rgba(0, 0, 0, 0.07) !important;
  background: transparent !important;
  text-align: center !important;
  font-family: "Inter", sans-serif !important;
  font-size: 13px !important;
  font-weight: 600 !important;
  color: #1b1b1b !important;
  box-shadow: none !important;
  outline: none !important;
}

.faber-sticky-atc__qty-input::-webkit-outer-spin-button,
.faber-sticky-atc__qty-input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.faber-sticky-atc__button {
  appearance: none;
  border: 0;
  cursor: pointer;
  min-height: 40px;
  height: 40px;
  line-height: 40px;
  padding: 0 20px;
  border-radius: 8px;
  background: var(--faber-sticky-btn-bg);
  color: var(--faber-sticky-btn-text);
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 500;
  white-space: nowrap;
}

.faber-sticky-atc__button:hover {
  opacity: 0.95;
}

.faber-sticky-atc__button.is-loading {
  opacity: 0.7;
  cursor: wait;
}

body.single-product #wrapper {
  padding-bottom: 80px;
}

/* =========================================================
   2) RASSICURAZIONI DINAMICHE
   ========================================================= */

.faber-reassurances {
  display: grid;
  gap: 18px;
  margin: 0;
  padding: 0;
}

.faber-reassurance {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 16px;
  align-items: start;
  margin: 0;
}

.faber-reassurance__icon {
  width: 44px;
  height: 44px;
  color: #1b1b1b;
}

.faber-reassurance__icon svg {
  width: 100%;
  height: 100%;
  display: block;
}

.faber-reassurance__content {
  min-width: 0;
}

.faber-reassurance__title {
  font-family: "Inter", sans-serif;
  font-size: 15px;
  line-height: 1.3;
  font-weight: 600;
  margin: 0 0 4px;
  color: #111111;
}

.faber-reassurance__text {
  font-family: "Inter", sans-serif;
  font-size: 14px;
  line-height: 1.55;
  margin: 0;
  color: #1f1f1f;
}

/* =========================================================
   3) INTRO EDITORIALE PDP
   ========================================================= */

.faber-pdp-intro.faber-pdp-section {
  background: #ffffff;
  padding: 72px 0 28px;
}

.faber-pdp-intro .faber-pdp-readable {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

.faber-pdp-eyebrow {
  display: inline-block;
  margin: 0 0 14px;
  font-family: "Inter", sans-serif;
  font-size: 11px;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--faber-text-meta);
}

.faber-pdp-intro__title {
  margin: 0 0 16px;
  font-family: "Source Serif 4", serif;
  font-size: clamp(34px, 4vw, 54px);
  font-weight: 400;
  line-height: 1.06;
  letter-spacing: -0.02em;
  color: var(--faber-text-heading);
}

.faber-pdp-intro__text,
.faber-pdp-intro__text p {
  color: var(--faber-text-body);
}

.faber-pdp-intro__text p {
  margin: 0 0 12px;
  font-family: "Inter", sans-serif;
  font-size: 16px;
  line-height: 1.78;
}

.faber-pdp-intro__text p:last-child {
  margin-bottom: 0;
}

/* =========================================================
   4) ATTIVI CHIAVE PDP
   ========================================================= */

.faber-key-actives.faber-pdp-section {
  background: #ffffff;
  padding: 28px 0 72px;
}

.faber-key-actives__head,
.faber-key-actives__list {
  max-width: 1040px;
  margin-left: auto;
  margin-right: auto;
}

.faber-key-actives__head {
  margin-bottom: 28px;
}

.faber-key-actives__title {
  margin: 0 0 14px;
  font-family: "Source Serif 4", serif;
  font-size: clamp(32px, 4vw, 50px);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--faber-text-heading);
}

.faber-key-actives__intro,
.faber-key-actives__intro p {
  color: var(--faber-text-body);
}

.faber-key-actives__intro p {
  margin: 0 0 12px;
  font-family: "Inter", sans-serif;
  font-size: 16px;
  line-height: 1.78;
}

.faber-key-actives__intro p:last-child {
  margin-bottom: 0;
}

.faber-key-active {
  display: grid;
  grid-template-columns: minmax(260px, 320px) minmax(360px, 520px);
  justify-content: center;
  align-items: center;
  column-gap: clamp(24px, 3.4vw, 44px);
  row-gap: 14px;
  margin: 0 0 12px;
}

.faber-key-active:last-child {
  margin-bottom: 0;
}

.faber-key-active--reverse {
  grid-template-columns: minmax(360px, 520px) minmax(260px, 320px);
}

.faber-key-active--reverse .faber-key-active__media {
  order: 2;
}

.faber-key-active--reverse .faber-key-active__content {
  order: 1;
}

.faber-key-active__media {
  width: 100%;
}

.faber-key-active__figure {
  width: 100%;
  max-width: 300px;
  margin-left: auto;
  margin-right: auto;
}

.faber-key-active__image {
  display: block;
  width: 100%;
  height: auto;
  max-width: 100%;
}

.faber-key-active__content {
  width: 100%;
  max-width: 520px;
}

.faber-key-active__benefit {
  margin: 0 0 8px;
  font-family: "Inter", sans-serif;
  font-size: 10px;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--faber-text-accent);
}

.faber-key-active__name {
  margin: 0 0 5px;
  font-family: "Source Serif 4", serif;
  font-size: clamp(28px, 3vw, 38px);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--faber-text-heading);
}

.faber-key-active__subtitle {
  margin: 0 0 12px;
  font-family: "Inter", sans-serif;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.5;
  color: var(--faber-text-muted);
}

.faber-key-active__text,
.faber-key-active__text p {
  color: var(--faber-text-body);
}

.faber-key-active__text p {
  margin: 0 0 10px;
  font-family: "Inter", sans-serif;
  font-size: 16px;
  line-height: 1.78;
}

.faber-key-active__text p:last-child {
  margin-bottom: 0;
}

.faber-key-actives--focus .faber-key-actives__head {
  margin-bottom: 34px;
}

.faber-key-actives--focus .faber-key-active {
  grid-template-columns: minmax(260px, 320px) minmax(360px, 520px);
  justify-content: center;
  column-gap: clamp(24px, 3.4vw, 44px);
  margin-bottom: 0;
}

.faber-key-actives--focus .faber-key-active__figure {
  max-width: 300px;
}

.faber-key-active--monochrome .faber-key-active__figure {
  filter: grayscale(100%);
}

.faber-key-active--botanical .faber-key-active__figure {
  filter: none;
}

/* =========================================================
   5) FORMULA / INGREDIENTI / WRAPPER SECTIONS
   ========================================================= */

.faber-formula.faber-pdp-section,
.faber-ingredients.faber-pdp-section,
.faber-ritual.faber-pdp-section,
.faber-same-routine.faber-pdp-section,
.faber-reviews.faber-pdp-section,
.faber-faq.faber-pdp-section {
  background: #ffffff;
}

.faber-formula.faber-pdp-section {
  padding: 0 0 28px;
}

.faber-ingredients.faber-pdp-section {
  padding: 0 0 28px;
}

.faber-ritual.faber-pdp-section {
  padding: 8px 0 40px;
}

.faber-same-routine.faber-pdp-section {
  padding: 8px 0 72px;
}

.faber-reviews.faber-pdp-section {
  padding: 8px 0 56px;
}

.faber-faq.faber-pdp-section {
  padding: 8px 0 72px;
}

.faber-pdp-section__inner {
  max-width: 1040px;
  margin-left: auto;
  margin-right: auto;
}

.faber-pdp-section__header {
  max-width: 760px;
  margin-bottom: 24px;
}

.faber-section-eyebrow {
  display: inline-block;
  margin: 0 0 12px;
  font-family: "Inter", sans-serif;
  font-size: 11px;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--faber-text-meta);
}

.faber-section-title {
  margin: 0;
  font-family: "Source Serif 4", serif;
  font-size: clamp(32px, 4vw, 50px);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--faber-text-heading);
}

.faber-section-copy {
  font-family: "Inter", sans-serif;
  font-size: 16px;
  line-height: 1.78;
  color: var(--faber-text-body);
}

.faber-section-copy p,
.faber-formula__note-inner p,
.faber-ingredients__inci p,
.faber-ingredients__note p,
.faber-same-routine__intro p,
.faber-ritual-step__text p,
.faber-faq__answer p {
  margin: 0 0 12px;
}

.faber-section-copy p:last-child,
.faber-formula__note-inner p:last-child,
.faber-ingredients__inci p:last-child,
.faber-ingredients__note p:last-child,
.faber-same-routine__intro p:last-child,
.faber-ritual-step__text p:last-child,
.faber-faq__answer p:last-child {
  margin-bottom: 0;
}

/* Formula */

.faber-formula__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.72fr);
  gap: 34px;
  align-items: start;
}

.faber-formula__copy {
  max-width: 760px;
}

.faber-formula__note {
  align-self: start;
}

.faber-formula__note-inner {
  padding: 24px;
  border: 1px solid var(--faber-note-border);
  border-radius: 22px;
  background: var(--faber-note-bg);
  font-family: "Inter", sans-serif;
  font-size: 14px;
  line-height: 1.72;
  color: var(--faber-text-body-soft);
}

/* Ingredienti */

.faber-ingredients__panel {
  max-width: 920px;
  padding-top: 18px;
  border-top: 1px solid var(--faber-border-soft);
}

.faber-ingredients__inci {
  font-family: "Inter", sans-serif;
  font-size: 14px;
  line-height: 1.82;
  color: var(--faber-text-body);
  word-break: break-word;
}

.faber-ingredients__note {
  margin-top: 18px;
  font-family: "Inter", sans-serif;
  font-size: 13px;
  line-height: 1.68;
  color: var(--faber-text-muted);
}

/* =========================================================
   6) RITUALE EDITORIALE A STEP
   ========================================================= */

.faber-ritual__intro {
  max-width: 720px;
  margin-bottom: 26px;
}

.faber-ritual-steps {
  display: grid;
  gap: 22px;
}

.faber-ritual-step {
  display: grid;
  grid-template-columns: minmax(150px, 220px) minmax(0, 1fr);
  gap: 26px;
  align-items: start;
  padding-top: 22px;
  border-top: 1px solid var(--faber-border-soft);
}

.faber-ritual-step__media {
  width: 100%;
}

.faber-ritual-step__figure {
  width: 100%;
  max-width: 220px;
  margin-left: auto;
  margin-right: auto;
}

.faber-ritual-step__image {
  display: block;
  width: 100%;
  height: auto;
  max-width: 100%;
}

.faber-ritual-step__content {
  min-width: 0;
  max-width: 620px;
}

.faber-ritual-step__number {
  margin: 0 0 8px;
  font-family: "Inter", sans-serif;
  font-size: 11px;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #115740;
}

.faber-ritual-step__title {
  margin: 0 0 10px;
  font-family: "Source Serif 4", serif;
  font-size: clamp(24px, 2.2vw, 32px);
  font-weight: 400;
  line-height: 1.12;
  letter-spacing: -0.02em;
  color: var(--faber-text-heading);
}

.faber-ritual-step__text {
  font-family: "Inter", sans-serif;
  font-size: 15px;
  line-height: 1.76;
  color: var(--faber-text-body);
}

/* =========================================================
   7) NELLA STESSA ROUTINE
   ========================================================= */

.faber-same-routine__header {
  max-width: 760px;
}

.faber-same-routine__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px 24px;
  align-items: start;
}

.faber-same-routine--three .faber-same-routine__grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.faber-same-routine__card {
  display: flex;
  flex-direction: column;
  min-width: 0;
  height: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.faber-same-routine__media {
  display: block;
  text-decoration: none;
}

.faber-same-routine__figure {
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 22px;
  overflow: hidden;
  background: var(--faber-surface-soft);
  box-shadow: var(--faber-shadow-image);
}

.faber-same-routine__image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.faber-same-routine__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-width: 0;
  padding-top: 18px;
}

.faber-same-routine__label {
  margin: 0 0 8px;
  font-family: "Inter", sans-serif;
  font-size: 10px;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--faber-text-accent);
}

.faber-same-routine__name {
  margin: 0 0 6px;
  font-family: "Source Serif 4", serif;
  font-size: clamp(24px, 2.2vw, 30px);
  font-weight: 400;
  line-height: 1.12;
  letter-spacing: -0.02em;
  color: var(--faber-text-heading);
}

.faber-same-routine__name a {
  color: inherit;
  text-decoration: none;
}

.faber-same-routine__name a:hover {
  opacity: 0.88;
}

.faber-same-routine__subtitle {
  margin: 0 0 14px;
  font-family: "Inter", sans-serif;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.5;
  color: var(--faber-text-muted);
}

.faber-same-routine__note {
  margin: 0 0 16px;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  line-height: 1.68;
  color: var(--faber-text-body);
}

.faber-same-routine__price,
.faber-same-routine__price .price {
  margin: 0 0 14px;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.3;
  color: var(--faber-text-heading);
}

.faber-same-routine__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 14px;
  margin-top: auto;
  padding-top: 4px;
}

.faber-same-routine__link {
  font-family: "Inter", sans-serif;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.4;
  color: #115740;
  text-decoration: none;
}

.faber-same-routine__link:hover {
  text-decoration: underline;
}

.faber-same-routine__add {
  appearance: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  padding: 0 14px;
  border: 1px solid rgba(17, 87, 64, 0.18);
  border-radius: 999px;
  background: transparent;
  color: #115740;
  font-family: "Inter", sans-serif;
  font-size: 12px;
  font-weight: 500;
  line-height: 1;
  text-decoration: none;
  box-shadow: none;
}

.faber-same-routine__add:hover {
  background: rgba(17, 87, 64, 0.04);
  color: #115740;
}

/* =========================================================
   7.1) CORREZIONE SPAZIO TITOLO / TESTO
   Same Routine + Reviews + FAQ
   ========================================================= */

.faber-same-routine__header .faber-section-title,
.faber-reviews__header .faber-section-title,
.faber-faq__header .faber-section-title {
  margin: 0 0 16px;
}

.faber-same-routine__header .faber-same-routine__intro,
.faber-reviews__header .faber-section-copy,
.faber-reviews__header .faber-reviews__intro,
.faber-faq__header .faber-section-copy,
.faber-faq__header .faber-faq__intro {
  margin-top: 0;
}

.faber-same-routine__header .faber-same-routine__intro p:first-child,
.faber-reviews__header .faber-section-copy p:first-child,
.faber-reviews__header .faber-reviews__intro p:first-child,
.faber-faq__header .faber-section-copy p:first-child,
.faber-faq__header .faber-faq__intro p:first-child {
  margin-top: 0;
}

/* =========================================================
   8) RECENSIONI
   ========================================================= */

.faber-reviews__header {
  max-width: 760px;
}

.faber-reviews__link-wrap {
  margin-top: 18px;
}

.faber-reviews__link {
  font-family: "Inter", sans-serif;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.4;
  color: #115740;
  text-decoration: none;
}

.faber-reviews__link:hover {
  text-decoration: underline;
}

.faber-reviews__body {
  margin-top: 8px;
}

.faber-reviews__body .woocommerce-Reviews {
  margin: 0;
}

.faber-reviews__body .woocommerce-Reviews-title {
  display: none;
}

.faber-reviews__body #reviews {
  margin: 0;
  padding: 0;
}

.faber-reviews__body .commentlist,
.faber-reviews__body ol.commentlist {
  list-style: none;
  margin: 0;
  padding: 0;
}

.faber-reviews__body ol.commentlist li {
  margin: 0;
  padding: 26px 0;
  border-top: 1px solid var(--faber-border-soft);
}

.faber-reviews__body ol.commentlist li:last-child {
  border-bottom: 1px solid var(--faber-border-soft);
}

.faber-reviews__body .comment_container {
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr);
  gap: 18px;
  align-items: start;
}

.faber-reviews__body .avatar {
  width: 56px !important;
  height: 56px !important;
  border-radius: 50%;
  border: 0 !important;
  box-shadow: none !important;
}

.faber-reviews__body .meta {
  margin: 0 0 8px;
  font-family: "Inter", sans-serif;
  font-size: 13px;
  line-height: 1.5;
  color: var(--faber-text-muted);
}

.faber-reviews__body .meta strong,
.faber-reviews__body .meta b {
  color: var(--faber-text-heading);
  font-weight: 600;
}

.faber-reviews__body .description,
.faber-reviews__body .description p {
  font-family: "Inter", sans-serif;
  font-size: 15px;
  line-height: 1.74;
  color: var(--faber-text-body);
}

.faber-reviews__body .description p {
  margin: 0 0 10px;
}

.faber-reviews__body .description p:last-child {
  margin-bottom: 0;
}

.faber-reviews__body .star-rating,
.faber-reviews__body .stars {
  margin-bottom: 10px;
}

.faber-reviews__body .woocommerce-noreviews,
.faber-reviews__body .woocommerce-review-link,
.faber-reviews__body .woocommerce-Reviews .woocommerce-review-link {
  font-family: "Inter", sans-serif;
}

.faber-reviews__body #review_form_wrapper {
  margin-top: 34px;
  padding-top: 28px;
  border-top: 1px solid var(--faber-border-soft);
}

.faber-reviews__body .comment-reply-title,
.faber-reviews__body #reply-title {
  display: block;
  margin: 0 0 18px;
  font-family: "Source Serif 4", serif;
  font-size: 28px;
  font-weight: 400;
  line-height: 1.12;
  letter-spacing: -0.02em;
  color: var(--faber-text-heading);
}

.faber-reviews__body .comment-form-rating label,
.faber-reviews__body .comment-form-author label,
.faber-reviews__body .comment-form-email label,
.faber-reviews__body .comment-form-comment label {
  display: block;
  margin-bottom: 6px;
  font-family: "Inter", sans-serif;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.4;
  color: var(--faber-text-muted);
}

.faber-reviews__body input[type="text"],
.faber-reviews__body input[type="email"],
.faber-reviews__body textarea {
  width: 100%;
  border: 1px solid var(--faber-border-softer);
  border-radius: 14px;
  background: #ffffff;
  box-shadow: none;
  padding: 12px 14px;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  line-height: 1.5;
  color: var(--faber-text-body);
}

.faber-reviews__body textarea {
  min-height: 140px;
  resize: vertical;
}

.faber-reviews__body input[type="text"]:focus,
.faber-reviews__body input[type="email"]:focus,
.faber-reviews__body textarea:focus {
  outline: none;
  border-color: rgba(17, 87, 64, 0.22);
}

.faber-reviews__body .form-submit {
  margin-top: 18px;
}

.faber-reviews__body .submit,
.faber-reviews__body button,
.faber-reviews__body input[type="submit"] {
  appearance: none;
  border: 0;
  min-height: 40px;
  padding: 0 18px;
  border-radius: 999px;
  background: #115740;
  color: #ffffff;
  font-family: "Inter", sans-serif;
  font-size: 13px;
  font-weight: 500;
  line-height: 40px;
  box-shadow: none;
  cursor: pointer;
}

.faber-reviews__body .submit:hover,
.faber-reviews__body button:hover,
.faber-reviews__body input[type="submit"]:hover {
  opacity: 0.94;
}

/* =========================================================
   9) FAQ
   ========================================================= */

.faber-faq__header {
  max-width: 760px;
}

.faber-faq__items {
  display: grid;
  gap: 0;
}

.faber-faq__item {
  border-top: 1px solid var(--faber-border-soft);
}

.faber-faq__item:last-child {
  border-bottom: 1px solid var(--faber-border-soft);
}

.faber-faq__question {
  list-style: none;
  cursor: pointer;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 20px;
  gap: 18px;
  align-items: center;
  padding: 20px 0;
}

.faber-faq__question::-webkit-details-marker {
  display: none;
}

.faber-faq__question-text {
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
  color: var(--faber-text-heading);
}

.faber-faq__icon {
  position: relative;
  width: 20px;
  height: 20px;
}

.faber-faq__icon::before,
.faber-faq__icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 14px;
  height: 1px;
  background: #115740;
  transform: translate(-50%, -50%);
}

.faber-faq__icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
  transition: opacity 0.2s ease;
}

.faber-faq__item[open] .faber-faq__icon::after {
  opacity: 0;
}

.faber-faq__answer {
  padding: 0 0 22px;
  max-width: 760px;
  font-family: "Inter", sans-serif;
  font-size: 15px;
  line-height: 1.74;
  color: var(--faber-text-body);
}

/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 1024px) {
  .faber-sticky-atc__inner {
    max-width: 900px;
    padding: 12px calc(24px + var(--faber-sticky-safe-right-tablet)) 12px 24px;
    gap: 12px;
  }

  .faber-sticky-atc__thumb {
    width: 40px;
    height: 40px;
    flex-basis: 40px;
  }

  .faber-sticky-atc__name,
  .faber-sticky-atc__price,
  .faber-sticky-atc__price .price {
    font-size: 14px;
  }

  .faber-sticky-atc__qty-wrap {
    min-height: 36px !important;
    height: 36px !important;
  }

  .faber-sticky-atc__qty-btn {
    width: 30px !important;
    min-width: 30px !important;
    max-width: 30px !important;
    min-height: 36px !important;
    height: 36px !important;
    line-height: 36px !important;
    flex: 0 0 30px !important;
    font-size: 15px !important;
  }

  .faber-sticky-atc__qty-input {
    width: 26px !important;
    min-width: 26px !important;
    max-width: 26px !important;
    min-height: 36px !important;
    height: 36px !important;
    line-height: 36px !important;
    flex: 0 0 26px !important;
    font-size: 12px !important;
  }

  .faber-sticky-atc__button {
    min-height: 38px;
    height: 38px;
    line-height: 38px;
    padding: 0 14px;
    font-size: 13px;
  }

  body.single-product #wrapper {
    padding-bottom: 76px;
  }

  .faber-reassurances {
    gap: 16px;
  }

  .faber-reassurance {
    grid-template-columns: 42px 1fr;
    gap: 14px;
  }

  .faber-reassurance__icon {
    width: 42px;
    height: 42px;
  }

  .faber-reassurance__text {
    font-size: 13.5px;
  }

  .faber-pdp-intro.faber-pdp-section {
    padding: 60px 0 24px;
  }

  .faber-key-actives.faber-pdp-section {
    padding: 24px 0 60px;
  }

  .faber-key-actives__head {
    margin-bottom: 24px;
  }

  .faber-key-active,
  .faber-key-actives--focus .faber-key-active {
    grid-template-columns: 1fr;
    justify-content: initial;
    row-gap: 12px;
    margin-bottom: 18px;
  }

  .faber-key-active__figure,
  .faber-key-actives--focus .faber-key-active__figure {
    max-width: 280px;
  }

  .faber-key-active__content,
  .faber-key-actives--focus .faber-key-active__content {
    max-width: 620px;
    margin-left: auto;
    margin-right: auto;
  }

  .faber-key-active--reverse .faber-key-active__media,
  .faber-key-active--reverse .faber-key-active__content {
    order: initial;
  }

  .faber-formula.faber-pdp-section {
    padding: 0 0 24px;
  }

  .faber-ingredients.faber-pdp-section {
    padding: 0 0 24px;
  }

  .faber-ritual.faber-pdp-section {
    padding: 6px 0 28px;
  }

  .faber-same-routine.faber-pdp-section {
    padding: 6px 0 60px;
  }

  .faber-reviews.faber-pdp-section {
    padding: 6px 0 44px;
  }

  .faber-faq.faber-pdp-section {
    padding: 6px 0 60px;
  }

  .faber-pdp-section__header {
    margin-bottom: 22px;
  }

  .faber-formula__grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .faber-formula__copy,
  .faber-ingredients__panel {
    max-width: none;
  }

  .faber-formula__note-inner {
    padding: 22px 20px;
  }

  .faber-ritual-step {
    grid-template-columns: minmax(130px, 180px) minmax(0, 1fr);
    gap: 22px;
  }

  .faber-ritual-step__figure {
    max-width: 180px;
  }

  .faber-same-routine__grid,
  .faber-same-routine--three .faber-same-routine__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .faber-same-routine__header .faber-section-title,
  .faber-reviews__header .faber-section-title,
  .faber-faq__header .faber-section-title {
    margin-bottom: 15px;
  }
}

/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 767px) {
  .faber-sticky-atc {
    bottom: 0;
  }

  .faber-sticky-atc__inner {
    max-width: none;
    padding:
      10px
      calc(14px + var(--faber-sticky-safe-right-mobile))
      10px
      calc(14px + var(--faber-sticky-safe-left-mobile));
    gap: 10px;
    align-items: center;
  }

  .faber-sticky-atc__meta {
    gap: 8px;
    min-width: 0;
    flex: 1 1 auto;
  }

  .faber-sticky-atc__thumb {
    display: none;
  }

  .faber-sticky-atc__text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
    min-width: 0;
    flex: 1 1 auto;
    flex-wrap: nowrap;
  }

  .faber-sticky-atc__name {
    font-size: 13px;
    line-height: 1.24;
    white-space: normal;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  .faber-sticky-atc__price,
  .faber-sticky-atc__price .price {
    font-size: 13px;
    line-height: 1.2;
  }

  .faber-sticky-atc__actions {
    gap: 8px;
    flex: 0 0 auto;
  }

  .faber-sticky-atc__qty-wrap {
    display: none !important;
  }

  .faber-sticky-atc__button {
    min-height: 38px;
    height: 38px;
    line-height: 38px;
    padding: 0 12px;
    font-size: 12px;
    border-radius: 8px;
  }

  body.single-product #wrapper {
    padding-bottom: 74px;
  }

  .faber-reassurances {
    gap: 16px;
  }

  .faber-reassurance {
    grid-template-columns: 36px 1fr;
    gap: 13px;
  }

  .faber-reassurance__icon {
    width: 36px;
    height: 36px;
  }

  .faber-reassurance__title {
    font-size: 15px;
    margin-bottom: 3px;
  }

  .faber-reassurance__text {
    font-size: 13.5px;
    line-height: 1.5;
  }

  .faber-pdp-intro.faber-pdp-section {
    padding: 48px 0 20px;
  }

  .faber-key-actives.faber-pdp-section {
    padding: 20px 0 48px;
  }

  .faber-pdp-intro .faber-pdp-readable,
  .faber-key-actives__head,
  .faber-key-actives__list,
  .faber-pdp-section__inner {
    max-width: none;
    width: 100%;
    margin-left: 0;
    margin-right: 0;
  }

  .faber-pdp-intro__title,
  .faber-key-actives__title,
  .faber-section-title {
    font-size: 32px;
    line-height: 1.12;
  }

  .faber-pdp-intro__title,
  .faber-key-actives__title {
    margin-bottom: 12px;
  }

  .faber-pdp-intro__text p,
  .faber-key-actives__intro p,
  .faber-key-active__text p,
  .faber-section-copy,
  .faber-section-copy p,
  .faber-same-routine__intro p,
  .faber-ritual-step__text p,
  .faber-faq__answer,
  .faber-faq__answer p,
  .faber-reviews__body .description,
  .faber-reviews__body .description p {
    font-size: 15px;
    line-height: 1.72;
  }

  .faber-key-actives__head {
    margin-bottom: 22px;
  }

  .faber-key-active,
  .faber-key-actives--focus .faber-key-active {
    grid-template-columns: 1fr;
    row-gap: 10px;
    margin-bottom: 16px;
  }

  .faber-key-active__figure,
  .faber-key-actives--focus .faber-key-active__figure {
    max-width: 220px;
  }

  .faber-key-active__content,
  .faber-key-actives--focus .faber-key-active__content {
    max-width: 100%;
    margin-left: 0;
    margin-right: 0;
  }

  .faber-key-active__benefit {
    margin-bottom: 7px;
  }

  .faber-key-active__name {
    font-size: 28px;
    margin-bottom: 4px;
  }

  .faber-key-active__subtitle {
    margin-bottom: 10px;
    font-size: 13px;
  }

  .faber-formula.faber-pdp-section {
    padding: 0 0 20px;
  }

  .faber-ingredients.faber-pdp-section {
    padding: 0 0 20px;
  }

  .faber-ritual.faber-pdp-section {
    padding: 4px 0 20px;
  }

  .faber-same-routine.faber-pdp-section {
    padding: 4px 0 48px;
  }

  .faber-reviews.faber-pdp-section {
    padding: 4px 0 36px;
  }

  .faber-faq.faber-pdp-section {
    padding: 4px 0 48px;
  }

  .faber-pdp-section__header {
    margin-bottom: 18px;
  }

  .faber-section-eyebrow {
    margin-bottom: 10px;
  }

  .faber-formula__grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .faber-formula__note-inner {
    padding: 20px 18px;
    border-radius: 18px;
    font-size: 13.5px;
    line-height: 1.68;
  }

  .faber-ingredients__panel {
    padding-top: 16px;
  }

  .faber-ingredients__inci {
    font-size: 13.5px;
    line-height: 1.78;
  }

  .faber-ingredients__note {
    margin-top: 16px;
    font-size: 12.5px;
    line-height: 1.62;
  }

  .faber-ritual__intro {
    margin-bottom: 20px;
  }

  .faber-ritual-steps {
    gap: 18px;
  }

  .faber-ritual-step {
    grid-template-columns: 1fr;
    gap: 14px;
    padding-top: 18px;
  }

  .faber-ritual-step__figure {
    max-width: 160px;
    margin-left: 0;
  }

  .faber-ritual-step__title {
    font-size: 26px;
  }

  .faber-same-routine__grid,
  .faber-same-routine--three .faber-same-routine__grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .faber-same-routine__content {
    padding-top: 16px;
  }

  .faber-same-routine__name {
    font-size: 26px;
  }

  .faber-same-routine__subtitle {
    margin-bottom: 14px;
    font-size: 12.5px;
  }

  .faber-same-routine__note {
    font-size: 13.5px;
    line-height: 1.64;
  }

  .faber-same-routine__price,
  .faber-same-routine__price .price {
    font-size: 13.5px;
  }

  .faber-same-routine__actions {
    gap: 8px 12px;
  }

  .faber-same-routine__link {
    font-size: 12.5px;
  }

  .faber-same-routine__add {
    min-height: 34px;
    padding: 0 12px;
    font-size: 11.5px;
  }

  .faber-reviews__body .comment_container {
    grid-template-columns: 44px minmax(0, 1fr);
    gap: 14px;
  }

  .faber-reviews__body .avatar {
    width: 44px !important;
    height: 44px !important;
  }

  .faber-reviews__body .comment-reply-title,
  .faber-reviews__body #reply-title {
    font-size: 24px;
  }

  .faber-faq__question {
    grid-template-columns: minmax(0, 1fr) 18px;
    gap: 14px;
    padding: 18px 0;
  }

  .faber-faq__question-text {
    font-size: 15px;
  }

  .faber-faq__answer {
    padding-bottom: 18px;
  }

  .faber-same-routine__header .faber-section-title,
  .faber-reviews__header .faber-section-title,
  .faber-faq__header .faber-section-title {
    margin-bottom: 14px;
  }
}

/* =========================================================
   10) FABER PDP TOOLS
   Layout dedicato:
   [faber_intro_editorial]
   [faber_tool_benefits]
   [faber_tool_material]
   [faber_same_routine]
   [faber_faq]
   ========================================================= */

/* Base section spacing */
.faber-tool-benefits,
.faber-tool-material {
  margin-top: 0;
}

.faber-tool-benefits.faber-pdp-section,
.faber-tool-material.faber-pdp-section {
  background: #ffffff;
}

.faber-tool-benefits .faber-pdp-section__inner,
.faber-tool-material .faber-pdp-section__inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 36px;
}

/* Header / intro */
.faber-tool-benefits__header,
.faber-tool-material__content {
  max-width: 760px;
}

.faber-tool-benefits .faber-section-title,
.faber-tool-material .faber-section-title {
  margin: 0 0 12px;
}

.faber-tool-benefits__intro,
.faber-tool-material__text {
  margin-top: 0;
}

.faber-tool-material__text p:last-child,
.faber-tool-benefits__item-text p:last-child {
  margin-bottom: 0;
}

/* Benefits grid */
.faber-tool-benefits__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin-top: 24px;
}

.faber-tool-benefits__item {
  background: #fff;
  border: 1px solid rgba(17, 87, 64, 0.08);
  border-radius: 20px;
  padding: 24px 22px;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.04);
}

.faber-tool-benefits__item-title {
  margin: 0 0 8px;
  font-family: "Source Serif 4", serif;
  font-size: 24px;
  line-height: 1.14;
  font-weight: 400;
  color: #1d1d1b;
}

.faber-tool-benefits__item-text {
  font-family: "Inter", sans-serif;
  font-size: 15px;
  line-height: 1.65;
  color: rgba(29, 29, 27, 0.82);
}

/* Material / stone section */
.faber-tool-material__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: 40px;
  align-items: center;
}

.faber-tool-material__media {
  display: flex;
  justify-content: center;
}

.faber-tool-material__figure {
  width: 100%;
  max-width: 500px;
  border-radius: 24px;
  overflow: hidden;
  background: #fff;
}

.faber-tool-material__image {
  display: block;
  width: 100%;
  height: auto;
}

.faber-tool-material__text {
  font-family: "Inter", sans-serif;
  font-size: 16px;
  line-height: 1.72;
  color: rgba(29, 29, 27, 0.84);
}

/* Vertical rhythm between tool sections */
.faber-pdp-intro + .faber-tool-benefits,
.faber-tool-benefits + .faber-tool-material,
.faber-tool-material + .faber-same-routine,
.faber-same-routine + .faber-faq {
  margin-top: 56px;
}

/* Tablet */
@media (max-width: 1024px) {
  .faber-tool-benefits .faber-pdp-section__inner,
  .faber-tool-material .faber-pdp-section__inner {
    padding: 0 24px;
  }

  .faber-tool-benefits__grid {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-top: 20px;
  }

  .faber-tool-benefits__item {
    padding: 22px 20px;
  }

  .faber-tool-benefits__item-title {
    font-size: 22px;
  }

  .faber-tool-material__grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .faber-tool-material__figure {
    max-width: 440px;
    margin: 0 auto;
  }

  .faber-pdp-intro + .faber-tool-benefits,
  .faber-tool-benefits + .faber-tool-material,
  .faber-tool-material + .faber-same-routine,
  .faber-same-routine + .faber-faq {
    margin-top: 44px;
  }
}

/* Mobile */
@media (max-width: 767px) {
  .faber-tool-benefits .faber-pdp-section__inner,
  .faber-tool-material .faber-pdp-section__inner {
    padding: 0 18px;
  }

  .faber-tool-benefits__grid {
    margin-top: 18px;
  }

  .faber-tool-benefits__item {
    border-radius: 18px;
    padding: 20px 16px;
  }

  .faber-tool-benefits__item-title {
    font-size: 21px;
  }

  .faber-tool-benefits__item-text,
  .faber-tool-material__text {
    font-size: 15px;
    line-height: 1.68;
  }

  .faber-tool-material__grid {
    gap: 20px;
  }

  .faber-tool-material__figure {
    border-radius: 20px;
  }

  .faber-pdp-intro + .faber-tool-benefits,
  .faber-tool-benefits + .faber-tool-material,
  .faber-tool-material + .faber-same-routine,
  .faber-same-routine + .faber-faq {
    margin-top: 36px;
  }
}
