/* =========================================
   OZC ÜRÜN KARTI — STANDART (INDEX / ARAMA / KATEGORİ)
   Ana kaynak: /site/css/urun-karti.css
   ========================================= */

.ozc-card{
  background:#fff;
  border:1px solid #e9ecf3;
  border-radius:20px;
  overflow:hidden;
  box-shadow:0 10px 30px rgba(16,24,40,.08);
  position:relative;

  display:flex;
  flex-direction:column;
  height:100%;
  min-height:420px; /* masaüstü kart boyu */
}

/* rozet */
.ozc-badge{
  position:absolute;
  left:12px;
  top:12px;
  background:#0ea5e9;
  color:#fff;
  font-size:11px;
  padding:6px 10px;
  border-radius:999px;
  font-weight:950;
  z-index:3;
}

/* favori */
.ozc-fav{
  position:absolute;
  right:12px;
  top:12px;
  width:36px;
  height:36px;
  border-radius:999px;
  background:#fff;
  border:1px solid #e9ecf3;
  display:flex;
  align-items:center;
  justify-content:center;
  cursor:pointer;
  z-index:3;
  user-select:none;
}

/* marka */
.ozc-brand{
  position:absolute;
  right:12px;
  top:56px;
  z-index:3;
  background:rgba(255,255,255,.92);
  border:1px solid #e9ecf3;
  border-radius:999px;
  padding:3px 8px;
  display:inline-flex;
  align-items:center;
  box-shadow:0 8px 18px rgba(16,24,40,.08);
}
.ozc-brand img{
  height:14px;
  width:auto;
  display:block;
}

/* kart link alanı */
.ozc-link{
  text-decoration:none;
  color:inherit;
  display:block;
  flex:0 0 auto;
}

/* görsel alanı */
.ozc-img{
  height:140px;              /* kısa ve dengeli kart görünümü */
  min-height:140px;
  background:#f6f7fb;
  display:flex;
  align-items:center;
  justify-content:center;
  overflow:hidden;
  padding:8px;
  border-bottom:1px solid #eef1f6;
}

.ozc-img img{
  width:100%;
  height:100%;
  object-fit:contain;
  object-position:center;
  display:block;
}

/* içerik */
.ozc-body{
  padding:12px;
  background:linear-gradient(180deg,#fff 0%, #fff7f0 100%);
  border-top:1px solid #f1f3f8;

  display:flex;
  flex-direction:column;
  flex:1 1 auto;    /* içerik alanı esnesin */
  min-height:0;
}

/* kargo etiketi */
.ozc-ship{
  display:inline-flex;
  align-items:center;
  gap:6px;
  padding:2px 8px;
  border-radius:999px;
  font-size:10px;
  font-weight:950;
  background:#ecfdf5;
  color:#166534;
  border:1px solid #86efac;
  margin:0 0 8px 0;
  line-height:1;
  min-height:22px;
  width:max-content;
  max-width:100%;
}
.ozc-ship i{
  font-size:12px;
  color:#16a34a;
}

/* başlık (2 satır sabit) */
.ozc-title{
  color:#F58220;
  font-weight:950;
  font-size:13px;
  line-height:1.28;
  text-decoration:none;
  margin:2px 0 8px;

  min-height:40px;
  max-height:40px;

  display:-webkit-box;
  -webkit-line-clamp:2;
  line-clamp:2;
  -webkit-box-orient:vertical;
  overflow:hidden;
  word-break:break-word;
}

.ozc-title:hover{
  text-decoration:underline;
  text-underline-offset:2px;
}

/* SKU */
.ozc-sku{
  opacity:.65;
  font-size:12px;
  margin-top:6px;
  min-height:16px;
  line-height:1.2;
  overflow:hidden;
  text-overflow:ellipsis;
  white-space:nowrap;
}

/* fiyat + sepet satırı */
.ozc-row{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
  margin-top:auto; /* ✅ alta yasla */
}

.ozc-price{
  font-weight:950;
  font-size:16px;
  color:#0f172a;
  letter-spacing:-.2px;
  white-space:nowrap;
  min-width:0;
}
.ozc-old{
  color:#64748b;
  text-decoration:line-through;
  font-weight:850;
  font-size:12px;
  margin-right:6px;
}
.ozc-new{
  font-weight:950;
}

/* Sepet butonu */
.ozc-cart{
  width:42px;
  height:42px;
  min-width:42px;
  border-radius:999px;
  border:1px solid #e7e9ef;
  background:#fff;
  cursor:pointer;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  flex:0 0 auto;
  transition:.15s ease;
  font-weight:900;
  user-select:none;
  padding:0;
}
.ozc-cart:hover{
  background:#fff3ea;
  border-color:#ffd8bc;
  transform:translateY(-1px);
}
.ozc-cart i{
  font-size:18px;
  line-height:1;
}
.ozc-cart[disabled]{
  opacity:.35;
  cursor:not-allowed;
  transform:none !important;
}

/* Stok yok etiketi */
.ozc-soldout{
  position:absolute;
  left:10px;
  top:10px;
  background:rgba(0,0,0,.78);
  color:#fff;
  font-size:11px;
  padding:6px 10px;
  border-radius:999px;
  font-weight:900;
  z-index:6;
}
.ozc-card.is-soldout{ opacity:.72; }
.ozc-card.is-soldout .ozc-cart{
  opacity:.35;
  cursor:not-allowed;
}

/* toast */
.ozc-toast{
  position:absolute;
  left:10px;
  right:10px;
  bottom:10px;
  padding:10px 12px;
  border-radius:12px;
  font-weight:900;
  font-size:12px;
  box-shadow:0 10px 25px rgba(16,24,40,.12);
  z-index:10;
}
.ozc-toast.ok{
  background:#eaffea;
  color:#128a2e;
  border:1px solid #bff0c6;
}
.ozc-toast.err{
  background:#fff7ed;
  color:#9a3412;
  border:1px solid #fed7aa;
}

/* kategori grid güvenli hizalama */
.cat-grid .ozc-card .ozc-img{
  height:140px;
  min-height:140px;
}

/* Responsive */
@media (max-width: 900px){
  .ozc-card{ min-height:390px; }
  .ozc-img{ height:130px; min-height:130px; }
  .cat-grid .ozc-card .ozc-img{ height:130px; min-height:130px; }
}

@media (max-width: 520px){
  .ozc-card{ min-height:360px; }
  .ozc-img{ height:110px; min-height:110px; }
  .cat-grid .ozc-card .ozc-img{ height:110px; min-height:110px; }

  .ozc-title{
    min-height:38px;
    max-height:38px;
    font-size:12.5px;
  }

  .ozc-price{ font-size:15px; }

  .ozc-cart{
    width:38px;
    height:38px;
    min-width:38px;
  }

  .ozc-fav{
    width:34px;
    height:34px;
    right:10px;
    top:10px;
  }

  .ozc-soldout{
    font-size:10px;
    padding:5px 8px;
  }
}