  ::-webkit-scrollbar {
            width: 10px;
        }

        ::-webkit-scrollbar-track {
            background: transparent;
        }

        ::-webkit-scrollbar-thumb {
            background-color: #e8b3d0;
            border-radius: 10px;
            border: 3px solid transparent;
        }

        html {
            scrollbar-width: thin;
            scrollbar-color: #e8b3d0 transparent;
        }

        .gradient-gold {
            background: linear-gradient(to bottom, #fceef5 0%, #f9e3f0 25%, #f4ddec 50%, #f0c0d8 75%, #e8b3d0 100%);
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .product-card {
            width: 100%;
            height: 420px;
            display: flex;
            flex-direction: column;
        }

        .product-img-container {
            height: 280px;
            overflow: hidden;
        }

        .product-img-container img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .product-info {
            flex: 1;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            padding: 1rem;
        }

        .cart-float {
            position: fixed;
            bottom: 30px;
            right: 30px;
            z-index: 999;
        }

        .cart-float .badge {
            position: absolute;
            top: -8px;
            right: -8px;
            font-size: 0.65rem;
            padding: 0.25rem 0.5rem;
        }