/* -- SmartWeb Standard Favorites Page -- */
.fav-page{padding:40px 0 60px;}
.fav-page .fav-heading{
  font-size:20px;font-weight:600;color:#1e293b;margin-bottom:24px;
  display:flex;align-items:center;gap:10px;
}
.fav-page .fav-heading i{color:#e11d48;font-size:18px;}
.fav-page .fav-count{
  font-size:13px;font-weight:600;color:#64748b;background:#f1f5f9;
  padding:3px 10px;border-radius:20px;
}
.fav-grid{
  display:grid;
  grid-template-columns:repeat(var(--fav-cols-xs,1),1fr);
  gap:20px;
}
@media (min-width:576px){
  .fav-grid{grid-template-columns:repeat(var(--fav-cols-sm,2),1fr);}
}
@media (min-width:992px){
  .fav-grid{grid-template-columns:repeat(var(--fav-cols-lg,4),1fr);}
}
.fav-card{
  background:#fff;border:1px solid #e2e8f0;border-radius:16px;overflow:hidden;
  transition:box-shadow .18s,transform .15s;height:100%;display:flex;flex-direction:column;
}
.fav-card:hover{box-shadow:0 12px 32px rgba(15,23,42,.1);transform:translateY(-2px);}
.fav-card-img{position:relative;overflow:hidden;padding: 20px;}
.fav-card-img a{display:block;}
.fav-card-img img{width:100%;aspect-ratio:3/4;object-fit:cover;display:block;transition:transform .3s;}
.fav-card:hover .fav-card-img img{transform:scale(1.04);}
.fav-card-remove{
  position:absolute;top:10px;right:10px;width:32px;height:32px;border-radius:50%;
  background:rgba(255,255,255,.92);border:none;cursor:pointer;display:flex;align-items:center;
  justify-content:center;color:#e11d48;font-size:13px;line-height:1;transition:background .15s,color .15s;
  z-index:1;box-shadow:0 1px 4px rgba(0,0,0,.12);
}
.fav-card-remove i{font-size:13px;line-height:1;}
.fav-card-remove:hover{background:#e11d48;color:#fff;}
.fav-card-body{padding:14px 16px 16px;display:flex;flex-direction:column;gap:8px;flex:1;}
.fav-card-name{
  font-size:14px;font-weight:600;color:#1e293b;line-height:1.4;
  display:-webkit-box;-webkit-line-clamp:2;-webkit-box-orient:vertical;overflow:hidden;
  text-decoration:none!important;
}
.fav-card-name:hover{color:#e11d48;}
.fav-card-price{font-size:15px;font-weight:700;color:#e11d48;margin-top:auto;}
.fav-card-actions{display:flex;gap:8px;margin-top:4px;}
.fav-btn-cart{
  flex:1;display:flex;align-items:center;justify-content:center;gap:6px;background:#1e293b;
  border:none;border-radius:10px;padding:9px 12px;font-size:13px;font-weight:600;cursor:pointer;
  transition:background .15s;color:#fff!important;text-decoration:none!important;
}
.fav-btn-cart i{font-size:13px;line-height:1;}
.fav-btn-cart:hover{background:#334155;color:#fff!important;}
.fav-btn-del{
  width:38px;flex-shrink:0;display:flex;align-items:center;justify-content:center;
  background:transparent;border:1px solid #e2e8f0;border-radius:10px;color:#e11d48;
  font-size:13px;cursor:pointer;transition:background .15s,border-color .15s,color .15s;
}
.fav-btn-del i{font-size:13px;line-height:1;}
.fav-btn-del:hover{background:#e11d48;border-color:#e11d48;color:#fff;}
.fav-empty{text-align:center;padding:60px 24px;}
.fav-empty-icon{
  width:80px;height:80px;border-radius:20px;background:#fef2f2;display:inline-flex;
  align-items:center;justify-content:center;color:#e11d48;font-size:32px;margin-bottom:20px;
}
.fav-empty-icon i{font-size:32px;line-height:1;}
.fav-empty-title{font-size:18px;font-weight:700;color:#1e293b;margin-bottom:8px;}
.fav-empty-sub{font-size:14px;color:#64748b;}
.fav-empty-sub a{color:#e11d48;font-weight:600;}
