.tdw-grw {
  --tdw-gold: #d7b56d;
  --tdw-gold-dark: #b89242;
  --tdw-dark: #111;
  --tdw-text: #1d1d1d;
  --tdw-muted: #777;
  --tdw-border: rgba(215, 181, 109, 0.88);
  --tdw-shadow: 0 7px 16px rgba(0, 0, 0, 0.045);
  --tdw-gap: 18px;

  width: 100%;
  max-width: min(980px, 100%);
  min-width: 0;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 250px minmax(0, 1fr);
  gap: 28px;
  align-items: center;
  overflow: visible;
  color: var(--tdw-text);
  font-family: inherit;
}

.tdw-grw,
.tdw-grw * {
  box-sizing: border-box;
}

.tdw-grw-theme-luxury {
  --tdw-gold: #d8b365;
}

.tdw-grw-theme-minimal {
  --tdw-border: #e5e5e5;
  --tdw-shadow: none;
}

/* Summary */
.tdw-grw-summary {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.tdw-grw-photo-rotator {
  position: relative !important;
  display: block !important;
  width: 64px !important;
  height: 64px !important;
  flex: 0 0 64px !important;
  overflow: hidden !important;
  border-radius: 5px !important;
  background: #f3f3f3 !important;
}

.tdw-grw-photo-rotator img.tdw-grw-photo {
  position: absolute !important;
  inset: 0 !important;
  display: block !important;
  width: 100% !important;
  height: 100% !important;
  max-width: none !important;
  max-height: none !important;
  margin: 0 !important;
  padding: 0 !important;
  border-radius: 5px !important;
  object-fit: cover !important;
  opacity: 0 !important;
  transition: opacity 0.45s ease !important;
}

.tdw-grw-photo-rotator img.tdw-grw-photo.is-active {
  opacity: 1 !important;
}

.tdw-grw-summary-body {
  min-width: 0;
}

.tdw-grw-business {
  display: block;
  color: var(--tdw-dark);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.2;
}

.tdw-grw-stars {
  margin-top: 3px;
  color: #ffc400;
  font-size: 22px;
  line-height: 1;
  letter-spacing: 1px;
}

.tdw-grw-stars-small {
  margin-top: 11px;
  font-size: 18px;
}

.tdw-grw-count {
  margin-top: 5px;
  color: #333;
  font-size: 13px;
}

.tdw-grw-write {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 12px;
  padding: 10px 18px;
  border: 1px solid var(--tdw-gold-dark);
  border-radius: 999px;
  background: #fff;
  color: #111;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  transition: background 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.tdw-grw-write:hover {
  background: #fffaf0;
  box-shadow: 0 5px 12px rgba(0, 0, 0, 0.045);
  color: #111;
  transform: translateY(-1px);
}

/* Carousel */
.tdw-grw-slider,
.tdw-grw-viewport,
.tdw-grw-track {
  min-width: 0;
  max-width: 100%;
}

.tdw-grw-slider {
  position: relative;
  overflow: visible;
}

.tdw-grw-viewport {
  overflow: hidden;
  padding: 10px 8px 24px;
  margin: 0;
}

.tdw-grw-track {
  display: flex;
  gap: var(--tdw-gap);
  touch-action: pan-y;
  transition: transform 0.35s ease;
  will-change: transform;
}

.tdw-grw-card {
  position: relative;
  flex: 0 0 calc((100% - (var(--tdw-slides, 2) - 1) * var(--tdw-gap)) / var(--tdw-slides, 2));
  min-width: 0;
  min-height: 196px;
  padding: 20px 20px 30px;
  overflow: hidden;
  border: 1px solid var(--tdw-border);
  border-radius: 20px;
  background: #fff;
  box-shadow: var(--tdw-shadow);
  transition: box-shadow 0.22s ease, transform 0.22s ease;
}

.tdw-grw-card:hover {
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.06);
  transform: translateY(-4px);
}

.tdw-grw-card-head {
  display: flex;
  align-items: center;
  gap: 12px;
}

.tdw-grw-avatar,
.tdw-grw-avatar-img {
  width: 39px !important;
  height: 39px !important;
  max-width: 39px !important;
  max-height: 39px !important;
  flex: 0 0 39px !important;
  overflow: hidden !important;
  border-radius: 50% !important;
  aspect-ratio: 1 / 1 !important;
  box-sizing: border-box !important;
  line-height: 1 !important;
  padding: 0 !important;
  margin: 0 !important;
}

.tdw-grw-avatar {
  display: grid !important;
  place-items: center !important;
  background: #df3e9b;
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  text-align: center !important;
  text-transform: uppercase;
}

.tdw-grw-avatar-img {
  display: block !important;
  object-fit: cover !important;
  background: #eee;
}

.tdw-grw-card:nth-child(2n) .tdw-grw-avatar {
  background: #f07a1d;
}

.tdw-grw-card:nth-child(3n) .tdw-grw-avatar {
  background: #6f8fde;
}

.tdw-grw-author strong {
  display: block;
  color: #111;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.2;
}

.tdw-grw-author span {
  display: block;
  margin-top: 2px;
  color: var(--tdw-muted);
  font-size: 12px;
}

.tdw-grw-google {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 24px !important;
  height: 24px !important;
  min-width: 24px !important;
  margin-left: auto !important;
  overflow: visible !important;
  border: 0 !important;
  text-decoration: none !important;
  cursor: pointer !important;
  transition: filter 0.18s ease, transform 0.18s ease;
  clip-path: none !important;
}

.tdw-grw-google:hover {
  filter: saturate(1.08);
  transform: translateY(-1px);
}

.tdw-grw-google svg {
  display: block !important;
  width: 20px !important;
  height: 20px !important;
  max-width: 20px !important;
  max-height: 20px !important;
  overflow: visible !important;
  clip-path: none !important;
}

.tdw-grw-card p,
.tdw-grw-review-text {
  margin: 12px 0 0;
  color: #222;
  font-size: 14px;
  line-height: 1.48;
}

.tdw-grw-review-text {
  transition: opacity 0.18s ease;
}

.tdw-grw-read {
  display: inline-block;
  appearance: none !important;
  -webkit-appearance: none !important;
  margin-top: 10px;
  padding: 0 !important;
  border: 0 !important;
  background: transparent !important;
  color: var(--tdw-gold-dark) !important;
  font: inherit !important;
  font-size: 12px !important;
  line-height: 1.25 !important;
  text-align: left !important;
  text-decoration: none;
  cursor: pointer !important;
}

.tdw-grw-read:hover {
  color: #9b742a !important;
  text-decoration: underline !important;
}

.tdw-grw-read:focus-visible {
  outline: 2px solid var(--tdw-gold-dark) !important;
  outline-offset: 3px !important;
  border-radius: 4px !important;
}

.tdw-grw-card.is-expanded {
  min-height: auto !important;
}

.tdw-grw-card.is-expanded .tdw-grw-review-text {
  display: block !important;
  overflow: visible !important;
  white-space: normal !important;
  -webkit-line-clamp: unset !important;
}

.tdw-grw-quote {
  position: absolute;
  right: 18px;
  bottom: -9px;
  color: var(--tdw-gold);
  font-family: Georgia, serif;
  font-size: 66px;
  line-height: 1;
}

/* Navigation */
.tdw-grw-nav {
  position: absolute;
  top: 50%;
  z-index: 5;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 36px !important;
  height: 36px !important;
  min-width: 36px !important;
  min-height: 36px !important;
  padding: 0 0 6px !important;
  overflow: hidden !important;
  border: 1px solid var(--tdw-gold-dark) !important;
  border-radius: 50% !important;
  background: #fff !important;
  box-shadow: 0 5px 14px rgba(0, 0, 0, 0.07) !important;
  color: var(--tdw-gold-dark) !important;
  font-size: 25px !important;
  line-height: 1 !important;
  cursor: pointer;
  transform: translateY(-50%);
  transition: background 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease, color 0.18s ease, transform 0.18s ease !important;
}

.tdw-grw-nav:hover {
  border-color: var(--tdw-gold-dark) !important;
  background: var(--tdw-gold-dark) !important;
  box-shadow: 0 7px 16px rgba(184, 146, 66, 0.18) !important;
  color: #fff !important;
}

.tdw-grw-nav:active {
  border-color: #9b742a !important;
  background: #9b742a !important;
  color: #fff !important;
  transform: translateY(-50%) scale(0.96) !important;
}

.tdw-grw-prev {
  left: -36px !important;
  right: auto !important;
}

.tdw-grw-next {
  right: -36px !important;
  left: auto !important;
}

.tdw-grw-dots {
  position: absolute;
  right: 0;
  bottom: 1px;
  left: 0;
  display: flex;
  justify-content: center;
  gap: 7px;
}

.tdw-grw-dot {
  width: 7px;
  height: 7px;
  border-radius: 99px;
  background: #ddd;
  cursor: pointer;
}

.tdw-grw-dot.is-active {
  width: 18px;
  background: var(--tdw-gold-dark);
}

.tdw-grw-error {
  max-width: 980px;
  margin: 20px auto;
  padding: 14px 18px;
  border-left: 4px solid #d63638;
  background: #fff;
  color: #222;
}

/* Alternate themes */
.tdw-grw-theme-minimal .tdw-grw-card {
  border-color: #eee;
  border-radius: 14px;
}

.tdw-grw-theme-minimal .tdw-grw-write {
  border-color: #ddd;
}

.tdw-grw-theme-light .tdw-grw-card {
  background: #fffdf8;
}

.tdw-grw-theme-dark {
  --tdw-gold: #d7a93f;
  --tdw-gold-dark: #c99a34;
  --tdw-dark: #fff;
  --tdw-text: #f5f1e8;
  --tdw-muted: #bdb7aa;
  --tdw-border: rgba(215, 169, 63, 0.58);
  --tdw-shadow: 0 8px 18px rgba(0, 0, 0, 0.18);

  padding: 30px;
  border-radius: 14px;
  background: linear-gradient(135deg, #111 0%, #1c2121 100%);
  color: var(--tdw-text);
}

.tdw-grw-theme-dark .tdw-grw-business,
.tdw-grw-theme-dark .tdw-grw-count,
.tdw-grw-theme-dark .tdw-grw-author strong,
.tdw-grw-theme-dark .tdw-grw-card p {
  color: #fff;
}

.tdw-grw-theme-dark .tdw-grw-card {
  border-color: rgba(215, 169, 63, 0.48);
  background: rgba(20, 24, 24, 0.92);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.16);
}

.tdw-grw-theme-dark .tdw-grw-write,
.tdw-grw-theme-dark .tdw-grw-nav {
  border-color: rgba(215, 169, 63, 0.8) !important;
  background: rgba(17, 17, 17, 0.88) !important;
  color: #f2d28a !important;
}

.tdw-grw-theme-dark .tdw-grw-write:hover {
  background: #191919 !important;
  color: #fff !important;
}

.tdw-grw-theme-dark .tdw-grw-nav:hover {
  border-color: #d7a93f !important;
  background: #d7a93f !important;
  color: #111 !important;
}

.tdw-grw-theme-dark .tdw-grw-nav:active {
  border-color: #b98622 !important;
  background: #b98622 !important;
  color: #111 !important;
}

.tdw-grw-theme-dark .tdw-grw-read {
  color: #d7a93f !important;
}

.tdw-grw-theme-dark .tdw-grw-dot {
  background: #666;
}

.tdw-grw-theme-dark .tdw-grw-dot.is-active {
  background: #d7a93f;
}

/* Responsive */
@media (max-width: 1100px) {
  .tdw-grw-prev {
    left: -18px !important;
  }

  .tdw-grw-next {
    right: -18px !important;
  }
}

@media (max-width: 980px) {
  .tdw-grw {
    max-width: 760px;
    grid-template-columns: 220px minmax(0, 1fr);
  }
}

@media (min-width: 781px) and (max-width: 1024px) {
  .tdw-grw {
    --tdw-gap: 16px;
  }

  .tdw-grw-card {
    flex-basis: calc((100% - (var(--tdw-slides, 2) - 1) * var(--tdw-gap)) / var(--tdw-slides, 2));
  }
}

@media (max-width: 780px) {
  .tdw-grw {
    display: flex !important;
    flex-direction: column !important;
    width: 100% !important;
    max-width: 100% !important;
    margin-right: auto !important;
    margin-left: auto !important;
    padding: 0 18px !important;
    gap: 22px !important;
    overflow: hidden !important;
  }

  .tdw-grw-summary {
    width: 100% !important;
    max-width: 100% !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 10px !important;
    margin: 0 auto !important;
    text-align: center !important;
  }

  .tdw-grw-photo-rotator {
    width: 86px !important;
    height: 86px !important;
    flex: 0 0 86px !important;
  }

  .tdw-grw-business {
    max-width: 260px !important;
    margin: 0 auto !important;
    font-size: 18px !important;
  }

  .tdw-grw-stars {
    margin-top: 8px !important;
    font-size: 25px !important;
  }

  .tdw-grw-count {
    margin-top: 7px !important;
    font-size: 15px !important;
  }

  .tdw-grw-write {
    margin-top: 14px !important;
    padding: 12px 22px !important;
    font-size: 15px !important;
  }

  .tdw-grw-slider {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
    overflow: hidden !important;
  }

  .tdw-grw-viewport {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
    padding: 10px 10px 20px !important;
    overflow: hidden !important;
  }

  .tdw-grw-track {
    width: 100% !important;
    max-width: 100% !important;
    gap: 12px !important;
  }

  .tdw-grw-card {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 100% !important;
    min-height: 245px !important;
    flex: 0 0 100% !important;
    padding: 22px 22px 40px !important;
    border-radius: 18px !important;
  }

  .tdw-grw-card-head {
    align-items: flex-start !important;
  }

  .tdw-grw-author strong {
    font-size: 15px !important;
  }

  .tdw-grw-author span {
    font-size: 12px !important;
  }

  .tdw-grw-card p,
  .tdw-grw-review-text {
    display: -webkit-box !important;
    overflow: hidden !important;
    font-size: 15px !important;
    line-height: 1.5 !important;
    -webkit-box-orient: vertical !important;
    -webkit-line-clamp: 5 !important;
  }

  .tdw-grw-card.is-expanded .tdw-grw-review-text {
    display: block !important;
    overflow: visible !important;
    -webkit-line-clamp: unset !important;
  }

  .tdw-grw-google {
    width: 30px !important;
    height: 30px !important;
    min-width: 30px !important;
  }

  .tdw-grw-google svg {
    width: 22px !important;
    height: 22px !important;
    max-width: 22px !important;
    max-height: 22px !important;
  }

  .tdw-grw-nav {
    display: none !important;
  }

  .tdw-grw-dots {
    bottom: 4px !important;
  }
}

@media (max-width: 480px) {
  .tdw-grw {
    padding: 0 14px !important;
  }

  .tdw-grw-card {
    min-height: 260px !important;
    padding: 20px 20px 38px !important;
  }

  .tdw-grw-avatar,
  .tdw-grw-avatar-img {
    width: 44px !important;
    height: 44px !important;
    max-width: 44px !important;
    max-height: 44px !important;
    flex: 0 0 44px !important;
  }
}


/* TDW Reviews Center 1.2.0 accessibility */
.tdw-grw-dot {
  width: 9px;
  height: 9px;
  min-width: 9px;
  min-height: 9px;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 50% !important;
  background: rgba(184, 146, 66, 0.35) !important;
  cursor: pointer;
}
.tdw-grw-dot.is-active {
  background: var(--tdw-gold-dark) !important;
}
.tdw-grw-dot:focus-visible {
  outline: 2px solid var(--tdw-gold-dark) !important;
  outline-offset: 3px !important;
}
@media (prefers-reduced-motion: reduce) {
  .tdw-grw *,
  .tdw-grw *::before,
  .tdw-grw *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}

/* TDW Reviews Center 1.2.1: restore the historical oblong active indicator. */
.tdw-grw-dot {
  width: 7px !important;
  min-width: 7px !important;
  height: 7px !important;
  min-height: 7px !important;
  border-radius: 999px !important;
  transition: width 160ms ease, background-color 160ms ease !important;
}

.tdw-grw-dot.is-active {
  width: 18px !important;
  min-width: 18px !important;
  border-radius: 999px !important;
}

/* TDW Reviews Center 1.2.2: approved internal reviews and customer photos. */
.tdw-rc-summary-stack {
  flex-direction: column;
  align-items: stretch;
  gap: 12px;
}

.tdw-rc-summary-source {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  padding-bottom: 11px;
  border-bottom: 1px solid rgba(184, 146, 66, 0.2);
}

.tdw-rc-summary-source:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.tdw-rc-source-mark,
.tdw-rc-summary-favicon {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 42px !important;
  height: 42px !important;
  min-width: 42px !important;
  max-width: 42px !important;
  max-height: 42px !important;
  flex: 0 0 42px !important;
  overflow: hidden !important;
  border-radius: 10px !important;
  background: #fff !important;
  object-fit: cover !important;
}

.tdw-rc-source-mark svg {
  width: 24px !important;
  height: 24px !important;
}

.tdw-rc-source-internal {
  background: var(--tdw-gold-dark) !important;
  color: #fff !important;
  font-size: 21px;
  font-weight: 700;
}

.tdw-rc-summary-badge {
  display: inline-flex;
  margin-top: 9px;
  padding: 5px 9px;
  border-radius: 999px;
  background: rgba(184, 146, 66, 0.12);
  color: #74571f;
  font-size: 11px;
  font-weight: 700;
}

.tdw-rc-avatar-deterministic {
  background: hsl(var(--tdw-rc-avatar-hue, 215) 56% 48%) !important;
}

.tdw-rc-site-source {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 25px !important;
  height: 25px !important;
  min-width: 25px !important;
  margin-left: auto !important;
  overflow: hidden !important;
  border-radius: 7px !important;
  background: rgba(184, 146, 66, 0.12) !important;
  color: var(--tdw-gold-dark) !important;
  font-size: 14px;
  font-weight: 700;
}

.tdw-rc-site-source img {
  display: block !important;
  width: 100% !important;
  height: 100% !important;
  max-width: none !important;
  max-height: none !important;
  object-fit: cover !important;
}

.tdw-rc-card-internal {
  min-height: 255px;
  padding-bottom: 38px;
}

.tdw-rc-verified-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-top: 10px;
  padding: 4px 8px;
  border-radius: 999px;
  background: rgba(31, 132, 74, 0.1);
  color: #166534;
  font-size: 11px;
  font-weight: 700;
}

.tdw-rc-card-appreciations {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin-top: 10px;
}

.tdw-rc-card-appreciations span {
  display: inline-flex;
  padding: 4px 7px;
  border-radius: 999px;
  background: rgba(184, 146, 66, 0.1);
  color: #6f5118;
  font-size: 10px;
  font-weight: 700;
  line-height: 1.2;
}

.tdw-rc-card-products {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin-top: 11px;
  padding-top: 10px;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.tdw-rc-card-products a,
.tdw-rc-card-products span {
  display: inline-flex;
  max-width: 100%;
  padding: 4px 7px;
  overflow: hidden;
  border-radius: 6px;
  background: #f6f6f6;
  color: #333;
  font-size: 10px;
  line-height: 1.25;
  text-decoration: none;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.tdw-rc-card-products a:hover {
  color: var(--tdw-gold-dark);
  text-decoration: underline;
}

.tdw-rc-experience-gallery {
  display: flex;
  gap: 6px;
  margin-top: 11px;
}

.tdw-rc-gallery-open {
  display: block !important;
  width: 48px !important;
  height: 48px !important;
  min-width: 48px !important;
  padding: 0 !important;
  overflow: hidden !important;
  border: 1px solid rgba(184, 146, 66, 0.35) !important;
  border-radius: 8px !important;
  background: #f2f2f2 !important;
  cursor: zoom-in !important;
}

.tdw-rc-gallery-open img {
  display: block !important;
  width: 100% !important;
  height: 100% !important;
  max-width: none !important;
  max-height: none !important;
  margin: 0 !important;
  object-fit: cover !important;
  transition: transform 180ms ease !important;
}

.tdw-rc-gallery-open:hover img {
  transform: scale(1.06);
}

.tdw-rc-gallery-open:focus-visible {
  outline: 2px solid var(--tdw-gold-dark) !important;
  outline-offset: 3px !important;
}

body.tdw-rc-lightbox-open {
  overflow: hidden !important;
}

.tdw-rc-lightbox[hidden] {
  display: none !important;
}

.tdw-rc-lightbox {
  position: fixed !important;
  inset: 0 !important;
  z-index: 999999 !important;
  display: grid !important;
  place-items: center !important;
  padding: 22px !important;
}

.tdw-rc-lightbox-backdrop {
  position: absolute !important;
  inset: 0 !important;
  background: rgba(0, 0, 0, 0.86) !important;
}

.tdw-rc-lightbox-dialog {
  position: relative !important;
  z-index: 1 !important;
  display: grid !important;
  grid-template-columns: 48px minmax(0, 1fr) 48px !important;
  align-items: center !important;
  width: min(100%, 1100px) !important;
  max-height: calc(100vh - 44px) !important;
  margin: 0 !important;
}

.tdw-rc-lightbox-dialog figure {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  min-width: 0 !important;
  max-height: calc(100vh - 44px) !important;
  margin: 0 !important;
}

.tdw-rc-lightbox-image {
  display: block !important;
  width: auto !important;
  height: auto !important;
  max-width: 100% !important;
  max-height: calc(100vh - 92px) !important;
  margin: 0 auto !important;
  border-radius: 10px !important;
  object-fit: contain !important;
}

.tdw-rc-lightbox-counter {
  margin-top: 10px !important;
  color: #fff !important;
  font-size: 13px !important;
  text-align: center !important;
}

.tdw-rc-lightbox-close,
.tdw-rc-lightbox-prev,
.tdw-rc-lightbox-next {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 42px !important;
  height: 42px !important;
  min-width: 42px !important;
  min-height: 42px !important;
  padding: 0 0 4px !important;
  border: 1px solid rgba(255, 255, 255, 0.5) !important;
  border-radius: 50% !important;
  background: rgba(0, 0, 0, 0.45) !important;
  color: #fff !important;
  font-size: 28px !important;
  line-height: 1 !important;
  cursor: pointer !important;
}

.tdw-rc-lightbox-close {
  position: absolute !important;
  top: -8px !important;
  right: 0 !important;
  z-index: 2 !important;
  font-size: 25px !important;
}

.tdw-rc-lightbox-prev {
  justify-self: start !important;
}

.tdw-rc-lightbox-next {
  justify-self: end !important;
}

.tdw-rc-lightbox-close:hover,
.tdw-rc-lightbox-prev:hover,
.tdw-rc-lightbox-next:hover {
  background: var(--tdw-gold-dark) !important;
}

.tdw-grw-theme-dark .tdw-rc-summary-source {
  border-bottom-color: rgba(255, 255, 255, 0.1);
}

.tdw-grw-theme-dark .tdw-rc-summary-badge,
.tdw-grw-theme-dark .tdw-rc-card-appreciations span {
  background: rgba(215, 169, 63, 0.14);
  color: #e4bd65;
}

.tdw-grw-theme-dark .tdw-rc-verified-badge {
  background: rgba(67, 185, 111, 0.12);
  color: #7ed99e;
}

.tdw-grw-theme-dark .tdw-rc-card-products {
  border-top-color: rgba(255, 255, 255, 0.1);
}

.tdw-grw-theme-dark .tdw-rc-card-products a,
.tdw-grw-theme-dark .tdw-rc-card-products span {
  background: rgba(255, 255, 255, 0.08);
  color: #e8e8e8;
}

@media (max-width: 780px) {
  .tdw-rc-summary-stack {
    width: 100% !important;
    max-width: 340px !important;
    align-items: stretch !important;
    text-align: left !important;
  }

  .tdw-rc-summary-source {
    justify-content: flex-start !important;
  }

  .tdw-rc-internal-summary {
    flex-direction: row !important;
    align-items: center !important;
    text-align: left !important;
  }

  .tdw-rc-card-internal {
    min-height: 285px !important;
  }

  .tdw-rc-lightbox {
    padding: 12px !important;
  }

  .tdw-rc-lightbox-dialog {
    grid-template-columns: 38px minmax(0, 1fr) 38px !important;
    width: 100% !important;
    max-height: calc(100vh - 24px) !important;
  }

  .tdw-rc-lightbox-image {
    max-height: calc(100vh - 76px) !important;
  }

  .tdw-rc-lightbox-close,
  .tdw-rc-lightbox-prev,
  .tdw-rc-lightbox-next {
    width: 36px !important;
    height: 36px !important;
    min-width: 36px !important;
    min-height: 36px !important;
  }
}
