/* Shift Reviews — matches React homepage reviews section */
:root {
  --ssr-ivory: #F7F3EC;
  --ssr-sand: #E8DFD0;
  --ssr-taupe: #9A8775;
  --ssr-espresso: #3D2E24;
}

.ss-reviews {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  font-family: Inter, system-ui, sans-serif;
  font-weight: 300;
  color: var(--ssr-espresso);
  -webkit-font-smoothing: antialiased;
}

.ss-reviews-eyebrow {
  font-family: Inter, system-ui, sans-serif;
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.32em;
  color: var(--ssr-taupe);
  margin: 0;
  line-height: 1.4;
}

.ss-reviews-title {
  font-family: "Cormorant Garamond", "Times New Roman", serif;
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: -0.02em;
  font-size: 2.25rem;
  color: var(--ssr-espresso);
  margin: 24px 0 0;
}

@media (min-width: 768px) {
  .ss-reviews-title {
    font-size: 3rem;
  }
}

.ss-reviews-quote {
  font-family: "Cormorant Garamond", "Times New Roman", serif;
  font-style: normal;
  font-weight: 400;
  font-size: 1.25rem;
  color: var(--ssr-espresso);
  line-height: 1.6;
  margin: 40px 0 0;
  min-height: 140px;
  transition: opacity 0.35s ease;
}

@media (min-width: 768px) {
  .ss-reviews-quote {
    font-size: 1.5rem;
  }
}

.ss-reviews-quote.is-changing {
  opacity: 0.35;
}

.ss-reviews-name {
  margin: 40px 0 0;
  color: var(--ssr-taupe);
  font-family: Inter, system-ui, sans-serif;
  font-weight: 300;
  font-size: 1rem;
  line-height: 1.5;
  transition: opacity 0.35s ease;
}

.ss-reviews-name.is-changing {
  opacity: 0.35;
}

.ss-reviews-dots {
  margin-top: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
}

.ss-reviews .ss-review-dot {
  height: 6px;
  border: 0;
  padding: 0;
  cursor: pointer;
  transition: all 0.5s ease;
  border-radius: 0;
  width: 6px;
  background: rgba(61, 46, 36, 0.25);
}

.ss-reviews .ss-review-dot:hover:not(.is-active) {
  background: rgba(61, 46, 36, 0.5);
}

.ss-reviews .ss-review-dot.is-active {
  width: 32px;
  background: var(--ssr-espresso);
}

@media (max-width: 767px) {
  .ss-reviews-quote {
    min-height: 120px;
    font-size: 1.125rem;
  }
}

/* Override Hello Elementor default button styles */
.ss-reviews button.ss-review-dot {
  border: 0 !important;
  border-radius: 0 !important;
  background-color: rgba(61, 46, 36, 0.25) !important;
  color: inherit !important;
  box-shadow: none !important;
  outline: none !important;
  appearance: none;
  padding: 0;
  margin: 0;
  min-height: 0;
}
.ss-reviews button.ss-review-dot.is-active {
  background-color: #3D2E24 !important;
}
.ss-reviews button.ss-review-dot:focus,
.ss-reviews button.ss-review-dot:focus-visible {
  outline: none !important;
  box-shadow: none !important;
}
