.footer-img a img {
filter: invert(1);
}

/* ─── GENEL ─────────────────────────────────── */
        .product-section-wrapper {
            padding: 20px;
        }

        #product-list .row {
            display: flex;
            flex-wrap: wrap;
        }

        /* Sütun — flex ile eşit yükseklik */
        .custom-col {
            display: flex;
            margin-bottom: 24px;
        }

        /* ─── KART ───────────────────────────────────── */
        .product-wrapper {
            display: flex;
            flex-direction: column;
            width: 100%;
            border: 1px solid #e0e0e0;
            border-radius: 10px;
            overflow: hidden;
            background: #fff;
            box-shadow: 0 2px 6px rgba(0,0,0,0.06);
            transition: box-shadow 0.2s;
        }

        .product-wrapper:hover {
            box-shadow: 0 4px 16px rgba(0,0,0,0.12);
        }

        /* ─── RESİM ALANI ────────────────────────────── */
        .product-image {
            width: 100%;
            background: #fff;
            overflow: hidden;
        }

        .product-image a {
            display: block;
            width: 100%;
        }

        /*
         * Yapı 1: <img> doğrudan .product-image > a altında
         * Yapı 2: .rgw div'i içinde
         * İkisi de kare alan + object-fit:contain ile çalışır
        */
        .product-image .rgw,
        .product-image a:not(:has(.rgw)) {
            width: 100%;
            aspect-ratio: 1 / 1;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
        }

        .product-image .rgw img,
        .product-image a:not(:has(.rgw)) img {
            max-width: 85%;
            max-height: 85%;
            object-fit: contain;
            display: block;
        }

        /* ─── İÇERİK — Yapı 1: .product-title direkt ── */
        .product-title {
            padding: 12px 14px;
            border-top: 1px solid #f0f0f0;
            flex-grow: 1;
            display: flex;
            align-items: center;
        }

        /* ─── İÇERİK — Yapı 2: .product-content-wrapper */
        .product-content-wrapper {
            display: flex;
            flex-direction: column;
            flex-grow: 1;
            padding: 12px 14px;
            border-top: 1px solid #f0f0f0;
            gap: 8px;
        }

        /* .product-content-wrapper içindeki .product-title
           padding ve border'ı wrapper'dan alıyor, kendi üstüne koyma */
        .product-content-wrapper .product-title {
            padding: 0;
            border-top: none;
            flex-grow: 0;
        }

        /* ─── BAŞLIK (her iki yapıda ortak) ─────────── */
        .product-title h3.weta-icerik-tag {
            font-size: 0.95rem;
            font-weight: 600;
            margin: 0;
            color: #222;
            line-height: 1.4;
        }

        /* ─── LEARN MORE ─────────────────────────────── */
        .learn-more {
            min-height: 0;
        }

        /* ─── ELEMAN WRAPPER ─────────────────────────── */
        .eleman-wrapper {
            padding: 10px 14px;
            border-top: 1px solid #f0f0f0;
        }

        .eleman {
            min-height: 0;
        }

#counter_1 .counterNumber::after,
#counter_2 .counterNumber::after,
#counter_3 .counterNumber::after,
#counter_4 .counterNumber::after {
content: '+';
}

.btn {
border-radius: 25px;
padding: 10px 15px;
}

.product-image img {
border-radius: 0px !important;
}

.icon-wrapper {
border-radius: 25px;
box-shadow: rgba(0, 0, 0, 0.15) 0px 5px 15px 0px;
}