.mfgr {
  --mfgr-black: #111111;
  --mfgr-ink: #1a1a1a;
  --mfgr-white: #ffffff;
  --mfgr-paper: #f4f4f1;
  --mfgr-gray: #a7a7a2;
  --mfgr-line: rgba(255, 255, 255, 0.2);
  color: var(--mfgr-white);
  margin: 64px 0;
  font-family: inherit;
}

.mfgr[hidden],
.mfgr [hidden] {
  display: none !important;
}

/* Compatibility fallback for the live Marta Flowers home template.
   JavaScript removes this legacy block after its existing slider initialises. */
.mfgr--home ~ .reviews-container,
.mfgr--delivery ~ .reviews-container {
  display: none !important;
}

.mfgr__shell {
  overflow: hidden;
  background: var(--mfgr-black);
  border: 1px solid #2f2f2f;
  border-radius: 2px;
  box-shadow: 0 22px 55px rgba(0, 0, 0, 0.12);
}

/* The active Marta Flowers theme has broad section colour rules. Keep the
   widget's black/white palette isolated from those legacy declarations. */
.mfgr .mfgr__header,
.mfgr .mfgr__loading,
.mfgr .mfgr__fallback,
.mfgr .mfgr__footer {
  background: var(--mfgr-black) !important;
  color: var(--mfgr-white) !important;
}

.mfgr .mfgr__title,
.mfgr .mfgr__loading strong,
.mfgr .mfgr__fallback strong {
  color: var(--mfgr-white) !important;
}

.mfgr .mfgr__intro,
.mfgr .mfgr__loading span,
.mfgr .mfgr__fallback p {
  color: #bcbcb8 !important;
}

.mfgr__header {
  display: block !important;
  height: auto !important;
  min-height: 0 !important;
  max-height: none !important;
  padding: 42px 44px 30px;
  border-bottom: 1px solid var(--mfgr-line);
}

.mfgr__eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 22px;
  color: #cacac6;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.mfgr .mfgr__eyebrow span {
  color: #cacac6 !important;
}

.mfgr__google-logo {
  display: block;
  width: 24px;
  height: 24px;
  object-fit: contain;
}

.mfgr__heading-row {
  display: flex;
  height: auto !important;
  min-height: 0 !important;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
}

.mfgr__heading-copy {
  height: auto !important;
  min-height: 0 !important;
  max-width: 740px;
}

.mfgr__title {
  margin: 0;
  color: var(--mfgr-white);
  font-size: clamp(32px, 3.2vw, 48px) !important;
  font-weight: 500;
  line-height: 1.06 !important;
  letter-spacing: -0.025em !important;
  text-transform: none !important;
}

.mfgr__intro {
  max-width: 650px;
  margin: 16px 0 0;
  color: #bcbcb8;
  font-size: 16px;
  line-height: 1.6;
}

.mfgr__summary {
  display: grid;
  grid-template-columns: auto auto;
  align-items: center;
  gap: 3px 12px;
  min-width: 172px;
  padding: 18px 20px;
  border: 1px solid var(--mfgr-line);
  background: rgba(255, 255, 255, 0.04);
}

.mfgr__summary-rating {
  grid-row: 1 / span 2;
  color: var(--mfgr-white);
  font-size: 38px;
  font-weight: 500;
  line-height: 1;
}

.mfgr__summary-stars {
  color: var(--mfgr-white);
  font-size: 13px;
  letter-spacing: 1px;
}

.mfgr__summary-count {
  color: #aaa;
  font-size: 12px;
}

.mfgr__loading {
  display: flex;
  align-items: center;
  gap: 18px;
  min-height: 180px;
  padding: 36px 44px;
}

.mfgr__loading strong,
.mfgr__loading span {
  display: block;
}

.mfgr__loading strong {
  font-size: 15px;
  font-weight: 500;
}

.mfgr__loading div > span {
  margin-top: 5px;
  color: #92928e;
  font-size: 13px;
}

.mfgr__loader {
  width: 30px;
  height: 30px;
  flex: 0 0 30px;
  border: 2px solid #555;
  border-top-color: var(--mfgr-white);
  border-radius: 50%;
  animation: mfgr-spin 0.9s linear infinite;
}

@keyframes mfgr-spin {
  to { transform: rotate(360deg); }
}

.mfgr__content {
  padding: 28px 44px 38px;
}

.mfgr__toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 22px;
}

.mfgr__toolbar p {
  margin: 0;
  color: #979793;
  font-size: 12px;
  line-height: 1.5;
}

.mfgr__arrows {
  display: flex;
  gap: 8px;
}

.mfgr__arrow {
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid #5b5b58;
  border-radius: 50%;
  background: transparent;
  color: var(--mfgr-white);
  font-size: 21px;
  line-height: 1;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, opacity 0.2s ease;
}

.mfgr__arrow:hover:not(:disabled),
.mfgr__arrow:focus-visible:not(:disabled) {
  background: var(--mfgr-white);
  color: var(--mfgr-black);
}

.mfgr__arrow:disabled {
  opacity: 0.3;
  cursor: default;
}

.mfgr__reviews {
  display: grid;
  grid-template-columns: repeat(5, minmax(280px, 1fr));
  gap: 14px;
  overflow-x: auto;
  padding: 2px 2px 14px;
  scroll-behavior: smooth;
  scrollbar-color: #666 #242424;
  scrollbar-width: thin;
  scroll-snap-type: x mandatory;
}

.mfgr--page .mfgr__reviews {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  overflow: visible;
  padding-bottom: 0;
}

.mfgr__review {
  min-width: 0;
  min-height: 310px;
  display: flex;
  flex-direction: column;
  padding: 24px;
  color: var(--mfgr-ink);
  background: var(--mfgr-paper);
  scroll-snap-align: start;
}

.mfgr__review-head {
  display: flex !important;
  min-height: 44px !important;
  align-items: center !important;
  gap: 12px;
  margin: 0 !important;
  padding: 0 !important;
  background: transparent !important;
  color: var(--mfgr-ink) !important;
}

.mfgr__avatar,
.mfgr__avatar-fallback {
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  border-radius: 50%;
}

.mfgr__avatar {
  display: block;
  object-fit: cover;
  background: #deded8;
}

.mfgr__avatar-fallback {
  display: grid;
  place-items: center;
  background: #deded8;
  color: #222;
  font-size: 17px;
  font-weight: 600;
}

.mfgr__author-meta {
  min-width: 0;
}

.mfgr__author {
  display: block;
  overflow: hidden;
  margin: 0;
  color: #111;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.3;
  text-overflow: ellipsis;
  white-space: nowrap;
}

a.mfgr__author:hover,
a.mfgr__author:focus-visible {
  color: #111;
  text-decoration: underline;
}

.mfgr__date {
  display: block;
  margin-top: 3px;
  color: #777772;
  font-size: 11px;
}

.mfgr__stars {
  margin: 20px 0 14px;
  color: #151515;
  font-size: 15px;
  letter-spacing: 2px;
}

.mfgr__star--empty {
  color: #c8c8c2;
}

.mfgr__review-text {
  position: relative;
  margin: 0;
  overflow-wrap: anywhere;
  white-space: pre-line;
  color: #2d2d2a;
  font-size: 14px;
  line-height: 1.65;
}

.mfgr__review-text.is-collapsed {
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 6;
}

.mfgr__text-toggle,
.mfgr__translation-toggle {
  display: inline-block;
  padding: 0;
  border: 0;
  border-bottom: 1px solid currentColor;
  background: transparent;
  color: #202020;
  font: inherit;
  font-size: 12px;
  cursor: pointer;
}

.mfgr__text-toggle {
  margin-top: 10px;
}

.mfgr__translation {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 12px;
  color: #777772;
  font-size: 11px;
}

.mfgr__review-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: auto;
  padding-top: 20px;
}

.mfgr__review-links a {
  color: #555550;
  font-size: 11px;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.mfgr__attributions {
  margin-top: 12px;
  color: #8f8f8b;
  font-size: 11px;
}

.mfgr__attributions a {
  color: #c9c9c4;
}

.mfgr__fallback {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  min-height: 180px;
  padding: 34px 44px;
  border-bottom: 1px solid var(--mfgr-line);
}

.mfgr__fallback strong {
  font-size: 20px;
  font-weight: 500;
}

.mfgr__fallback p {
  margin: 8px 0 0;
  color: #aaa;
  font-size: 14px;
}

.mfgr__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 26px 44px;
  border-top: 1px solid var(--mfgr-line);
}

.mfgr__policy {
  max-width: 630px;
  color: #898985;
  font-size: 10px;
  line-height: 1.5;
}

.mfgr__policy p {
  display: inline;
  margin: 0;
  color: inherit !important;
}

.mfgr__policy a {
  display: inline-block;
  margin-left: 7px;
  color: #c5c5c1;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.mfgr .mfgr__policy a {
  color: #c5c5c1 !important;
  font-size: 10px !important;
}

.mfgr__actions {
  display: flex;
  flex: 0 0 auto;
  gap: 10px;
}

.mfgr__button {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  padding: 11px 18px;
  border: 1px solid var(--mfgr-white);
  border-radius: 0;
  font-size: 12px !important;
  font-weight: 600;
  line-height: 1.2;
  text-align: center;
  text-decoration: none !important;
  transition: background 0.2s ease, color 0.2s ease;
}

.mfgr .mfgr__author {
  color: #111 !important;
  font-size: 14px !important;
}

.mfgr .mfgr__date,
.mfgr .mfgr__review-links a {
  font-size: 11px !important;
}

.mfgr .mfgr__review-text {
  color: #2d2d2a !important;
  font-size: 14px !important;
  line-height: 1.65 !important;
}

.mfgr__button--solid,
.mfgr__button--light {
  background: var(--mfgr-white);
  color: var(--mfgr-black) !important;
}

.mfgr__button--outline {
  background: transparent;
  color: var(--mfgr-white) !important;
}

.mfgr__button:hover,
.mfgr__button:focus-visible {
  background: #d8d8d3;
  color: var(--mfgr-black) !important;
}

.mfgr__noscript {
  margin: 0;
  padding: 15px 44px;
  background: #111;
}

.mfgr__noscript a {
  color: #fff;
  text-decoration: underline;
}

.mfgr-page__breadcrumb {
  margin-top: 18px;
}

@media (max-width: 991px) {
  .mfgr {
    margin: 44px 0;
  }

  .mfgr__header,
  .mfgr__content,
  .mfgr__footer,
  .mfgr__fallback {
    padding-left: 28px;
    padding-right: 28px;
  }

  .mfgr__heading-row,
  .mfgr__footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .mfgr--page .mfgr__reviews {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 575px) {
  .mfgr {
    margin: 32px 0;
  }

  .mfgr__header {
    padding: 28px 20px 24px;
  }

  .mfgr__title {
    font-size: 34px;
  }

  .mfgr__heading-row {
    gap: 22px;
  }

  .mfgr__summary {
    width: 100%;
  }

  .mfgr__loading,
  .mfgr__content,
  .mfgr__footer,
  .mfgr__fallback {
    padding-left: 20px;
    padding-right: 20px;
  }

  .mfgr__toolbar,
  .mfgr__fallback,
  .mfgr__actions {
    align-items: stretch;
    flex-direction: column;
  }

  .mfgr__arrows {
    align-self: flex-end;
  }

  .mfgr__reviews,
  .mfgr--page .mfgr__reviews {
    display: grid;
    grid-template-columns: repeat(5, calc(100vw - 78px));
    overflow-x: auto;
    padding-bottom: 12px;
  }

  .mfgr__review {
    min-height: 300px;
    padding: 21px;
  }

  .mfgr__actions,
  .mfgr__button {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .mfgr__loader {
    animation-duration: 1.8s;
  }

  .mfgr__reviews,
  .mfgr__button,
  .mfgr__arrow {
    scroll-behavior: auto;
    transition: none;
  }
}
