    /* === Base banner style === */
    .glass-banner {
      position: fixed;
      bottom: 30px;
      right: 30px;
      background: #9c5c3b;
      backdrop-filter: blur(15px);
      border-radius: 16px;
      box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
      padding: 16px 24px;
      font-family: 'Segoe UI', sans-serif;
      color: #282828;
      display: flex;
      align-items: center;
      justify-content: space-between;
      cursor: pointer;
      z-index: 9999;
      transition: all 1.8s ease;
      overflow: hidden;
      max-width: 360px;
      min-height: 60px;
      border: 1px solid rgba(255, 255, 255, 0.3);
      animation: bannerFadeIn 2s ease 0.6s both;
    }

    /* Hover effect for banner */
    .glass-banner:hover {
      box-shadow: 0 16px 48px rgba(0, 0, 0, 0.45);
      transform: translateY(-2px);
    }

    /* Shimmer effect for banner */
    .glass-banner::after {
      content: "";
      position: absolute;
      top: 0;
      left: -75%;
      width: 50%;
      height: 100%;
      background: linear-gradient(120deg, transparent, rgba(255,255,255,0.15), transparent);
      transform: skewX(-20deg);
      animation: shimmer 5.5s infinite;
      pointer-events: none;
      border-radius: inherit;
    }

    /* Banner content container */
    .banner-content {
      display: flex;
      align-items: center;
      flex-grow: 1;
    }

    /* Flower icon styling */
    .flower-icon {
      width: 32px;
      height: 32px;
      margin-right: 14px;
      /* animation: rotateFlower 10s linear infinite; */
      flex-shrink: 0;
      transition: all 0.8s ease;
    }

    /* Banner text styling */
    .banner-text {
      font-size: 16px;
      font-weight: 600;
      color: #282828;
      transition: opacity 1s ease, width 1.5s ease;
      white-space: nowrap;
      overflow: hidden;
    }

    /* Close button styling */
    .close-banner {
      font-size: 18px;
      margin-left: 10px;
      color: #282828;
      cursor: pointer;
      flex-shrink: 0;
      transition: opacity 1s ease;
    }

    /* Close button hover effect */
    .close-banner:hover {
      color: #282828;
    }

    /* Minimized state styles */
    .glass-banner.minimized {
      max-width: 52px;
      min-height: 52px;
      width: 52px;
      height: 52px;
      padding: 0;
      border-radius: 50%;
      justify-content: center;
      align-items: center;
      position: fixed;
      transition: all 2s ease;
      display: flex;
    }

    /* Hide text and close button when minimized */
    .glass-banner.minimized .banner-text,
    .glass-banner.minimized .close-banner {
      opacity: 0;
      width: 0;
      pointer-events: none;
      margin: 0;
    }

    /* Center content when minimized */
    .glass-banner.minimized .banner-content {
      display: flex;
      justify-content: center;
      align-items: center;
      width: 100%;
      height: 100%;
      margin: 0;
      padding: 0;
    }
    
    /* Adjust flower icon when minimized */
    .glass-banner.minimized .flower-icon {
      position: relative;
      left: -1px; /* Fine-tuned adjustment */
      transform: none;
      width: 32px;
      height: 32px;
      margin: 0;
      / * animation: rotateFlower 10s linear infinite; */
    }

    /* Banner fade-in animation */
    @keyframes bannerFadeIn {
      0% {
        opacity: 0;
        transform: scale(0.85);
      }
      100% {
        opacity: 1;
        transform: scale(1);
      }
    }

    /* Flower rotation animation */
    @keyframes rotateFlower {
      from { transform: rotate(0deg); }
      to { transform: rotate(360deg); }
    }

    /* Shimmer effect animation */
    @keyframes shimmer {
      0% { left: -75%; }
      100% { left: 125%; }
    }