.mtd-card {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
}

.mtd-card video {
    width: 100%;
    height: var(--mtd-video-height, 500px);
    object-fit: cover;
    display: block;
}

/* ── Footer: ürün kutusu + buton birlikte videonun üstünde ── */
.mtd-card-footer {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 12px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

/* ── Ürün kutusu ── */
.mtd-product-box {
    background: #fff;
    border-radius: 15px;
    padding: 12px;
    display: flex;
    gap: 10px;
    align-items: center;
}

.mtd-product-box img {
    width: 50px;
    height: 50px;
    object-fit: cover;
    border-radius: 8px;
    flex-shrink: 0;
}

.mtd-product-content h4 {
    margin: 0;
    font-size: 14px;
    line-height: 1.3;
}

.mtd-product-content span {
    font-weight: 700;
    font-size: 14px;
}

/* ── Sepete Ekle butonu ── */
.mtd-add-cart {
    display: block;
    width: 100%;
    box-sizing: border-box;

    background: #fff;
    border-radius: 15px !important;
    border: none;
    outline: none;
    cursor: pointer;

    padding: 13px;
    text-align: center;

    font-size: 14px;
    font-weight: 600;
    font-family: inherit;
    color: #000;
    line-height: 1;

    /* Tema overridelarını engelle */
    text-transform: none !important;
    text-decoration: none !important;
    letter-spacing: 0 !important;
    transform: none !important;
    box-shadow: none !important;
    margin: 0 !important;

    transition: background .2s, color .2s;
}

.mtd-add-cart:hover,
.mtd-add-cart:focus,
.mtd-add-cart:visited {
    color: #000;
    text-decoration: none !important;
    text-transform: none !important;
    transform: none !important;
    box-shadow: none !important;
    margin: 0 !important;
	border-radius:15px;
}

.mtd-add-cart.mtd-loading {
    opacity: .6;
    pointer-events: none;
}

.mtd-add-cart.mtd-added {
    background: #22c55e;
    color: #fff;
}
