        @import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Poppins:wght@500;600;700&display=swap');

        * {
            font-family: 'Inter', system-ui, sans-serif;
        }
        h1,
        h2,
        h3 {
            font-family: 'Poppins', sans-serif;
        }

        ::-webkit-scrollbar {
            width: 0;
            height: 0;
        }

        @keyframes pulseDot {
            0%,
            100% {
                transform: scale(1);
                opacity: 1;
            }
            50% {
                transform: scale(1.35);
                opacity: 0.6;
            }
        }

        @keyframes slideIn {
            from {
                transform: translateY(-16px);
                opacity: 0;
            }
            to {
                transform: translateY(0);
                opacity: 1;
            }
        }

        @keyframes slideInUp {
            from {
                transform: translateY(20px);
                opacity: 0;
            }
            to {
                transform: translateY(0);
                opacity: 1;
            }
        }

        @keyframes progress {
            from {
                width: 0%;
            }
            to {
                width: 100%;
            }
        }

        @keyframes fadeIn {
            from {
                opacity: 0;
                transform: scale(0.95);
            }
            to {
                opacity: 1;
                transform: scale(1);
            }
        }

        .animate-slide-in {
            animation: slideIn 0.35s ease-out;
        }
        .animate-slide-in-up {
            animation: slideInUp 0.4s ease-out;
        }
        .animate-progress {
            animation: progress 5s linear forwards;
        }
        .animate-fade-in {
            animation: fadeIn 0.3s ease-out;
        }

        .grid-rows-0fr {
            grid-template-rows: 0fr;
        }
        .grid-rows-1fr {
            grid-template-rows: 1fr;
        }

        .transition-grid {
            transition: grid-template-rows 0.3s ease-out, opacity 0.3s ease-out;
        }

        .toast-transition {
            transition: transform 0.3s ease-out, opacity 0.3s ease-out;
        }

        .bg-gradient-brand {
            background: linear-gradient(135deg, #8B5CF6, #3B82F6);
        }

        .bg-gradient-brand-hover {
            background: linear-gradient(135deg, #7C3AED, #2563EB);
        }

        .border-glass {
            border-color: rgba(255, 255, 255, 0.08);
        }

        .text-shadow {
            text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
        }

        .product-card {
            transition: border-color 0.2s ease;
        }
        .product-card:hover {
            border-color: rgba(47, 47, 64, 1);
        }
        .product-card.expanded {
            border-color: rgba(139, 92, 246, 0.3);
        }

        .chevron-rotate {
            transition: transform 0.2s ease;
        }
        .chevron-rotate.open {
            transform: rotate(180deg);
        }

        .badge-best {
            background: linear-gradient(135deg, #FBBF24, #F97316);
        }

        .bg-card {
            background: #16161E;
        }
        .bg-body {
            background: #0A0A0F;
        }
        .border-card {
            border-color: #23232F;
        }
        .border-card-hover {
            border-color: #2F2F40;
        }

        .text-muted {
            color: rgba(255, 255, 255, 0.6);
        }
        .text-muted-light {
            color: rgba(255, 255, 255, 0.35);
        }
        .text-muted-dark {
            color: rgba(255, 255, 255, 0.25);
        }

        .bg-icon-box {
            background: rgba(255, 255, 255, 0.15);
        }

        .rating-star {
            fill: #FBBF24;
            color: #FBBF24;
        }

        .live-dot {
            animation: pulseDot 1.8s infinite;
        }

        .btn-copy {
            transition: transform 0.15s ease;
        }
        .btn-copy:active {
            transform: scale(0.98);
        }

        .testimonial-dot {
            transition: all 0.3s ease;
        }
        .testimonial-dot.active {
            width: 24px;
            background: white;
        }
        .testimonial-dot.inactive {
            width: 6px;
            background: rgba(255, 255, 255, 0.2);
        }
        .testimonial-dot.inactive:hover {
            background: rgba(255, 255, 255, 0.3);
        }

        .product-image {
            object-fit: cover;
            width: 100%;
            height: 100%;
        }
        .avatar-image {
            object-fit: cover;
            width: 100%;
            height: 100%;
        }

        .modal-gallery-image {
            object-fit: contain;
            max-height: 70vh;
            width: 100%;
        }

        .modal-overlay {
            background: rgba(0, 0, 0, 0.85);
            backdrop-filter: blur(8px);
        }

        .gallery-dot {
            transition: all 0.3s ease;
        }
        .gallery-dot.active {
            background: white;
            width: 24px;
        }
        .gallery-dot.inactive {
            background: rgba(255, 255, 255, 0.3);
            width: 8px;
        }
        .gallery-dot.inactive:hover {
            background: rgba(255, 255, 255, 0.6);
        }

        .view-btn {
            transition: all 0.2s ease;
        }
        .view-btn:hover {
            background: rgba(255, 255, 255, 0.2);
        }
