.flyer-fab-image {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 85px;
    height: 120px;
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
    cursor: pointer;
    z-index: 9990;
    overflow: hidden;
    border: 3px solid #fff;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    animation: flyer-float 4s ease-in-out infinite;
  }

  .flyer-fab-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .flyer-badge {
    position: absolute;
    top: 6px;
    right: 6px;
    background: #4678ee;
    color: #fff;
    font-size: 10px;
    font-weight: 800;
    padding: 2px 7px;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
    letter-spacing: 0.5px;
  }

  .flyer-fab-image:hover {
    transform: scale(1.15) rotate(5deg) translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
    border-color: #4678ee;
  }

  @keyframes flyer-float {

    0%,
    100% {
      transform: translateY(0) rotate(0);
    }

    50% {
      transform: translateY(-15px) rotate(-3deg);
    }
  }

  /* Modal Overlay */
  .flyer-overlay {
    position: fixed;
    inset: 0;
    background: rgba(10, 20, 45, 0.65);
    /* Sleek darker backdrop matching sample image */
    backdrop-filter: blur(5px);
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
  }

  .flyer-modal {
    position: relative;
    background: #fff;
    width: 100%;
    max-width: 850px;
    /* Aligned width with screenshot */
    max-height: 90vh;
    border-radius: 20px;
    /* Rounded corners as in sample image */
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.35);
    transform: scale(0.9) translateY(20px);
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  }

  .flyer-overlay.is-open {
    display: flex;
  }

  .flyer-overlay.is-open .flyer-modal {
    transform: scale(1) translateY(0);
    opacity: 1;
  }

  .flyer-content {
    overflow-y: auto;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
  }

  .flyer-close {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #ffffff;
    color: #64748b;
    /* Gray cross like in sample image */
    border: none;
    font-size: 20px;
    font-weight: 300;
    cursor: pointer;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    transition: all 0.2s ease;
    line-height: 1;
  }

  .flyer-close:hover {
    background: #f1f5f9;
    color: #0f172a;
    transform: scale(1.05);
  }

  .flyer-item {
    display: none;
  }

  .flyer-item.active {
    display: block;
  }

  .flyer-item img {
    width: 100%;
    height: auto;
    display: block;
  }

  .flyer-info {
    padding: 20px 24px 24px;
    text-align: center;
    background: #fff;
  }

  .flyer-info h3 {
    margin: 0 0 6px;
    color: #0f172a;
    /* Dark text */
    font-size: 1.25rem;
    font-weight: 700;
  }

  .flyer-info p {
    margin: 0;
    color: #64748b;
    /* Soft gray description */
    line-height: 1.5;
    font-size: 0.875rem;
  }

  .flyer-nav {
    display: flex;
    justify-content: center;
    gap: 15px;
    padding: 0 20px 24px;
    background: #fff;
  }

  .flyer-nav button {
    background: #f1f5f9;
    border: none;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    cursor: pointer;
    font-size: 18px;
    color: #4678ee;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .flyer-nav button:hover {
    background: #e2e8f0;
    color: #3b66d1;
    transform: translateY(-2px);
  }

  @media (max-width: 640px) {
    .flyer-fab span {
      display: none;
    }

    .flyer-fab {
      padding: 15px;
      border-radius: 50%;
    }

    .flyer-info {
      padding: 16px 20px 20px;
    }

    .flyer-modal {
      max-width: 90vw;
    }
  }