/* ═══════════════════════════════════════
   INFLUENCER LOOP CARD v2.2
   ═══════════════════════════════════════ */

.elementor-loop-item .e-loop-item,
.elementor-loop-item {
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  padding: 0 !important;
}

/* ── পুরো card ── */
.ilc-card-wrap {
  display: flex;
  flex-direction: column;
  border-radius: 20px;
  overflow: hidden;
  background: #fff;
  border: 1px solid #eeeef8;
  box-shadow: 0 4px 20px rgba(0,0,0,0.07);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-decoration: none !important;
  color: inherit !important;
  height: 100%;
}

.ilc-card-wrap:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(92,107,192,0.16);
  text-decoration: none !important;
}

/* ── Image wrapper — SQUARE ── */
.ilc-card-img-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  flex-shrink: 0;
  background: #f0f0f5;
}

.ilc-card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
  transition: transform 0.4s ease;
}

.ilc-card-wrap:hover .ilc-card-img-wrap img {
  transform: scale(1.05);
}

.ilc-card-img-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 60px;
  color: #ccc;
  background: #f5f5f5;
}

/* ══════════════════════════════════════
   NICHE — corner ribbon (Coming Soon style)
   ══════════════════════════════════════ */
.ilc-card-niche-corner {
  position: absolute;
  top: 0;
  left: 0;
  width: 110px;
  height: 110px;
  overflow: hidden;
  z-index: 3;
  pointer-events: none;
}

.ilc-card-niche-labels {
  position: absolute;
  top: 26px;
  left: -36px;
  width: 145px;
  background: linear-gradient(135deg, #3949ab, #5c6bc0);
  transform: rotate(-45deg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1px;
  padding: 6px 0;
  box-shadow: 0 3px 12px rgba(57,73,171,0.5);
}

.ilc-card-niche-tag {
  font-size: 9.5px;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: 0.7px;
  text-transform: uppercase;
  white-space: nowrap;
  line-height: 1.4;
}

/* ── Card body ── */
.ilc-card-body {
  padding: 14px 16px 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

/* ── Name + Country row ── */
.ilc-card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.ilc-card-name {
  font-size: 18px;
  font-weight: 800;
  color: #1a1a2e;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  flex: 1;
  min-width: 0;
  line-height: 1.2;
}

.ilc-card-country {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: #f0f0ff;
  border: 1px solid #e0e0f5;
  border-radius: 20px;
  padding: 4px 11px;
  font-size: 11px;
  font-weight: 600;
  color: #5c6bc0;
  white-space: nowrap;
  flex-shrink: 0;
}

/* ── View Profile Button ── */
.ilc-card-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  background: linear-gradient(135deg, #5c6bc0, #3949ab);
  color: #fff;
  border-radius: 50px;
  padding: 11px 0;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.3px;
  box-shadow: 0 4px 14px rgba(92,107,192,0.25);
  transition: all 0.25s;
}

.ilc-card-wrap:hover .ilc-card-btn {
  background: linear-gradient(135deg, #3949ab, #5c6bc0);
  box-shadow: 0 8px 22px rgba(92,107,192,0.4);
}

/* ── Responsive ── */
@media (max-width: 768px) {
  .ilc-card-name { font-size: 15px; }
  .ilc-card-body { padding: 12px 14px 14px; }
  .ilc-card-niche-corner { width: 90px; height: 90px; }
  .ilc-card-niche-labels { top: 20px; left: -30px; width: 120px; padding: 5px 0; }
  .ilc-card-niche-tag { font-size: 8.5px; }
}
