/* =============================================
   REVIEWS PAGE — reviews.css
   ============================================= */

.reviews-page {
  padding-top: 70px;
  min-height: 100vh;
  background: linear-gradient(135deg, #fdf8f0 0%, #fff 50%, #fdf5f5 100%);
  font-family: 'Montserrat', sans-serif; /* Added text style */
}

.reviews-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 4rem 2rem 5rem;
}

/* Header */
.reviews-header {
  text-align: center;
  margin-bottom: 3rem;
}

.reviews-header h2 {
  font-family: 'Libre Baskerville', serif; /* Added text style */
  font-size: clamp(2rem, 5vw, 3rem);
  color: #1e1a14;
  letter-spacing: 0.06em;
  margin-bottom: 0.8rem;
  font-weight: 700;
}

.stars-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  margin-bottom: 0.7rem;
}

.star-icon {
  color: #f59e0b;
  font-size: 1.3rem;
}

.stars-label {
  margin-left: 0.6rem;
  color: #6b7280;
  font-size: 0.9rem;
  font-family: 'Montserrat', sans-serif; /* Added text style */
}

.reviews-header p {
  font-family: 'Montserrat', sans-serif; /* Added text style */
  color: #6b7280;
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
  font-size: 0.95rem;
}

/* Grid */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

/* Card */
.review-card {
  background: #fff;
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 4px 24px rgba(0,0,0,0.06);
  border: 1px solid #fde68a33;
  transition: box-shadow 0.3s;
}

.review-card:hover {
  box-shadow: 0 8px 40px rgba(0,0,0,0.1);
}

/* Customer info */
.reviewer-info {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.reviewer-avatar {
  width: 62px;
  height: 62px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #fde68a;
  flex-shrink: 0;
}


.reviewer-avatar-placeholder {
      width: 48px;
      height: 48px;
      border-radius: 50%;
      background-color: #c9b99a;
      color: #fff;
      font-size: 0.85rem;
      font-weight: 700;
      letter-spacing: 0.05em;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      user-select: none;
    }

.reviewer-name {
  font-family: 'Libre Baskerville', serif; /* Updated text style */
  font-weight: 700;
  color: #1e1a14;
  margin-bottom: 0.15rem;
  font-size: 1.15rem;
}

.reviewer-date {
  font-family: 'Montserrat', sans-serif; /* Added text style */
  font-size: 0.78rem;
  color: #9ca3af;
}

/* Stars */
.review-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 0.9rem;
}

.review-stars .star-icon {
  font-size: 1rem;
}

/* Review text */
.review-text {
  font-family: 'Montserrat', sans-serif; /* Added text style */
  color: #4b5563;
  line-height: 1.75;
  margin-bottom: 1.1rem;
  font-size: 0.92rem;
}

/* Product tag */
.review-product-tag {
  font-family: 'Montserrat', sans-serif; /* Added text style */
  display: inline-block;
  padding: 4px 12px;
  background: linear-gradient(90deg, #fef3c7, #fce7f3);
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 500;
  color: #4b5563;
}

/* CTA */
.reviews-cta {
  text-align: center;
  margin-top: 3rem;
}

.reviews-cta button {
  padding: 14px 40px;
  background: linear-gradient(90deg, #b45309, #e11d48);
  color: #fff;
  border: none;
  border-radius: 999px;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  font-family: 'Montserrat', sans-serif; /* Swapped Jost for Montserrat */
  font-weight: 600;
  text-transform: uppercase;
  transition: opacity 0.3s, box-shadow 0.3s;
  box-shadow: 0 4px 16px rgba(180,83,9,0.25);
  cursor: pointer;
}

.reviews-cta button:hover {
  opacity: 0.88;
  box-shadow: 0 6px 24px rgba(180,83,9,0.35);
}

footer {
    background-color:#f9f9f7;
    color:black;
    padding: 40px 20px 20px 20px;
    font-family: "Libre Baskerville", serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
}

/* ... Rest of your footer and media queries remain identical ... */

.footerLogoContainer {
  display: flex;
  flex-direction: column;
  align-items: center;    
  width: 100%;           
  margin-bottom: 30px;
}

.footerLogo {
  width: 180px;
}

.footer-columns {
  display: flex;
  flex-direction: column;
  gap: 32px;
  max-width: 1100px;
  margin: 0 auto;
  padding-bottom: 32px;
 border-bottom:1px solid #66666639;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-heading {
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

footer a {
  text-decoration: none;
  color: black;
  font-size: 14px;
  transition: color 0.3s ease;
  font-family: 'Montserrat', sans-serif;
  display: flex;
  align-items: center;
  gap: 10px;
}

footer a:hover {
  color: #a55b2d;
}

.footer-bottom {
  max-width: 1100px;
  margin: 25px auto 0;
  text-align: center;
}

.footer-bottom p {
  font-size: 12px;
  color: #666;
}

.footer-bottom a {
  display: inline;
  margin-left: 10px;
  font-size: 12px;
}

@media (min-width: 768px) {
 .footer-columns {
        display: grid;
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 700px) {
  .reviews-grid {
    grid-template-columns: 1fr;
  }

  .reviews-inner {
    padding: 2.5rem 1.2rem 3.5rem;
  }

  .review-card {
    padding: 1.4rem;
  }
}