.acr-wrapper {
  margin: 60px 0;
}

/* Force equal height slides */
.acr-swiper .swiper-wrapper {
  align-items: stretch;
}

.acr-swiper .swiper-slide {
  display: flex;
  height: auto;
}

.acr-card {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.acr-swiper .swiper-slide {
  height: auto;
  display: flex;
}

/* ===================== TOP BAR ===================== */

.acr-topbar {
  display: flex;
  align-items: center;
  gap: 25px;
  justify-content: center;
  margin-bottom: 60px;
  flex-wrap: wrap;
  text-align: left;
}

.acr-business-logo {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.acr-business-info h3 {
  margin: 0;
  font-size: 24px;
  font-weight: 700;
}

.acr-business-info h3 a {
  text-decoration: none;
  color: #111;
}

.acr-business-info h3 a:hover {
  color: #1a73e8;
}

.acr-rating-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 8px;
}

.acr-rating-number {
  font-size: 20px;
  font-weight: 600;
  color: #ff7a00;
}

.acr-stars {
  color: #f4b400;
  font-size: 18px;
}

.acr-review-count {
  margin: 6px 0 14px;
  color: #666;
  font-size: 14px;
}

/* Button */
.acr-review-btn {
  display: inline-block;
  padding: 10px 22px;
  background: #1a73e8;
  color: #fff;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 500;
  transition: 0.3s ease;
  box-shadow: 0 10px 25px rgba(26,115,232,0.3);
}

.acr-review-btn:hover {
  background: #1558b0;
  transform: translateY(-2px);
}

/* ===================== CARDS ===================== */

.acr-card {
  position: relative;
  background: #ffffff;
  padding: 30px;
  border-radius: 18px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: 0.3s ease;
}

.acr-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(0,0,0,0.1);
}

.acr-google-badge {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 20px;
  opacity: 0.8;
}

/* Header */
.acr-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 18px;
}

.acr-avatar {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  object-fit: cover;
}

.acr-avatar-fallback {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  background: #1a73e8;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 20px;
}

.acr-meta a {
  text-decoration: none;
  color: #222;
  font-weight: 600;
}

.acr-meta a:hover {
  color: #1a73e8;
}

.acr-card p {
  font-size: 15px;
  line-height: 1.7;
  color: #555;
  margin-top: auto;
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* ===================== SLIDER CONTROLS ===================== */

.swiper-button-next,
.swiper-button-prev {
  color: #1a73e8;
}

.swiper-pagination-bullet {
  background: #ccc;
  opacity: 1;
}

.swiper-pagination-bullet-active {
  background: #1a73e8;
}