/* Product Cards Integration */
        .product-card {
            background: #fff;
            border: 1px solid #eee;
            border-radius: 8px;
            padding: 32px;
            transition: all 0.3s;
            display: flex;
            flex-direction: column;
            height: 100%;
            text-align: left;
        }

        .product-card:hover {
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
            transform: translateY(-4px);
        }

        .product-img-wrap {
            width: 100%;
            height: 140px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 20px;
            background: #fff;
            border-radius: 4px;
            overflow: hidden;
            padding: 16px;
        }

        .product-img-wrap a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 100%;
            height: 100%;
            text-decoration: none;
        }

        .product-img-wrap img {
            width: auto;
            height: auto;
            max-width: 80%;
            max-height: 80%;
            object-fit: contain;
            transition: transform 0.5s ease;
        }

        .product-card:hover .product-img-wrap img {
            transform: scale(1.05);
        }

        .product-target-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
            margin: 0 0 24px;
        }

        .product-target-tags span {
            display: inline-flex;
            align-items: center;
            min-height: 28px;
            padding: 5px 10px;
            border: 1px solid rgba(197, 160, 101, 0.35);
            border-radius: 999px;
            background: rgba(197, 160, 101, 0.08);
            color: #6d562f;
            font-size: 0.8rem;
            font-weight: 700;
            line-height: 1.2;
        }

        .grid-3 {
            display: grid;
            grid-template-columns: repeat(2, minmax(0, 1fr));
            gap: 32px;
        }

        .text-link-arrow {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            color: #111;
            font-weight: 700;
            font-size: 0.95rem;
            margin-top: auto;
        }

        /* Mobile Adjustments */
        @media (max-width: 768px) {
            .product-card {
                padding: 20px;
            }
            .product-img-wrap {
                height: 120px;
                margin-bottom: 16px;
                padding: 12px;
            }
        }

        @media (max-width: 600px) {
            .grid-3 {
                display: flex;
                grid-template-columns: none;
                gap: 14px;
                margin-right: calc(50% - 50vw);
                padding-right: 20px;
                overflow-x: auto;
                scroll-snap-type: x mandatory;
                -webkit-overflow-scrolling: touch;
            }

            .grid-3::-webkit-scrollbar {
                display: none;
            }

            .product-card {
                flex: 0 0 82%;
                scroll-snap-align: start;
            }

            .product-img-wrap {
                height: 92px;
                margin-bottom: 14px;
            }

            .product-card h3 {
                font-size: 1rem;
                line-height: 1.45;
            }

            .product-card .content-text {
                display: -webkit-box;
                -webkit-line-clamp: 3;
                line-clamp: 3;
                -webkit-box-orient: vertical;
                overflow: hidden;
                font-size: 0.88rem;
                line-height: 1.65;
            }
        }
