 body {
      font-family: 'Open Sans', sans-serif;
      color: #333;
    }

    h1,
    h2,
    h3,
    h4 {
      font-family: 'Playfair Display', serif;
    }

    .hero {
      background: linear-gradient(rgba(73, 208, 209, 0.30), rgba(73, 208, 209, 0.25)), url('../assets/hero-banner.webp') no-repeat center center/cover;
      color: white;
      height: 90vh;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
    }

    .hero h1 {
      font-size: 3rem;
      font-weight: 700;
    }

    .hero p {
      font-size: 1.2rem;
    }

    .section-title {
      margin-bottom: 40px;
    }

    .btn-primary {
      background-color: #49d0d1;
      border-color: #49d0d1;
    }

    .btn-primary:hover {
      background-color: #49d0d1;
      border-color: #54d3d3;
    }

    .navbar-nav .nav-link.active,
    .navbar-nav .nav-link.show {
      color: #49d0d1 !important;
      font-weight: 600;
    }

    .navbar-expand-lg .navbar-nav .nav-link {
      color: #363744;
    }

    .awb-logo {
      height: 80px;
      width: 100%;
    }

    .hero-banner {
      position: relative;
      min-height: 70vh;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .hero-banner::before {
      content: '';
      position: absolute;
      inset: 0;
      background-color: rgba(73, 208, 209, 0.4);
      /* overlay matching #49d0d1 */
    }

    .hero-banner .container {
      position: relative;
      z-index: 1;
    }

    .hero-banner h1,
    .hero-banner p {
      text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.4);
    }

    .collection-card {
      background: #ffffff;
      border-radius: 12px;
      overflow: hidden;
      height: 100%;
      box-shadow: 0 4px 14px rgba(0, 0, 0, 0.05);
      transition: transform 0.3s ease;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }

    .collection-card:hover {
      transform: translateY(-5px);
    }

    .collection-card .img-wrapper {
      position: relative;
      overflow: hidden;
      height: 250px;
    }

    .collection-card img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.4s ease;
    }

    .collection-card:hover img {
      transform: scale(1.1);
    }

    .collection-card .view-btn {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      background-color: #49d0d1;
      color: #fff;
      padding: 10px 18px;
      border-radius: 30px;
      text-decoration: none;
      opacity: 0;
      transition: opacity 0.3s ease;
    }

    .collection-card:hover .view-btn {
      opacity: 1;
    }

    .collection-card .content {
      padding: 20px;
      text-align: center;
    }

    .collection-card .content h5 {
      font-size: 1.1rem;
      margin-bottom: 0.5rem;
      font-weight: bold;
    }

    .collection-card .content p {
      font-size: 0.95rem;
      color: #555;
      display: -webkit-box;
      -webkit-line-clamp: 3;
      /* Max 3 lines */
      -webkit-box-orient: vertical;
      overflow: hidden;
      text-overflow: ellipsis;
    }

    .testimonial-item {
      max-width: 700px;
      margin: auto;
      padding: 2rem 1rem;
      background: white;
      border-radius: 10px;
      box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
      transition: all 0.3s ease-in-out;
    }

    .testimonial-item:hover {
      transform: translateY(-5px);
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    }

    .newsletter-section {
      background-size: cover;
      background-position: center;
      background-repeat: no-repeat;
      height: 300px;
      position: relative;
      padding: 2rem;
    }

    .newsletter-section .overlay {
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: #49d0d1;
      z-index: 1;
    }

    .newsletter-section .content {
      z-index: 2;
      max-width: 700px;
    }

    .why-shop {
      background-color: #f9f9f9;
    }

    .feature-card {
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .feature-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 0 20px rgba(0, 0, 0, 0.07);
    }

    .icon-wrapper {
      background-color: #e0f7f7;
      width: 60px;
      height: 60px;
      margin: 0 auto;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .text-accent {
      color: #49d0d1;
    }

    .btn-learn-more {
      background-color: #49d0d1;
      color: #fff;
      padding: 0.75rem 1.5rem;
      font-weight: 600;
      border: none;
      border-radius: 50px;
      transition: all 0.3s ease;
      box-shadow: 0 8px 20px rgba(73, 208, 209, 0.3);
      text-transform: uppercase;
      letter-spacing: 0.5px;
    }

    .btn-learn-more:hover {
      background-color: #3cb3b4;
      color: #fff;
      transform: scale(1.05);
      box-shadow: 0 12px 24px rgba(73, 208, 209, 0.5);
    }

    .btn-learn-more:focus {
      outline: none;
      box-shadow: 0 0 0 4px rgba(73, 208, 209, 0.4);
    }
    #map-section iframe {
      border-radius: 10px;
      border: none;
    }

    #map-section a:hover {
      color: #49d0d1;
    }
    .text-highlight {
      color: #49d0d1;
    }

    #visit-us .contact-link {
      color: #333;
      font-weight: 500;
      transition: all 0.3s ease;
    }

    #visit-us .contact-link:hover {
      color: #49d0d1;
      text-decoration: underline;
    }

    #visit-us {
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    #visit-us:hover .rounded-4 {
      transform: translateY(-5px);
      box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
    }
    .footer-link {
      color: #f1f1f1;
      text-decoration: none;
      font-weight: 500;
      transition: all 0.3s ease;
    }

    .footer-link:hover {
      color: #49d0d1;
      text-decoration: underline;
    }

    .footer-section {
      font-size: 0.95rem;
      border-top: 2px solid #49d0d1;
    }