:root {
            --primary-color: #4a1726;
            --primary-dark: #290813;
            --primary-light: #d39e7f;
            --accent-color: #efefef;
            --secondary-color: #5e646b;
            --text-dark: #2d3748;
            --text-light: #718096;
            --border-color: #e2e8f0;
            --success-color: #38a169;
            --danger-color: #e53e3e;
            --gold-color: #d4af37;
            --shadow-sm: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
            --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
            --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
            --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
            --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            --transition-fast: all 0.2s ease;
        }
        

        @keyframes containerEntrance {
            0% {
                opacity: 0;
                transform: translateY(40px) scale(0.95);
            }
            100% {
                opacity: 1;
                transform: translateY(0) scale(1);
            }
        }

        .text-center {
            padding: 60px 0 40px;
            position: relative;
            overflow: hidden;
        }
        
        .section-title {
            display: inline-block;
            position: relative;
            font-size: 2.5rem;
            font-weight: 800;
            color: var(--text-dark);
            animation: titleEntrance 1s ease-out 0.3s both;
        }
        
        @keyframes titleEntrance {
            0% {
                opacity: 0;
                transform: translateY(-30px);
            }
            100% {
                opacity: 1;
                transform: translateY(0);
            }
        }    
        .section-title span {
            position: relative;
            padding: 15px 40px;
                background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            
            border-image: linear-gradient(135deg, var(--primary-color), var(--gold-color)) 1;
            border-radius: 15px;
            box-shadow: 0 8px 25px rgba(139, 94, 94, 0.15);
        }
        
        .section-title::before,
        .section-title::after {
            content: '';
            position: absolute;
            top: 50%;
            width: 100px;
            height: 3px;
            background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
            animation: lineExpand 2s ease-in-out infinite;
        }
        
        .section-title::before {
            right: calc(100% + 20px);
        }
        
        .section-title::after {
            left: calc(100% + 20px);
        }
        
        @keyframes lineExpand {
            0%, 100% {
                transform: scaleX(0.8);
                opacity: 0.6;
            }
            50% {
                transform: scaleX(1);
                opacity: 1;
            }
        }
        
        .row {
            padding: 0 20px 0px;
            animation: gridEntrance 0.8s ease-out 0.5s both;
        }
        
        @keyframes gridEntrance {
            0% {
                opacity: 0;
                transform: translateY(20px);
            }
            100% {
                opacity: 1;
                transform: translateY(0);
            }
        }
        .product-item {
            border-radius: 16px !important;
            overflow: hidden;
            border: none !important;
            box-shadow: var(--shadow-md);
            transition: var(--transition);
            background: white;
            position: relative;
            height: 95%;
            display: flex;
            flex-direction: column;
            animation: cardEntrance 0.6s ease-out;
            animation-fill-mode: both;
        }
        
        @keyframes cardEntrance {
            0% {
                opacity: 0;
                transform: translateY(30px) scale(0.95);
            }
            100% {
                opacity: 1;
                transform: translateY(0) scale(1);
            }
        }
        
        .product-item:nth-child(1) { animation-delay: 0.1s; }
        .product-item:nth-child(2) { animation-delay: 0.2s; }
        .product-item:nth-child(3) { animation-delay: 0.3s; }
        .product-item:nth-child(4) { animation-delay: 0.4s; }
        .product-item:nth-child(5) { animation-delay: 0.5s; }
        .product-item:nth-child(6) { animation-delay: 0.6s; }
        .product-item:nth-child(7) { animation-delay: 0.7s; }
        .product-item:nth-child(8) { animation-delay: 0.8s; }
    
        .product-item:hover {
            transform: translateY(-15px) scale(1.02);
            box-shadow: 
                0 25px 50px rgba(139, 94, 94, 0.15),
                0 0 0 1px rgba(139, 94, 94, 0.1);
            z-index: 10;
        }
        
        /* .product-item::before {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(45deg, transparent, rgba(209, 156, 151, 0.03), transparent);
            z-index: -1;
            opacity: 0;
            transition: opacity 0.4s ease;
        } */
        
        .product-item:hover::before {
            opacity: 1;
        }
         
        .card-header {
            padding: 0 !important;
            border: none !important;
            background: none;
            position: relative;
            overflow: hidden;
            border-radius: 16px 16px 0 0 !important;
        }

        .card-header h2{
            color: var(--conf)!important;
        }
        
        .image-container {
            position: relative;
            overflow: hidden;
            aspect-ratio: 1/1;
            display: grid;
            place-items: center;
            padding: 20px;
        }
        
        .product-image {
            width: 100%;
            height: 100%;
            object-fit: contain;
            transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1), filter 0.4s ease;
            filter: brightness(0.95);
            transform-origin: center center;
        }
        
        .product-item:hover .product-image {
            transform: scale(1.15) rotate(2deg);
            filter: brightness(1);
        }
        
        .image-container::before {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.4), transparent);
            transform: translateX(-100%);
            transition: transform 0.8s ease;
            z-index: 1;
        }
        
        .product-item:hover .image-container::before {
            transform: translateX(100%);
        }
        
        .badge-sale {
            position: absolute;
            top: 15px;
            left: 15px;
            background: linear-gradient(135deg, var(--danger-color), #c53030);
            color: white;
            padding: 8px 15px;
            border-radius: 8px;
            font-weight: 700;
            font-size: 0.85rem;
            z-index: 2;
            box-shadow: 0 4px 15px rgba(229, 62, 62, 0.3);
            animation: badgePulse 2s infinite;
            transform: rotate(-5deg);
        }
        
        @keyframes badgePulse {
            0%, 100% {
                transform: rotate(-5deg) scale(1);
                box-shadow: 0 4px 15px rgba(229, 62, 62, 0.3);
            }
            50% {
                transform: rotate(-5deg) scale(1.1);
                box-shadow: 0 6px 20px rgba(229, 62, 62, 0.4);
            }
        }
        
        .card-body {
            padding: 25px 20px 20px !important;
            border: none !important;
            flex-grow: 1;
            display: flex;
            flex-direction: column;
            background: white;
        }
        
        .text-truncate {
            font-size: 1.1rem;
            font-weight: 700;
            color: var(--text-dark);
            margin-bottom: 15px;
            line-height: 1.4;
            transition: var(--transition);
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
            text-overflow: ellipsis;
            min-height: 3em;
        }
        
        .product-item:hover .text-truncate {
            color: var(--primary-dark);
        }





        
        .product-flex {
            margin: 15px 0;
            position: relative;
            padding: 10px;
            border-radius: 10px;
            border: 1px solid rgba(139, 94, 94, 0.1);
        }
        
        .text-primary-product-custom {
            font-size: 10px !important;
            font-weight: 800 !important;
            color: var(--primary-dark) !important;
            background: linear-gradient(135deg, var(--primary-dark), var(--primary-color));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            padding: 5px 0 !important;
            animation: priceGlow 3s infinite alternate;
        }
        
        @keyframes priceGlow {
            0% {
                text-shadow: 0 0 5px rgba(139, 94, 94, 0.2);
            }
            100% {
                text-shadow: 0 0 10px rgba(139, 94, 94, 0.4);
            }
        }




     
        .text-muted {
            font-size: 10px !important;
            color: var(--text-light) !important;

            padding: 5px 10px !important;
        } 
        
       
         .discount-badge {
            position: absolute;
            top: -12px;
            left: -12px;
            background: linear-gradient(135deg, var(--danger-color), #c53030);
            color: white;
            width: 36px;
            height: 36px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 800;
            font-size: 0.8rem;
            box-shadow: 0 3px 10px rgba(229, 62, 62, 0.3);
            animation: discountFloat 3s ease-in-out infinite;
        }  
        
         @keyframes discountFloat {
            0%, 100% {
                transform: translateY(0) rotate(0deg);
            }
            50% {
                transform: translateY(-5px) rotate(10deg);
            }
        } 
         
       
        .card-footer {
            background: linear-gradient(to right, #fdf6f6, white) !important;
            border: none !important;
            border-top: 1px solid rgba(139, 94, 94, 0.1) !important;
            padding: 20px !important;
            border-radius: 0 0 16px 16px !important;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            gap: 10px;
        }
        
        .btn-custom {
            padding: 4px 4px !important;
            border-radius: 8px !important;
            font-weight: 600 !important;
            font-size: 0.8rem !important;
            transition: var(--transition) !important;
            border: 2px solid transparent !important;
            position: relative;
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: center;
            min-width: 120px;
        } 
        .btn-custom:hover {
            transform: translateY(-3px) !important;
            box-shadow: 0 6px 20px rgba(139, 94, 94, 0.2) !important;
            color: white !important;
        }
        
        .btn-custom:first-child {
            background: linear-gradient(135deg, rgba(139, 94, 94, 0.1), rgba(209, 156, 151, 0.05)) !important;
            color: white !important;
            border-color: rgba(139, 94, 94, 0.2) !important;
        }
        
        .btn-custom:first-child:hover {
            background: linear-gradient(135deg, rgba(139, 94, 94, 0.2), rgba(209, 156, 151, 0.1)) !important;
            border-color: var(--primary-color) !important;
            color: white !important;
        }
        
        .btn-custom:last-child {
            background: linear-gradient(135deg, var(--primary-color), var(--primary-dark)) !important;
            color: white !important;
            box-shadow: 0 4px 15px rgba(139, 94, 94, 0.3) !important;
        }
        
        .btn-custom:last-child:hover {
            background: linear-gradient(135deg, var(--primary-dark), #6b4747) !important;
            box-shadow: 0 8px 25px rgba(139, 94, 94, 0.4) !important;
                color: white !important;
        }
        
        .btn-custom::before {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.2), transparent);
            transform: translateX(-100%);
        }
        
        .btn-custom:hover::before {
            animation: btn-customShine 0.6s;
        }
        
        @keyframes btn-customShine {
            0% {
                transform: translateX(-100%);
            }
            100% {
                transform: translateX(100%);
            }
        }
        
        .btn-custom i {
            margin-left: 8px;
            transition: var(--transition);
        }
        
        .btn-custom:hover i {
            transform: scale(1.2);
        }
        
        .star-rating {
            position: absolute;
            top: 15px;
            right: 15px;
            background: rgba(0, 0, 0, 0.7);
            backdrop-filter: blur(5px);
            padding: 5px 10px;
            border-radius: 20px;
            color: var(--gold-color);
            font-weight: 600;
            font-size: 0.85rem;
            z-index: 2;
            display: flex;
            align-items: center;
            gap: 5px;
            animation: ratingFloat 4s ease-in-out infinite;
        }
        
        @keyframes ratingFloat {
            0%, 100% {
                transform: translateY(0);
            }
            50% {
                transform: translateY(-5px);
            }
        }
        
        .featured-tag {
            position: absolute;
            top: 40px;
            left: 40px;
            background: linear-gradient(135deg, var(--gold-color), #b8941f);
            color: white;
            padding: 6px 12px;
            border-radius: 8px;
            font-weight: 700;
            font-size: 0.8rem;
            z-index: 2;
            transform: rotate(-5deg);
            box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
            animation: tagFloat 3s ease-in-out infinite;
        }
        
        @keyframes tagFloat {
            0%, 100% {
                transform: rotate(-5deg) translateY(0);
            }
            50% {
                transform: rotate(-5deg) translateY(-5px);
            }
        }
        
        .skeleton-loading {
            animation: skeletonPulse 1.5s infinite;
        }
        
        @keyframes skeletonPulse {
            0%, 100% {
                background-color: rgba(0, 0, 0, 0.05);
            }
            50% {
                background-color: rgba(0, 0, 0, 0.1);
            }
        }
        
        .animate-on-scroll {
            opacity: 0;
            transform: translateY(40px);
            transition: opacity 0.8s ease, transform 0.8s ease;
        }
        
        .animate-on-scroll.visible {
            opacity: 1;
            transform: translateY(0);
        }
        
        .product-filters {
            display: flex;
            justify-content: center;
            gap: 15px;
            margin-bottom: 30px;
            flex-wrap: wrap;
        }
        
        .filter-btn-custom {
            padding: 10px 25px;
            background: white;
            border: 2px solid var(--border-color);
            border-radius: 8px;
            font-weight: 600;
            color: var(--text-dark);
            cursor: pointer;
            transition: var(--transition);
        }
        
        .filter-btn-custom:hover,
        .filter-btn-custom.active {
            background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
            color: white;
            border-color: var(--primary-color);
            transform: translateY(-3px);
            box-shadow: 0 6px 20px rgba(139, 94, 94, 0.2);
        }
        
        @media (max-width: 1200px) {
            .col-lg-3 {
                flex: 0 0 33.333333%;
                max-width: 33.333333%;
            }
        }
        
        @media (max-width: 992px) {
            .col-lg-3 {
                flex: 0 0 50%;
                max-width: 50%;
            }
            
            .section-title {
                font-size: 2rem;
            }
        }
        
        @media (max-width: 768px) {
            .container-fluid {
                border-radius: 15px;
            }
            
            .col-lg-3 {
                flex: 0 0 100%;
                max-width: 100%;
                padding: 10px !important;
            }
            
            .section-title {
                font-size: 10px;
            }
            
            .section-title::before,
            .section-title::after {
                width: 50px;
            }
            .section-title span{
                    border: 1px solid transparent;
            }

            #row-product{
                display: grid!important;
                grid-template-columns: repeat(2,1fr)!important;
                gap: 1px;
            }
            .row-product{
                display: grid!important;
                grid-template-columns: repeat(2,1fr)!important;
                gap: 1px;
            }
            .star-rating {
                top: 10px!important;
                right: 0px!important;
                padding: 4px!important;
                font-size: 10px!important;
            }

            .badge-sale {
                top: 25px;
                left: 15px;
                padding: 4px;
                font-size: 10px;
            }


            .section-title {
                padding: 0px!important;
            }

            .star-rating i {
                font-size: 10px!important;
            }
            .text-truncate {
                font-size: 10px!important;
                min-height: auto;
                padding-bottom: 4px!important;
                margin: 0px!important;
                
            }
            .card-body {
                padding: 0px!important;
                justify-content: center;
                align-items: center;
            }
            .card-footer{
                padding: 5px!important;

            }

            .card-footer a{
                padding: 5px!important;
                font-size: 10px!important;

            }
            .text-primary-product-custom {
                padding: 0px!important;
            }



            .product-flex {
                padding: 0px!important;
                margin: 0px!important;
                width: 60%;
            }
            .text-primary-product-custom {
                font-size: 16px !important;
            }


            .featured-tag {
                top: 10px;
                left: 0px;
                padding: 4px;
                font-size: 10px;
            }
            
            .card-footer {
                flex-direction: column;
                gap: 10px;
            }
            
            .btn-custom {
                width: 100%;
            }
            
            .text-primary {
                font-size: 20px !important;
            }
        }
        
        .product-item:hover .card-body {
            transform: translateY(-5px);
        }
        
        .product-item {
            position: relative;
            overflow: hidden;
        }
        
        /* .product-item::after {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle at center, rgba(255, 255, 255, 0.4) 0%, transparent 70%);
            transform: translate(-50%, -50%);
            opacity: 0;
            transition: opacity 0.4s;
            pointer-events: none;
        } */
        
        .product-item:hover::after {
            opacity: 1;
        }
        
        
        @media (hover: none) {
            .product-item:hover {
                transform: translateY(-5px) scale(1.01);
            }
            
            .product-image {
                transition: none;
            }
        }  



