/* RESET & BASE STYLES */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'azo-sans-web', sans-serif;
  color: #1a1a1a;
  background-color: #ffffff;
  line-height: 1.5;
}

/* BRANDING & LOGO */
.logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #ffffff;
}

.logo img {
  max-width: 280px;
}

.logo span {
  font-size: 2.2rem;
  font-weight: 800;
  letter-spacing: 2px;
}

.flower-icon {
  width: 44px;
  height: 44px;
}

/* HERO SECTION */
.hero-section {
  position: relative;
  background: linear-gradient(135deg, #F15623 0%, #F15623 50%, #ffa800 100%);
  color: #ffffff;
  padding: 50px 8% 80px;
  overflow: hidden;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  margin-top: 40px;
  margin-bottom: 12px;
  letter-spacing: -0.5px;
}

.hero-subtitle {
  font-size: 1.05rem;
  font-weight: 400;
  margin-bottom: 40px;
  max-width: 650px;
  opacity: 0.95;
}

.store-card-container {
    display: flex;
    column-gap: 20px;
}

/* HERO STORE CARD */
.store-card {
  display: flex;
  background-color: #ffffff;
  border-radius: 4px;
  overflow: hidden;
  max-width: 580px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
  color: #333333;
}

.store-image {
  width: 45%;
  flex-shrink: 0;
}

.store-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.store-details {
  padding: 10px 28px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.store-details h2 {
  font-size: 1.5rem;
  color: #e65c00;
  font-weight: 700;
  margin-bottom: 8px;
}

.store-details address {
  font-style: normal;
  font-size: 0.85rem;
  color: #666666;
}

.store-phone {
  font-size: 0.82rem;
  color: #666666;
  text-decoration: none;
  margin-bottom: 18px;
  display: inline-block;
}

.btn-shop {
  background-color: #72aee6;
  color: #ffffff;
  text-decoration: none;
  padding: 10px 24px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  text-align: center;
  align-self: flex-start;
  transition: background-color 0.2s ease;
  width: 100%;
  border: none;
   cursor: pointer;
}

.btn-shop:hover {
  background-color: #5596d4;
}

/* DECORATIVE SVG PATTERN */
.bg-pattern {
  position: absolute;
  right: -8%;
  top: -10%;
  width: 650px;
  height: 650px;
  pointer-events: none;
  z-index: 1;
}

.bg-pattern svg {
  width: 100%;
  height: 100%;
}

/* REVIEWS / TESTIMONIALS SECTION */
.reviews-section {
  padding: 90px 8%;
  background-color: #ffffff;
}

.reviews-container {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
}

.reviews-heading {
  font-size: 2.8rem;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -1px;
  min-width: 300px;
}

.testimonial-carousel {
  position: relative;
  flex: 1;
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.quote-icon {
  font-family: Georgia, serif;
  font-size: 4rem;
  color: #e65c00;
  line-height: 1;
  margin-top: -10px;
}

.slides-wrapper {
  position: relative;
  min-height: 160px;
  width: 100%;
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}

.slide.active {
  position: relative;
  opacity: 1;
  visibility: visible;
}

.testimonial-text {
  font-size: 1.35rem;
  font-weight: 400;
  color: #333333;
  line-height: 1.45;
  margin-bottom: 24px;
}

.testimonial-author {
  font-style: normal;
  font-size: 0.95rem;
  font-weight: 800;
  color: #e65c00;
  letter-spacing: 0.5px;
}

/* CAROUSEL DOTS */
.carousel-dots {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-left: 20px;
}

.dot {
  width: 10px;
  height: 10px;
  border: 1.5px solid #1a1a1a;
  border-radius: 50%;
  cursor: pointer;
  transition: background-color 0.2s ease, border-color 0.2s ease;
}

.dot.active {
  background-color: #e65c00;
  border-color: #e65c00;
}

/* FOOTER */
.footer {
  background-color: #000000;
  padding: 40px 8%;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-buttons {
  display: flex;
  gap: 16px;
}

.btn-footer-primary,
.btn-footer-secondary {
  padding: 12px 28px;
  border-radius: 30px;
  font-size: 0.85rem;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.2s ease;
  border: none;
  cursor: pointer;
}

.btn-footer-primary {
  background-color: #ffffff;
  color: #000000;
}

.btn-footer-primary:hover {
  background-color: #e6e6e6;
}

.btn-footer-secondary {
  background-color: transparent;
  color: #ffffff;
  border: 1.5px solid #ffffff;
}

.btn-footer-secondary:hover {
  background-color: #ffffff;
  color: #000000;
}

.footer .logo img {
  max-width: 180px;
}

/* RESPONSIVE BREAKPOINTS */
@media (max-width: 992px) {
  .hero-title {
    font-size: 2.8rem;
  }

  .store-card-container {
    flex-direction: column;
    row-gap: 20px;
  }

  .store-card {
    max-width: none;
  }

  .reviews-container {
    flex-direction: column;
    align-items: flex-start;
    gap: 40px;
  }

  .reviews-heading {
    font-size: 2rem;
  }

  .reviews-heading br {
    display: none;
  }

  .carousel-dots {
    flex-direction: row;
    margin-left: 0;
    margin-top: 20px;
  }

  .testimonial-carousel {
    flex-wrap: wrap;
  }
}

@media (max-width: 640px) {
  .hero-title {
    font-size: 2.2rem;
  }

  .store-card {
    flex-direction: column;
  }

  .store-image {
    width: 100%;
    height: 180px;
  }

  .footer-container {
    flex-direction: column;
    gap: 30px;
    align-items: flex-start;
  }

  .footer-buttons {
    flex-direction: column;
    width: 100%;
  }

  .btn-footer-primary, .btn-footer-secondary {
    text-align: center;
    width: 100%;
  }
}