  body {
      font-family: 'Inter', sans-serif;
      background-color: #f5f5f5;
      /* Light grey background */
  }

  .banner-slide {
      background-size: cover;
      background-position: center;
      transition: background-image 0.5s ease-in-out;
      /* Smooth transition for background image */
  }

  .icon-rotate {
      transition: transform 0.3s ease-in-out;
  }

  .icon-rotate.rotated {
      transform: rotate(180deg);
  }

  /* Modal styles */
  .modal {
      display: none;
      /* Hidden by default */
      position: fixed;
      /* Stay in place */
      z-index: 1000;
      /* Sit on top */
      left: 0;
      top: 0;
      width: 100%;
      /* Full width */
      height: 100%;
      /* Full height */
      overflow: auto;
      /* Enable scroll if needed */
      background-color: rgba(0, 0, 0, 0.4);
      /* Black w/ opacity */
      justify-content: center;
      align-items: center;
  }

  .modal-content {
      background-color: #fefefe;
      margin: auto;
      padding: 20px;
      border-radius: 8px;
      box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
      width: 90%;
      max-width: 400px;
      position: relative;
  }

  .close-button {
      position: absolute;
      top: 10px;
      right: 15px;
      color: #aaa;
      font-size: 28px;
      font-weight: bold;
      cursor: pointer;
  }

  .close-button:hover,
  .close-button:focus {
      color: black;
      text-decoration: none;
      cursor: pointer;
  }

  .stepper-control {
      display: flex;
      align-items: center;
      justify-content: space-between;
      width: 100px;
      /* Fixed width for stepper */
      border: 1px solid #ccc;
      border-radius: 5px;
      overflow: hidden;
  }

  .stepper-button {
      background-color: #f0f0f0;
      padding: 5px 10px;
      cursor: pointer;
      user-select: none;
      font-weight: bold;
      font-size: 1.2em;
      color: #333;
  }

  .stepper-button:hover {
      background-color: #e0e0e0;
  }

  .stepper-value {
      flex-grow: 1;
      text-align: center;
      font-weight: bold;
      padding: 5px 0;
  }

  @keyframes float {
      0% {
          transform: translateY(0px);
      }

      50% {
          transform: translateY(-10px);
      }

      100% {
          transform: translateY(0px);
      }
  }

  @keyframes pulse {
      0% {
          transform: scale(1);
      }

      50% {
          transform: scale(1.05);
      }

      100% {
          transform: scale(1);
      }
  }

  @keyframes shake {
      0% {
          transform: rotate(0deg);
      }

      25% {
          transform: rotate(5deg);
      }

      50% {
          transform: rotate(0deg);
      }

      75% {
          transform: rotate(-5deg);
      }

      100% {
          transform: rotate(0deg);
      }
  }

  .floating {
      animation: float 3s ease-in-out infinite;
  }

  .pulse {
      animation: pulse 2s infinite;
  }

  .shake {
      animation: shake 0.5s ease-in-out;
  }

  .popup-overlay {
      backdrop-filter: blur(8px);
  }

  .discount-badge {
      position: absolute;
      top: 0.5rem;
      left: 0.5rem;
      width: 60px;
      height: 60px;
      background: #FF0000;
      color: white;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: bold;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
      z-index: 20;
  }


  .glow-border {
      box-shadow: 0 0 15px rgba(254, 207, 10, 0.6);
  }

  @keyframes float {

      0%,
      100% {
          transform: translateY(0);
      }

      50% {
          transform: translateY(-10px);
      }
  }

  @keyframes pulse {

      0%,
      100% {
          transform: scale(1);
      }

      50% {
          transform: scale(1.05);
      }
  }

  @keyframes shake {

      0%,
      100% {
          transform: rotate(0deg);
      }

      25% {
          transform: rotate(5deg);
      }

      75% {
          transform: rotate(-5deg);
      }
  }

  .floating {
      animation: float 3s ease-in-out infinite;
  }

  .pulse {
      animation: pulse 2s infinite;
  }

  .shake {
      animation: shake 0.5s ease-in-out;
  }

  .popup-overlay {
      backdrop-filter: blur(8px);
  }

  .discount-badge {
      position: absolute;
      top: -15px;
      right: -15px;
      width: 50px;
      height: 50px;
      background: #FF0000;
      color: white;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: bold;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  }

  .glow-border {
      box-shadow: 0 0 15px rgba(254, 207, 10, 0.6);
  }

  @keyframes fade-in {
      from {
          opacity: 0;
          transform: translateY(10px);
      }

      to {
          opacity: 1;
          transform: translateY(0);
      }
  }

  .animate-fade-in {
      animation: fade-in 0.3s ease-out;
  }

  .autocomplete-results {
      position: absolute;
      background-color: white;
      z-index: 1000;
      width: 100%;
      max-height: 200px;
      overflow-y: auto;
      border: 1px solid #ddd;
      border-top: none;
      border-radius: 0 0 6px 6px;
  }

  .autocomplete-item {
      padding: 10px;
      cursor: pointer;
      font-size: 0.875rem;
  }

  .autocomplete-item:hover {
      background-color: #f0f0f0;
  }

  @keyframes goldenGlow {
      0% {
          box-shadow: 0 0 0px #FFD700;
      }

      50% {
          box-shadow: 0 0 15px #FFD700;
      }

      100% {
          box-shadow: 0 0 0px #FFD700;
      }
  }

  .animate-golden-glow {
      animation: goldenGlow 2s infinite;
  }

  @keyframes fadeIn {
      from {
          opacity: 0;
          transform: translateY(20px);
      }

      to {
          opacity: 1;
          transform: translateY(0);
      }
  }

  .animate-fade-in {
      animation: fadeIn 0.5s ease-out;
  }

  @keyframes slideUp {
      0% {
          opacity: 0;
          transform: translateY(20px);
      }

      100% {
          opacity: 1;
          transform: translateY(0);
      }
  }

  .animate-slide-up {
      animation: slideUp 0.4s ease-out;
  }

  @keyframes fadeInUp {
        from {
            opacity: 0;
            transform: translateY(20px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .animate-fade-in-up {
        animation: fadeInUp 0.8s ease-out both;
    }

    .delay-100 {
        animation-delay: 0.1s;
    }

    .delay-200 {
        animation-delay: 0.2s;
    }

    .delay-300 {
        animation-delay: 0.3s;
    }