/* css */

.mearacdetaygaleri img {
    height: auto !important;
    width: 100% !important;
    aspect-ratio: 10/5 !important;
    object-fit: cover !important;
}

@media only screen and (max-width: 992px) {
    .mearacdetaygaleri img {
        aspect-ratio: 100/76 !important;
    }
}

.mearacitemanaresim {
    aspect-ratio: 100/76 !important;
}

.wa-hizli-kirala {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;

    padding: 14px 18px;
    border-radius: 0.5rem;

    font-family: "Urbanist", sans-serif;
    font-size: 16px;
    font-weight: 700;
    line-height: 1;

    background: #70f46d;
    color: #0b2a13;
    border: 1px solid rgba(11, 42, 19, .10);

    box-shadow: 0 10px 24px rgba(0, 0, 0, .10);
    text-decoration: none;
    cursor: pointer;
    user-select: none;

    transition: background .15s ease, transform .15s ease, box-shadow .15s ease;
}

.wa-hizli-kirala:hover {
    background: #e4e6e8;
    transform: translateY(-1px);
    box-shadow: 0 14px 30px rgba(0, 0, 0, .12);
}

.wa-hizli-kirala:active {
    transform: translateY(0);
}

/* ikon badge */
.wa-hizli-kirala .wa-ico {
    width: 36px;
    height: 36px;
    border-radius: 999px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    background: rgba(255, 255, 255, .55);
    border: 1px solid rgba(11, 42, 19, .08);

    transition: transform .15s ease, background .15s ease;
}

.wa-hizli-kirala:hover .wa-ico {
    transform: scale(1.04);
    background: rgba(255, 255, 255, .75);
}

/* SVG yazıyla aynı rengi alsın */
.wa-hizli-kirala .wa-ico svg {
    width: 20px;
    height: 20px;
    display: block;
}

.wa-hizli-kirala .wa-ico svg path {
    fill: currentColor;
    /* kritik: ikon yazıyla aynı renk */
}