/* ═══════════════════════════════════════
   Altunsa Products Widget
   ═══════════════════════════════════════ */

.altunsa-products-section {
    padding: 80px 0;
}

.altunsa-products-header {
    text-align: center;
    margin-bottom: 60px;
}

.altunsa-products-title {
    font-size: 3rem;
    font-weight: 700;
    color: #457530;
    margin: 0;
}

/* ── Link ── */
.altunsa-product-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

/* ── Kart ── */
.altunsa-product-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
    height: 280px;
    display: flex;
    flex-direction: column;
}

.altunsa-product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

/* ── Görsel ── */
.altunsa-product-image {
    position: relative;
    height: 200px;
    overflow: hidden;
    flex-shrink: 0;
}

.altunsa-product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.altunsa-product-card:hover .altunsa-product-image img {
    transform: scale(1.1);
}

/* ── İkon Badge ── */
.altunsa-product-icon {
    position: absolute;
    bottom: 15px;
    right: 15px;
    width: 40px;
    height: 40px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
}

.altunsa-product-icon i {
    color: #d9182a;
    font-size: 16px;
    transition: transform 0.3s ease;
    font-family: "Font Awesome 6 Free" !important;
    font-weight: 900;
}

.altunsa-product-card:hover .altunsa-product-icon {
    transform: scale(1.3);
}

/* ── Ürün Adı ── */
.altunsa-product-name {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #a4c861;
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
    text-align: center;
    padding: 20px 15px;
    transition: background 0.3s ease;
}

.altunsa-product-card:hover .altunsa-product-name {
    background: #db1222;
}

/* ── Scroll Animation ── */
[data-altunsa-animate] {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

[data-altunsa-animate].altunsa-animated {
    opacity: 1;
    transform: translateY(0);
}

.elementor-editor-active [data-altunsa-animate] {
    opacity: 1;
    transform: translateY(0);
}

/* ── Responsive ── */
@media (max-width: 992px) {
    .altunsa-products-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .altunsa-products-section {
        padding: 60px 0;
    }

    .altunsa-products-title {
        font-size: 2rem;
    }

    .altunsa-products-header {
        margin-bottom: 40px;
    }

    .altunsa-product-card {
        height: 240px;
    }
}

@media (max-width: 576px) {
    .altunsa-products-title {
        font-size: 1.8rem;
    }

    .altunsa-product-card {
        height: 220px;
    }

    .altunsa-product-name {
        font-size: 1rem;
        padding: 15px 10px;
    }
}
