/** Shopify CDN: Minification failed

Line 298:1 Unexpected "`"

**/
/* Base Styles */
.facebook-reviews-section {
  width: 100%;
}

.reviews-container {
  margin: 0 auto;
  padding: 10px;
}

.reviews-title {
  text-align: center;
  letter-spacing: var(--letter-spacing-heading);
  font-weight: var(--font-weight-bold);
  margin-bottom: 4px;
}

.title-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 30px;
}

/* Facebook Badge Styles */
.facebook-views-badge {
  display: inline-flex !important;
  align-items: center !important;
  padding: 4px 12px !important;
  background-color: #1877F2 !important;
  border-radius: 999px !important;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif !important;
  font-size: 10.1px !important;
  color: white !important;
  position: relative !important;
  border: 1px solid transparent !important;
  background-clip: padding-box !important;
  margin-top: 12px;
}

.facebook-views-badge::before {
  content: none !important;
}

.facebook-icon {
  margin-right: 8px !important;
}

.facebook-text {
  letter-spacing: var(--letter-spacing-body);
  font-weight: var(--font-weight-regular);
}

#facebook-counter {
  font-weight: var(--font-weight-semibold);
  margin-right: -2px;
}

/* Grid Layout */
.reviews-grid {
  display: flex;
  flex-wrap: wrap;
}

.reviews-column {
  flex: 0 0 50%;
  padding: 0 5px;
  display: flex;
  flex-direction: column;
}

/* Review Item Styles */
.review-item {
  display: flex;
  width: 100%;
}

.review-content-wrapper {
  flex-grow: 1;
}

.profile-pic {
  overflow: hidden;
  margin-right: 10px;
  flex-shrink: 0;
  border-radius: 50%;
}

[dir="rtl"] .profile-pic {
  margin-left: 10px;
}

.profile-pic img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.review-card {
  border-radius: 10px;
  padding: 12px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
  width: 100%;
  margin-bottom: 4px;
  height: auto;
  overflow: hidden;
}

.reviewer-info {
  margin-bottom: 3px;
}

.reviewer-name {
  font-weight: var(--font-weight-bold) !important;
  font-size: 13px;
}

.review-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.review-time {
  font-size: 11px;
  text-align: right;
}

.review-content {
  font-size: 13px;
  line-height: 1.3;
  padding: 0px;
  word-wrap: break-word;
  margin-top: 2px;
  margin-bottom: 2px;
  letter-spacing: var(--letter-spacing-body);
}

.review-actions {
  display: flex;
  font-size: 12px;
  padding-left: 5px;
}

.review-action {
  margin-right: 15px;
  cursor: pointer;
  font-weight: var(--font-weight-semibold);
}

/* Responsive Styles - Desktop */
@media (min-width: 768px) {
  .reviews-column {
    flex: 0 0 33.333%;
  }
  
  .desktop-only {
    display: flex;
  }
  
  .mobile-only {
    display: none;
  }
}

/* --- MODIFIED MOBILE SECTION --- */
@media (max-width: 767px) {
  .desktop-only {
    display: none;
  }
  
  .mobile-only {
    display: block;
  }
  
  /* CHANGE 1: Force columns to stack vertically into a single column */
  .reviews-grid {
    flex-direction: column;
  }

  .reviews-column {
    /* Each column now takes full width, so they stack */
    flex: 0 0 100%;
  }
  
  /* CHANGE 2: Hide all reviews by default on mobile */
  .review-item {
    display: none;
  }

  /* CHANGE 3: Show only the first 2 reviews from EACH column */
  /* Since the columns are stacked, this will look like a single list of 4 */
  .reviews-column .review-item:nth-child(1),
  .reviews-column .review-item:nth-child(2) {
    display: flex;
  }

  /* REMOVED original mobile distribution logic */
  /* .reviews-column:nth-child(1) .review-item:nth-child(3n) { display: flex; } */
  /* .reviews-column:nth-child(2) .review-item:nth-child(3n) { display: flex; } */
}
/* --- END OF MODIFIED SECTION --- */

@media (max-width: 768px) {
  .facebook-views-badge {
    font-size: 9.5px !important;
    padding: 3px 10px !important;
  }
  
  .facebook-icon {
    width: 11px !important;
    height: 11px !important;
    margin-right: 7px !important;
  }
}

/* Small mobile devices */
@media (max-width: 474px) {
  .reviews-grid {
    margin: 0 -3px;
  }
  
  /* Ensure single column layout persists */
  .reviews-column {
    flex: 0 0 100%; 
    padding: 0 8px;
  }
  
  .review-item {
    margin-bottom: 5px;
  }
  
  .review-card {
    padding: 10px;
    border-radius: 8px;
  }
  
  .reviewer-name {
    font-size: 11px;
  }
  
  .review-time {
    font-size: 9px;
  }
  
  .review-content {
    font-size: 11px;
    line-height: 1.2;
  }
  
  .review-actions {
    font-size: 10px;
    padding-left: 2px;
  }
  
  .review-action {
    margin-right: 8px;
  }
}

/* Very small mobile devices */
@media (max-width: 400px) {
  /* Ensure single column layout persists */
  .reviews-column {
    flex: 0 0 100%; 
  }
  
  .reviews-container {
    padding: 10px;
  }
  
  .review-card {
    padding: 8px;
    border-radius: 6px;
  }
  
  .reviewer-name {
    font-size: 11px;
  }
  
  .review-time {
    font-size: 9px;
  }
  
  .review-content {
    font-size: 10px;
    line-height: 1.3;
  }
  
  .review-actions {
    font-size: 10px;
  }
}```