        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Montserrat', sans-serif;
            color: #333;
            overflow-x: hidden;
        }

        h1,
        h2,
        h3,
        h4 {
            font-family: 'Playfair Display', serif;
        }

        .text-primary-pink {
            color: #E83B8E;
        }

        .bg-primary-pink {
            background-color: #E83B8E;
        }

        .border-primary-pink {
            border-color: #E83B8E;
        }

        .text-secondary-gold {
            color: #D4AF37;
        }

        .bg-gradient-fashion {
            background: linear-gradient(135deg, #f9c5d1 0%, #fceef3 100%);
        }

        .product-card {
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .product-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
        }

        .size-badge {
            display: inline-block;
            padding: 2px 8px;
            border-radius: 12px;
            font-size: 0.75rem;
            font-weight: 600;
            margin: 2px;
        }

        .whatsapp-float {
            animation: pulse 2s infinite;
        }

        @keyframes pulse {
            0% {
                box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
            }

            70% {
                box-shadow: 0 0 0 10px rgba(37, 211, 102, 0);
            }

            100% {
                box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
            }
        }

        .category-filter.active {
            background-color: #E83B8E;
            color: white;
        }

        .nav-link {
            position: relative;
        }

        .nav-link::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: -5px;
            left: 0;
            background-color: #E83B8E;
            transition: width 0.3s ease;
        }

        .nav-link:hover::after {
            width: 100%;
        }

        .swiper-pagination-bullet-active {
            background-color: #E83B8E !important;
        }

        .swiper-button-next,
        .swiper-button-prev {
            color: #E83B8E !important;
        }

        @media (max-width: 768px) {
            #product-modal .bg-white {
                margin: 1rem;
                max-height: 85vh;
            }

            #product-modal .grid {
                grid-template-columns: 1fr !important;
            }

            .modalSwiper img {
                height: 300px !important;
                max-height: 40vh;
            }

            #close-modal {
                position: absolute;
                top: 10px;
                right: 15px;
                background: rgba(255, 255, 255, 0.9);
                width: 40px;
                height: 40px;
                border-radius: 50%;
                display: flex;
                align-items: center;
                justify-content: center;
                z-index: 100;
                font-size: 24px;
            }

            .product-swiper {
                position: relative;
            }

            .product-swiper .swiper-button-next,
            .product-swiper .swiper-button-prev {
                display: none;
            }

            .product-swiper .swiper-pagination {
                bottom: 10px !important;
            }
        }

        /* Animações Suaves para Filtros */
        .category-filter {
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            transform-origin: center;
        }

        .category-filter:hover {
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(232, 59, 142, 0.2);
        }

        .category-filter.active {
            transform: scale(1.05);
            box-shadow: 0 6px 16px rgba(232, 59, 142, 0.3);
        }

        /* Animações para Filtragem de Produtos */
        .product-card {
            transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
            opacity: 1;
            transform: translateY(0);
        }

        .product-card.hidden {
            opacity: 0;
            transform: translateY(20px);
            pointer-events: none;
            position: absolute;
            visibility: hidden;
        }

        .product-card.fade-out {
            opacity: 0;
            transform: scale(0.95);
        }

        .product-card.fade-in {
            animation: fadeInUp 0.5s ease forwards;
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(20px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
