/* Flex container for the cards */
        .product-cards-container {
            display: flex;
            flex-wrap: wrap;
            gap: 16px;
            justify-content: center;
            max-width: 1000px;
            margin: 0 auto;
        }

        /* Mini product card */
        .product-card-mini {
            background: #000000;
            border-radius: 12px;
            overflow: hidden;
            transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            /*cursor: pointer;*/
            flex: 1 1 200px;
            max-width: 250px;
            min-width: 160px;
            display: flex;
            flex-direction: column;
            border: 1px solid rgba(0, 0, 0, 0.04);
        }

        /* Hover animation */
        .product-card-mini:hover {
            transform: translateY(-1px);
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
        }

        /* Image section (upper) */
        .card-image-mini {
            width: 100%;
            height: 150px;
            overflow: hidden;
            position: relative;
            
        }

        .card-image-mini img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        }

        .product-card-mini:hover .card-image-mini img {
            transform: scale(1.01);
        }

        /* Description section (middle) */
        .card-description-mini {
            padding: 16px 14px;
            flex-grow: 1;
            display: flex;
            flex-direction: column;
            text-align: center;
        }

        .card-title-mini {
            font-size: 16px;
            font-weight: 600;
            color: #cecece;
            margin-bottom: 4px;
            line-height: 1.2;
            letter-spacing: -0.01em;
        }

        .card-subtitle-mini {
            font-size: 13px;
            color: #86868b;
            margin-bottom: 8px;
            font-weight: 400;
        }

        /*.card-price-mini {
            font-size: 13px;
            font-weight: 400;
            color: #1d1d1f;
            margin-bottom: 12px;
        }*/

        .card-text-mini {
            font-size: 11px;
            color: #86868b;
            line-height: 1.4;
            margin-bottom: 12px;
            flex-grow: 1;
            font-weight: 400;
            display: -webkit-box;
            /*-webkit-line-clamp: 2;*/
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        /* Button section (bottom) */
        .card-button {
            padding: 0 14px 16px;
        }

        .btn-primary {
            width: 50%;
            padding: 8px 16px;
            background: #0071e3;
            color: white;
            border: none;
            border-radius: 980px;
            font-size: 12px;
            font-weight: 400;
            cursor: pointer;
            transition: all 0.2s ease;
            letter-spacing: -0.01em;
            min-height: 32px;
        }

        .btn-primary:hover {
            background: #0077ed;
        }

        .btn-secondary {
            width: 50%;
            padding: 4px 0;
            background: transparent;
            color: #0071e3;
            border: none;
            font-size: 11px;
            font-weight: 400;
            cursor: pointer;
            transition: all 0.2s ease;
            letter-spacing: -0.01em;
            text-decoration: none;
            margin-top: 4px;
        }

        .btn-secondary:hover {
            color: #0077ed;
        }

        /* Clean focus states */
        .btn-primary:focus,
        .btn-secondary:focus {
            outline: 2px solid #0071e3;
            outline-offset: 1px;
        }

        /* Responsive breakpoints */
        @media (max-width: 768px) {           
            
            .product-cards-container {
                gap: 15px;
            }
            
            .product-card-mini {
                flex: 1 1 350px;
                max-width: 350px;
            }
        }

        @media (max-width: 480px) {
            .product-cards-container {
                gap: 12px;
            }

            .product-card-mini {
                flex: 1 1 250px;
                min-width: 200px;
                max-width: 300px;
            }
            
            .card-image-mini {
                height: 150px;
            }

            .card-description-mini {
                padding: 12px 10px;
            }

            .card-button {
                padding: 0 10px 12px;
            }

            .card-title-mini {
                font-size: 25px;
            }

            .card-subtitle-mini {
            font-size: 18px;
            }

            .card-text-mini {
            font-size: 14px;
            }

            .card-price-mini {
                font-size: 12px;
            }
        }

        /* Very subtle entrance animation */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(5px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .product-card-mini {
            animation: fadeInUp 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
        }

        /* Stagger animation */
        .product-card-mini:nth-child(2) {
            animation-delay: 0.05s;
        }

        .product-card-mini:nth-child(3) {
            animation-delay: 0.1s;
        }

        .product-card-mini:nth-child(4) {
            animation-delay: 0.15s;
        }

        .product-card-mini:nth-child(5) {
            animation-delay: 0.2s;
        }

        .product-card-mini:nth-child(6) {
            animation-delay: 0.25s;
        }