body {
            background-color: #f9f9ff;
            font-family: 'Be Vietnam Pro', sans-serif;
            color: #111c2c;
        }
        .glass-card {
            background: rgba(255, 255, 255, 0.8);
            backdrop-filter: blur(12px);
            border: 1px solid rgba(255, 255, 255, 0.3);
        }
        .freshness-badge {
            font-family: 'Noto Serif', serif;
            background: #9efa61;
            color: #0a2100;
        }
        .product-card-shadow {
            box-shadow: 0 4px 20px -2px rgba(0, 136, 204, 0.08);
        }
        .transition-soft {
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }
        .cart-sidebar {
            transition: transform 0.3s ease-in-out;
        }
        .cart-sidebar.closed {
            transform: translateX(100%);
        }
