/* =============================================
   MCAKEY — HERO COLLAGE CARDS
   ============================================= */

.mca-collage-wrap {
  position: relative;
  width: 100%;
  height: 420px;
}

.mca-bg-circle {
  position: absolute;
  width: 360px;
  height: 360px;
  background: linear-gradient(135deg, #EBF5FF 0%, #F0FFF0 100%);
  border-radius: 50%;
  right: -20px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 0;
}

.mca-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.10);
  padding: 16px;
  position: absolute;
  z-index: 2;
  border: 1px solid #f0f0f0;
  display: flex;
  flex-direction: column;
}

.mca-hero-card-main {
  width: 200px;
  top: 50%;
  left: 60px;
  transform: translateY(-50%) rotate(-4deg);
}

.mca-hero-card-secondary {
  width: 175px;
  top: 50px;
  right: 0;
  transform: rotate(5deg);
}

.mca-hero-card-small {
  width: 150px;
  bottom: 50px;
  right: 10px;
  transform: rotate(-3deg);
}

.mca-card-badge {
  position: absolute;
  top: -8px;
  right: -8px;
  font-size: 9px;
  font-weight: 800;
  padding: 3px 8px;
  border-radius: 10px;
  font-family: inherit;
  z-index: 3;
}

.mca-card-img img {
    border-radius: 8px !important;
}
.mca-card-img {
  width: 100%;
  aspect-ratio: 3/4;
  border-radius: 8px;
  margin-bottom: 10px;
  overflow: hidden;
}

.mca-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 8px;
}

.mca-card-img-placeholder {
  background: linear-gradient(135deg, rgba(30,144,255,0.10), rgba(13,59,46,0.10));
}

.mca-card-img-link {
  display: block;
  text-decoration: none;
}

.mca-card-name {
  font-size: 11px;
  font-weight: 700;
  color: var(--e-global-color-text);
  line-height: 1.3;
  margin-bottom: 6px;
  font-family: inherit;
}

.mca-card-price {
  font-size: 14px;
  font-weight: 800;
  color: var(--e-global-color-secondary);
  margin-bottom: 8px;
  font-family: inherit;
}

.mca-card-price .woocommerce-Price-amount {
  color: var(--e-global-color-secondary);
  font-size: 14px;
  font-weight: 800;
}

.mca-card-btn {
  margin-top: auto;
  width: 100%;
  background: var(--e-global-color-secondary);
  color: #fff;
  border: none;
  border-radius: 6px;
  padding: 8px;
  font-size: 11px;
  font-weight: 700;
  cursor: pointer;
  font-family: inherit;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  text-decoration: none;
  transition: background 0.2s ease;
}

.mca-card-btn:hover {
  background: var(--e-global-color-accent);
  color: var(--e-global-color-secondary);
}

.floating-badge {
  position: absolute;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.10);
  padding: 8px 12px;
  display: flex;
  align-items: center;
  gap: 7px;
  z-index: 5;
  border: 1px solid #f0f0f0;
  font-size: 11px;
  font-weight: 600;
  color: #1A1A1A;
  font-family: inherit;
}

.mca-fb-top { top: 20px; left: 0; }
.mca-fb-bottom { bottom: 30px; left: 0; }

@media (max-width: 767px) {
  .mca-collage-wrap { height: 300px; }
  .mca-hero-card-main { width: 140px; left: 30px; }
  .mca-hero-card-secondary { width: 120px; }
  .mca-hero-card-small { display: none; }
  .mca-bg-circle { width: 240px; height: 240px; }
}
