/* ═══════════════════════════════════════
   Altunsa Main Catalog Widget
   ═══════════════════════════════════════ */

.altunsa-mc-card {
    background: #fff;
    border-radius: 25px;
    padding: 40px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.altunsa-mc-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(135deg, #28a745, #20c997);
}

/* ── Görsel ── */
.altunsa-mc-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
}

.altunsa-mc-image img {
    border-radius: 20px;
    width: 100%;
    transition: transform 0.4s ease;
    display: block;
}

.altunsa-mc-card:hover .altunsa-mc-image img {
    transform: scale(1.05);
}

/* ── Rozet ── */
.altunsa-mc-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, #dc3545, #e83e8c);
    color: #fff;
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 1.1rem;
    font-weight: 700;
    box-shadow: 0 5px 15px rgba(220, 53, 69, 0.3);
    pointer-events: none;
}

/* ── İçerik ── */
.altunsa-mc-content {
    padding-left: 40px;
}

.altunsa-mc-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 20px;
    line-height: 1.2;
}

.altunsa-mc-description {
    font-size: 1.15rem;
    color: #6c757d;
    line-height: 1.6;
    margin-bottom: 30px;
}

/* ── Özellikler ── */
.altunsa-mc-features {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 30px;
}

.altunsa-mc-feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.05rem;
    color: #495057;
    font-weight: 500;
}

/* Elementor SVG ikonunu doğrudan sınıfa koyar — fill + sabit boyut */
.altunsa-mc-feature-icon {
    flex-shrink: 0;
    width: 1.15rem;
    height: 1.15rem;
    fill: #28a745;
    color: #28a745; /* FA font fallback */
    display: inline-block;
    vertical-align: middle;
}

/* ── Buton ── */
.altunsa-mc-download-btn {
    background: linear-gradient(135deg, #28a745, #20c997);
    color: #fff;
    border: none;
    padding: 18px 35px;
    border-radius: 50px;
    font-size: 1.15rem;
    font-weight: 600;
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(40, 167, 69, 0.3);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
}

.altunsa-mc-download-btn:hover {
    background: linear-gradient(135deg, #20c997, #17a2b8);
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(40, 167, 69, 0.4);
    color: #fff;
    text-decoration: none;
}

/* ── Scroll Animasyonu ── */
.altunsa-mc-card[data-altunsa-mc-animate] {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.altunsa-mc-card[data-altunsa-mc-animate].altunsa-mc-animated {
    opacity: 1;
    transform: translateY(0);
}

.elementor-editor-active .altunsa-mc-card[data-altunsa-mc-animate] {
    opacity: 1;
    transform: translateY(0);
}

/* ── Responsive ── */
@media (max-width: 991px) {
    .altunsa-mc-content {
        padding-left: 0;
        padding-top: 30px;
    }

    .altunsa-mc-title {
        font-size: 1.8rem;
    }
}

@media (max-width: 768px) {
    .altunsa-mc-card {
        padding: 25px;
    }

    .altunsa-mc-title {
        font-size: 1.5rem;
    }

    .altunsa-mc-description {
        font-size: 1rem;
    }

    .altunsa-mc-download-btn {
        padding: 14px 25px;
        font-size: 1rem;
        width: 100%;
        justify-content: center;
    }
}
