﻿@charset "UTF-8";
.tpz-cart-popup{
    position:fixed!important;
    top:auto!important;
    right:22px!important;
    bottom:22px!important;
    left:auto!important;

    width:340px;
    max-width:calc(100vw - 28px);

    background:#fff;
    color:#111827;
    border:1px solid #e5e7eb;
    border-radius:16px;
    padding:14px;
    box-shadow:0 18px 45px rgba(15,23,42,.12);
    z-index:2147483647;

    opacity:0;
    transform:translateY(12px);
    transition:.25s ease;

    /* kesin override */
    height:auto!important;
}

/* Modern site feel */
.tpz-cart-popup{
    background:var(--white, #fff);
    border-color:var(--border, #e5e7eb);
    backdrop-filter: blur(8px);
}

.tpz-cart-popup.show{opacity:1;transform:translateY(0)}

.tpz-cart-popup-close{
    position:absolute;top:12px;right:12px;width:28px;height:28px;
    border:0;background:transparent;color:#6b7280;cursor:pointer;font-size:15px
}

.tpz-cart-popup-head{display:flex;align-items:center;gap:10px;padding-right:30px;margin-bottom:12px}
.tpz-cart-popup-head strong{font-size:15px;font-weight:900;color:#111827}

.tpz-cart-popup-check{
    width:36px;height:36px;border-radius:50%;
    background:#dcfce7;color:#16a34a;
    display:flex;align-items:center;justify-content:center;
    font-size:17px;flex-shrink:0;
    box-shadow:0 8px 18px rgba(22,163,74,.12);
}
.tpz-cart-popup-check.error{
    background:#fee2e2;color:#ef4444;
    box-shadow:0 8px 18px rgba(239,68,68,.12);
}

.tpz-cart-popup-product{display:flex;align-items:center;gap:12px;margin:8px 0 14px}
.tpz-cart-popup-product img,.tpz-cart-popup-noimg{
    width:54px!important;height:54px!important;max-width:54px!important;max-height:54px!important;border-radius:12px;
    background:#f8fafc;border:1px solid var(--border, #e5e7eb);
    object-fit:contain;padding:5px;box-sizing:border-box;overflow:hidden;flex-shrink:0
}
.tpz-cart-popup-noimg{display:flex;align-items:center;justify-content:center;color:#94a3b8;padding:0}

.tpz-cart-popup-title{
    max-width:220px;font-size:13px;font-weight:700;
    color:#334155;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;margin-bottom:6px
}
.tpz-cart-popup-price{color:#111827;font-size:14px;font-weight:900}

.tpz-cart-popup-button{
    height:46px;width:100%;
    background:var(--primary, #243b7b);
    color:#fff!important;
    border-radius:12px;
    display:flex;align-items:center;justify-content:center;
    gap:10px;text-decoration:none;font-size:14px;font-weight:900;
    border:0;
    box-shadow:0 12px 24px rgba(36,59,123,.22);
    transition:.18s ease;
}
.tpz-cart-popup-button:hover{
    background:var(--primary-dark, #17275a);
    transform:translateY(-1px);
}

.cart-count{
    min-width:18px!important;height:18px!important;border-radius:999px!important;
    background:var(--accent, #ff7a00)!important;
    color:#fff!important;font-size:11px!important;font-weight:900!important;
    display:inline-flex;align-items:center;justify-content:center;padding:0 5px!important;line-height:1!important
}

.cart-icon{position:relative!important}
.cart-icon .cart-count{position:absolute!important;top:-7px!important;right:-7px!important}
.cart-icon .cart-count.is-empty{display:none!important}

[data-add-cart]:disabled{opacity:.65;cursor:not-allowed}

/* Mobile */
@media(max-width:520px){
    .tpz-cart-popup{
        width:calc(100vw - 28px);
        right:14px!important;
        bottom:14px!important;
        top:auto!important; /* kesin */
        left:auto!important; /* kesin */
    }
    .tpz-cart-popup-title{max-width:185px}
}
