/* Emkan BNPL Widgets – Tabby/Tamara-like style */
.emkan-widget-mount { margin-top: 12px; }

.emkan-bnpl-widget{
  border: 1px solid #e8e8e8;
  border-radius: 12px;
  background: #fff;
  padding: 12px 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  line-height: 1.45;
}

.emkan-bnpl-left{
  display:flex;
  align-items:center;
  gap:10px;
  min-width:0;
  flex:1;
}

.emkan-bnpl-logo{
  width:56px;
  height:28px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  flex:0 0 auto;
}

.emkan-bnpl-logo .logo-inner img{
  max-width:100%;
  max-height:100%;
  display:block;
}

.emkan-bnpl-text{ min-width:0; }
.emkan-bnpl-sub{
  font-size:14px;
  color:#111;
  white-space:normal;
}
.emkan-bnpl-amount{
  font-weight:800;
  font-size:16px;
  color:#111;
}

.emkan-bnpl-more{
  font-size:13px;
  color:#2b59ff;
  text-decoration:none;
  white-space:nowrap;
}
.emkan-bnpl-more:hover{ text-decoration:underline; }

/* SAR symbol (SVG) */
.sar-symbol{
  height:16px;
  width:auto;
  vertical-align:-2px;
  display:inline-block;
  margin-inline-start:4px;
}

/* RTL */
.rtl .emkan-bnpl-widget{ direction:rtl; }
.rtl .emkan-bnpl-left{ flex-direction:row-reverse; }
.rtl .sar-symbol{ margin-inline-start:0; margin-inline-end:4px; }

/* Mobile */
@media (max-width: 520px){
  .emkan-bnpl-widget{
    padding: 10px 12px;
    gap: 10px;
  }
  .emkan-bnpl-logo{ width:50px; height:26px; }
  .emkan-bnpl-sub{ font-size:13px; }
  .emkan-bnpl-more{ font-size:12px; }
}


/* --- Emkan product/cart widget markup (Tabby/Tamara-like) --- */
.product-widget{
  margin-top:12px;
}
.product-widget .product-widget-inner{
  background:#fff;
  border:1px solid #e8e8e8;
  border-radius:12px;
  padding:12px 14px;
}
.product-widget .product-bottom{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
}
.product-widget.rtl .product-bottom{
  flex-direction:row-reverse;
}
.product-widget .learn-more{
  font-size:13px;
  color:#2b59ff;
  text-decoration:none;
  white-space:nowrap;
}
.product-widget .learn-more:hover{ text-decoration:underline; }

.product-widget .logo-container{
  display:flex;
  flex-direction:column;
  align-items:flex-end;
  gap:6px;
  min-width:0;
}
.product-widget.rtl .logo-container{
  align-items:flex-start;
}

.product-widget .logo-inner{
  display:flex;
  align-items:center;
  justify-content:flex-end;
  gap:8px;
}
.product-widget .logo-inner img{
  height:22px;
  width:auto;
  display:block;
}

.product-widget .emkan-bnpl-line{
  margin:0;
  font-size:13px;
  color:#111;
  display:flex;
  align-items:center;
  gap:6px;
  flex-wrap:wrap;
  justify-content:flex-end;
}
.product-widget.rtl .emkan-bnpl-line{
  justify-content:flex-start;
}
.product-widget .emkan-bnpl-amt{
  font-weight:800;
  font-size:15px;
}
.product-widget .emkan-bnpl-per{
  color:#666;
  font-size:12px;
}

/* Below-min subtle hint (still visible by request) */
.product-widget.emkan-bnpl-below-min .product-widget-inner{
  border-color:#f2c200;
}
