
    /* Ensure popup overlay is flex container for centering */
    #valentine-fomo-popup {
      display: none !important;
      align-items: center !important;
      justify-content: center !important;
    }
    
    #valentine-fomo-popup.show {
      display: flex !important;
      align-items: center !important;
      justify-content: center !important;
    }
    
    /* Centering for the popup content */
    #valentine-fomo-popup > div {
      position: relative;
      top: auto !important;
      left: auto !important;
      right: auto !important;
      bottom: auto !important;
      transform: none !important;
      margin: auto !important;
    }
    
    @keyframes valentineGlow {
      0%, 100% {
        box-shadow: 0 20px 60px rgba(255, 23, 68, 0.6), 0 0 40px rgba(255, 105, 180, 0.5);
      }
      50% {
        box-shadow: 0 20px 60px rgba(233, 30, 99, 0.8), 0 0 50px rgba(255, 228, 233, 0.7);
      }
    }
    
    @keyframes float {
      0%, 100% {
        transform: translateY(0px);
      }
      50% {
        transform: translateY(-10px);
      }
    }
    
    @keyframes swing {
      0%, 100% {
        transform: rotate(0deg);
      }
      25% {
        transform: rotate(15deg);
      }
      75% {
        transform: rotate(-15deg);
      }
    }
    
    @keyframes urgencyPulse {
      0%, 100% {
        transform: scale(1);
      }
      50% {
        transform: scale(1.05);
      }
    }
    
    /* Mobile Responsive Styles for Valentine's Popup */
    @media (max-width: 768px) {
      #valentine-fomo-popup > div {
        padding: 30px 20px !important;
        width: 95% !important;
        max-height: 90vh !important;
        border-radius: 15px !important;
      }
      
      #valentine-fomo-popup h2 {
        font-size: 22px !important;
      }
      
      #valentine-fomo-popup .valentine-icons {
        font-size: 40px !important;
        margin-bottom: 15px !important;
      }
      
      #valentine-fomo-popup p {
        font-size: 15px !important;
      }
      
      #valentine-fomo-popup .urgency-badge {
        font-size: 15px !important;
        padding: 12px !important;
      }
      
      #valentine-fomo-popup .decorative-icon {
        font-size: 30px !important;
      }
    }
    
    @media (max-width: 480px) {
      #valentine-fomo-popup > div {
        padding: 25px 15px !important;
        width: 95% !important;
        max-height: 88vh !important;
        border-radius: 12px !important;
      }
      
      #valentine-fomo-popup h2 {
        font-size: 20px !important;
        margin-bottom: 12px !important;
      }
      
      #valentine-fomo-popup .valentine-icons {
        font-size: 35px !important;
        margin-bottom: 12px !important;
      }
      
      #valentine-fomo-popup #valentine-country-flag {
        font-size: 30px !important;
        margin-bottom: 8px !important;
      }
      
      #valentine-fomo-popup p {
        font-size: 14px !important;
      }
      
      #valentine-fomo-popup p strong {
        font-size: 15px !important;
      }
      
      #valentine-fomo-popup .urgency-badge {
        font-size: 14px !important;
        padding: 10px !important;
      }
      
      #valentine-fomo-popup .decorative-icon {
        font-size: 25px !important;
      }
      
      #valentine-close-btn {
        width: 30px !important;
        height: 30px !important;
        font-size: 18px !important;
        top: 10px !important;
        right: 10px !important;
      }
      
      #valentine-fomo-popup > div > div[style*="border-left"] {
        padding: 15px !important;
      }
    }
    
    @media (max-width: 360px) {
      #valentine-fomo-popup > div {
        padding: 20px 12px !important;
        width: 92% !important;
        max-height: 85vh !important;
      }
      
      #valentine-fomo-popup h2 {
        font-size: 18px !important;
      }
      
      #valentine-fomo-popup .valentine-icons {
        font-size: 32px !important;
      }
      
      #valentine-fomo-popup p {
        font-size: 13px !important;
      }
      
      #valentine-fomo-popup .urgency-badge {
        font-size: 13px !important;
      }
      
      #valentine-close-btn {
        width: 28px !important;
        height: 28px !important;
        font-size: 16px !important;
      }
    }
    
    /* Smooth scrolling for popup content */
    #halloween-fomo-popup > div {
      -webkit-overflow-scrolling: touch;
      scrollbar-width: thin;
      scrollbar-color: #DC143C #0a3d0a;
    }
    
    #halloween-fomo-popup > div::-webkit-scrollbar {
      width: 8px;
    }
    
    #halloween-fomo-popup > div::-webkit-scrollbar-track {
      background: rgba(10, 61, 10, 0.5);
      border-radius: 10px;
    }
    
    #halloween-fomo-popup > div::-webkit-scrollbar-thumb {
      background: #DC143C;
      border-radius: 10px;
    }
    
    #halloween-fomo-popup > div::-webkit-scrollbar-thumb:hover {
      background: #FF1744;
    }
    
    /* Handle very short screens */
    @media (max-height: 600px) {
      #valentine-fomo-popup > div {
        max-height: 85vh !important;
        padding: 20px 15px !important;
      }
      
      #valentine-fomo-popup .valentine-icons {
        font-size: 35px !important;
        margin-bottom: 10px !important;
      }
      
      #valentine-fomo-popup h2 {
        font-size: 20px !important;
        margin-bottom: 10px !important;
      }
    }
    
    /* Prevent scrolling on body when popup is shown */
    body.popup-open {
      overflow: hidden;
    }
    
    /* =====================================================
       FIX: Stacked/Wrapped layout for Product Tokens
       No horizontal scroll needed
       ===================================================== */
    .cart-item-product-type {
      display: block !important;
      width: 100% !important;
      overflow: visible !important;
      pointer-events: auto !important;
      position: relative !important;
      padding: 8px 0 4px 0 !important;
      margin: 4px 0 !important;
      background: transparent !important;
    }
    
    /* Hide scrollbar - not needed */
    .cart-item-product-type::-webkit-scrollbar {
      display: none !important;
      height: 0 !important;
    }
    
    .cart-product-tokens {
      display: flex !important;
      flex-direction: row !important;
      flex-wrap: wrap !important;
      width: 100% !important;
      min-width: unset !important;
      gap: 8px !important;
      padding-right: 0 !important;
      pointer-events: auto !important;
    }
    
    .cart-product-token {
      flex: 1 1 calc(50% - 4px) !important;
      min-width: 0 !important;
      max-width: calc(50% - 4px) !important;
      pointer-events: auto !important;
      touch-action: manipulation !important;
      -webkit-tap-highlight-color: transparent !important;
      user-select: none !important;
      -webkit-user-select: none !important;
    }
    
    /* No scroll hint needed */
    .cart-item-product-type::before {
      display: none !important;
    }
    
    /* Mobile adjustments */
    @media (max-width: 768px) {
      .cart-item-product-type {
        padding: 6px 0 4px 0 !important;
      }
      
      .cart-product-tokens {
        gap: 6px !important;
      }
      
      .cart-product-token {
        flex: 1 1 calc(50% - 3px) !important;
        max-width: calc(50% - 3px) !important;
        padding: 6px 8px !important;
        font-size: 10px !important;
      }
      
      .cart-product-token .token-header {
        font-size: 11px !important;
      }
      
      .cart-product-token .token-size,
      .cart-product-token .token-delivery,
      .cart-product-token .token-info {
        font-size: 9px !important;
      }
      
      .cart-product-token .token-price {
        font-size: 12px !important;
      }
    }
  