.about-hero {
  padding: 120px 20px 80px;
  text-align: center;
}

.about-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: 48px;
  letter-spacing: 1px;
}

.about-hero p {
  margin-top: 12px;
  font-size: 12px;
  letter-spacing: 2px;
  opacity: 0.7;
}

.about-intro {
  margin-top: 80px;
}

.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.intro-grid img {
  width: 100%;
  border-radius: 12px;
}

.black-box {
  background: #000;
  height: 280px;
  border-radius: 12px;
}

.intro-text h3 {
  font-family: 'Playfair Display', serif;
  font-size: 26px;
  margin-top: 20px;
}

.about-story {
  margin: 80px auto;
  max-width: 800px;
  text-align: center;
}

.about-story p {
  margin-bottom: 20px;
  line-height: 1.7;
}

.about-values {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 24px;
}

.value-card {
  padding: 28px;
  border: 1px solid #eee;
  border-radius: 14px;
  transition: all 0.3s ease;
}

.value-card:hover,
.value-card.active {
  background: #fff7e6;
  transform: translateY(-6px);
}

.team {
  margin: 100px auto;
}

.team h2 {
  font-family: 'Playfair Display', serif;
  margin-bottom: 40px;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 30px;
}

.team-card {
  text-align: center;
  transition: all 0.35s ease;
}

.team-card img {
  width: 100%;
  border-radius: 16px;
}

.team-card:hover {
  transform: translateY(-10px);
}

.team-card span {
  font-size: 13px;
  opacity: 0.6;
}

.about-cta {
  margin: 100px auto;
}

.cta-box {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 30px;
  background: #f5f5f5;
  padding: 40px;
  border-radius: 20px;
  align-items: center;
}

.cta-box img {
  width: 100%;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .intro-grid,
  .about-values,
  .team-grid,
  .cta-box {
    grid-template-columns: 1fr;
  }

  .about-hero h1 {
    font-size: 34px;
  }
}
.testimonials {
  padding: 120px 0 160px;
  background: #f6f6f6;
  position: relative;
}

.testimonials h2 {
  font-family: 'Playfair Display', serif;
  margin-bottom: 60px;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.testimonial-card {
  background: #fff;
  padding: 30px;
  border-radius: 20px;
  transition: all 0.35s ease;
}

.testimonial-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 50px rgba(0,0,0,0.08);
}

.stars {
  color: #f4c430;
  margin-bottom: 15px;
}

.user {
  display: flex;
  align-items: center;
  margin-top: 25px;
  gap: 12px;
}

.user img {
  width: 42px;
  height: 42px;
  border-radius: 50%;
}

.user span {
  font-size: 13px;
  opacity: 0.6;
}

/* fade into footer */
.section-fade {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 120px;
  background: linear-gradient(to bottom, transparent, #111);
}
.footer {
  background: #111;
  color: #ccc;
  padding: 100px 0 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  gap: 40px;
}

.footer h5 {
  color: #fff;
  margin-bottom: 20px;
}

.footer a {
  display: block;
  margin-bottom: 10px;
  color: #aaa;
  transition: 0.3s;
}

.footer a:hover {
  color: #f4c430;
}

.footer-brand img {
  width: 140px;
  margin-bottom: 20px;
}

.socials span {
  display: inline-block;
  width: 36px;
  height: 36px;
  border: 1px solid #333;
  border-radius: 50%;
  margin-right: 8px;
}

.footer-bottom {
  border-top: 1px solid #333;
  margin-top: 60px;
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  font-size: 13px;
}

/* mobile */
@media (max-width: 900px) {
  .testimonial-grid,
  .footer-grid,
  .footer-bottom {
    grid-template-columns: 1fr;
    flex-direction: column;
    text-align: center;
  }
}


/* Cart  */

.cart-icon {
  position: relative;
  font-size: 20px;
  cursor: pointer;
}

.cart-badge {
  position: absolute;
  top: -6px;
  right: -8px;
  background: #f4c430;
  color: #111;
  font-size: 11px;
  font-weight: 600;
  padding: 2px 6px;
  border-radius: 50%;
  min-width: 18px;
  text-align: center;
}

.cart-badge {
  transition: transform 0.2s ease;
}

.cart-badge.bump {
  transform: scale(1.2);
}