/* ============================================================
   THE ETERNITY ROSE — REVIEWS CAROUSEL
   Standalone CSS — no dependencies
   ============================================================ */


:root {
  --rc-bg: #fff;
  --rc-card-bg: #ffffff;
  --rc-text: #2a2520;
  --rc-text-muted: #7a7268;
  --rc-olive: #6b8e23;
  --rc-olive-hover: #5a7a1c;
  --rc-gold: #b8860b;
  --rc-star: #e8a500;
  --rc-border: #f0ebe5;
  --rc-quote: #e8e0d6;
  --rc-arrow-border: #e0d8cf;
  --rc-dot-inactive: #d4ccc2;
  --rc-dot-inactive-hover: #bbb2a6;
  --rc-font-sans: 'Jost', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --rc-font-serif: 'Playfair Display', Georgia, 'Times New Roman', serif;
}

.rc-section {
  width: 100%;
  padding: 56px 0 48px;
  background: var(--rc-bg);
  font-family: var(--rc-font-sans);
  color: var(--rc-text);
  overflow: hidden;
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-synthesis: none;
}
.rc-section *, .rc-section *::before, .rc-section *::after {
  box-sizing: border-box;
}

.rc-header {
  text-align: center;
  padding: 0 24px;
  margin-bottom: 40px;
}
.rc-header__label {
  font-size: 13px;
  font-weight: 700 !important;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--rc-gold);   /* was --rc-olive (green) — switched to brand gold */
  margin: 0 0 14px;
}
/* ----- ORIGINAL Reviews heading (Playfair Display) — kept commented as a
   fallback in case we need to revert. Uncomment the block below and remove
   the "matched to Shop by Category" block that follows to restore.
.rc-header__title {
  font-family: var(--rc-font-serif);
  font-size: clamp(28.6px, 4.95vw, 46.2px);
  font-weight: 400 !important;
  line-height: 1.2;
  color: var(--rc-text);
  margin: 0 0 12px;
}
.rc-header__title em {
  color: #cf8a69;
  font-style: italic;
  font-weight: 700 !important;
}
   ----- END ORIGINAL ----- */

/* Reviews heading — matched to the Shop by Category treatment: Cormorant
   Garamond, 47px, weight 400, title case, tight 0.94px letter-spacing.
   The <em> words "Gave" and "Received" keep the existing peach colour and
   italic emphasis (bold 700) unchanged. */
.rc-header__title {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(37.5px, 2.45vw, 47px);
  font-weight: 400 !important;
  line-height: 1.2;
  letter-spacing: 0.02em;
  text-transform: none;
  color: var(--rc-text);
  margin: 0 0 12px;
}
.rc-header__title em {
  color: #cf8a69;   /* logo peach (#f4a27b) darkened 15% — unchanged */
  font-style: italic;
  font-weight: 700 !important;
}
.rc-header__sub {
  font-size: 14px;
  color: var(--rc-text-muted);
  margin: 0;
}
.rc-header__sub a {
  color: var(--rc-gold);          /* was --rc-olive (green) — switched to brand gold */
  text-decoration: underline;
  font-weight: 400 !important;
  transition: color 0.2s;
}
.rc-header__sub a:hover {
  color: #5f4a0e;                 /* darker gold hover — base is now #856713, so hover goes deeper */
}

.rc-carousel {
  position: relative;
}

.rc-track {
  display: flex;
  gap: 20px;
  padding: 0 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.rc-track::-webkit-scrollbar {
  display: none;
}
@media (min-width: 768px) {
  .rc-track {
    padding: 0 64px;
  }
}

.rc-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 320px;
  width: 300px;
  min-width: 300px;
  background: var(--rc-card-bg);
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  scroll-snap-align: start;
  flex-shrink: 0;
  transition: box-shadow 0.3s;
}
@media (min-width: 640px) {
  .rc-card {
    width: 340px;
    min-width: 340px;
    padding: 28px;
  }
}
.rc-card:hover {
  box-shadow: 0 6px 24px rgba(0,0,0,0.1);
}

.rc-card__quote {
  position: absolute;
  top: 20px;
  right: 20px;
  font-family: var(--rc-font-serif);
  font-size: 48px;
  line-height: 1;
  color: var(--rc-quote);
  user-select: none;
  pointer-events: none;
}

.rc-card__header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}
.rc-card__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  flex-shrink: 0;
}
.rc-card__name {
  font-family: 'Jost', system-ui, sans-serif;
  font-size: 14px;
  font-weight: 600 !important;
  line-height: 1.3;
  margin: 0;
}
.rc-card__occasion {
  font-family: 'Jost', system-ui, sans-serif;
  font-size: 12px;
  font-weight: 500;
  color: var(--rc-text-muted);
  margin: 2px 0 0;
}

.rc-card__stars {
  display: flex;
  gap: 2px;
  margin-bottom: 14px;
}
.rc-card__stars svg {
  width: 18px;
  height: 18px;
  fill: var(--rc-star);
  color: var(--rc-star);
}

.rc-card__text {
  /* Plain Jost (was Cormorant Garamond italic) — cleaner, matches the site UI */
  font-family: 'Jost', system-ui, sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 17px;
  line-height: 1.5;
  color: #3a342c;
  flex: 1;
  margin: 0;
}

.rc-card__highlight {
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid var(--rc-border);
  display: flex;
  align-items: center;
  gap: 8px;
}
.rc-card__highlight-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--rc-gold);   /* was --rc-olive (green) — switched to brand gold */
  flex-shrink: 0;
}
.rc-card__highlight-text {
  font-family: 'Jost', system-ui, sans-serif;
  font-size: 13px;
  font-weight: 400 !important;
  color: var(--rc-gold);        /* was --rc-olive (green) — switched to brand gold */
}

.rc-arrow {
  display: none;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #f1f1ef;
  border: 1px solid var(--rc-arrow-border);
  align-items: center;
  justify-content: center;
  box-shadow: 0 3px 12px rgba(0,0,0,0.10);
  cursor: pointer;
  transition: all 0.2s;
  padding: 0;
}
@media (min-width: 768px) {
  .rc-arrow {
    display: flex;
  }
}
.rc-arrow:hover {
  box-shadow: 0 4px 16px rgba(0,0,0,0.14);
  background: #e8e8e5;
}
.rc-arrow:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}
.rc-arrow--prev { left: 8px; }
.rc-arrow--next { right: 8px; }
@media (min-width: 1024px) {
  .rc-arrow--prev { left: 16px; }
  .rc-arrow--next { right: 16px; }
}
.rc-arrow svg {
  width: 20px;
  height: 20px;
  color: #444;
  stroke: #444;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.rc-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 28px;
}
.rc-dot {
  height: 8px;
  border-radius: 4px;
  border: none;
  padding: 0;
  cursor: pointer;
  transition: all 0.3s;
  background: var(--rc-dot-inactive);
  width: 8px;
}
.rc-dot:hover {
  background: var(--rc-dot-inactive-hover);
}
.rc-dot--active {
  width: 24px;
  background: var(--rc-gold);
}

.rc-footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px;
  margin-top: 28px;
  gap: 16px;
}
@media (min-width: 640px) {
  .rc-footer {
    flex-direction: row;
  }
}
.rc-footer__left {
  display: flex;
  align-items: center;
  gap: 10px;
}
.rc-footer__avatars {
  display: flex;
}
.rc-footer__mini-avatar {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: 700;
  color: #fff;
  border: 2px solid var(--rc-bg);
  margin-left: -8px;
}
.rc-footer__mini-avatar:first-child {
  margin-left: 0;
}
.rc-footer__text {
  font-size: 14px;
  color: var(--rc-text-muted);
}
.rc-footer__text strong {
  color: var(--rc-text);
  font-weight: 400 !important;
}
.rc-footer__badge {
  display: flex;
  align-items: center;
  gap: 6px;
  background: var(--rc-olive);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 999px;
}
.rc-footer__badge svg {
  width: 14px;
  height: 14px;
  fill: #fff;
  color: #fff;
}
