.e-mart-card {
  overflow: hidden;
  padding: 16px;
  border-radius: 32px;
  background: #f5f6f7;
  color: #15294b;
}

.e-mart-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.e-mart-logo {
  display: block;
  width: min(290px, 34%);
  height: auto;
  object-fit: contain;
}

.e-mart-process {
  display: block;
  width: min(565px, 58%);
  height: auto;
  border-radius: 16px;
  object-fit: contain;
}

.e-mart-description {
  margin: 4px 0 20px;
  font-size: 19px;
  line-height: 1.3;
}

.e-mart-banner {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
}

.e-mart-banner-image {
  display: block;
  width: 100%;
  aspect-ratio: 3 / 1;
  object-fit: cover;
}

.e-mart-action-wrap {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 96px;
  height: 84px;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  padding: 10px;
  border-radius: 28px 0 0 0;
  background: #f5f6f7;
}

.e-mart-action {
  width: 58px;
  height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #bbddd0;
  color: #0f3c2b;
  font-family: 'Poppins', sans-serif;
  font-size: 28px;
  font-weight: 300;
  line-height: 1;
  transition: transform .2s ease, background-color .2s ease;
}

.e-mart-action:hover {
  transform: translateY(-2px);
  background: #9dcebc;
  color: #0f3c2b;
}

@media (max-width: 991.98px) {
  .e-mart-header { gap: 24px; }
  .e-mart-logo { width: 32%; }
  .e-mart-process { width: 62%; }
  .e-mart-description { font-size: 17px; }
}

@media (max-width: 767.98px) {
  .e-mart-card { padding: 12px; border-radius: 24px; }
  .e-mart-header { flex-direction: column; align-items: flex-start; gap: 20px; }
  .e-mart-logo { width: min(260px, 74%); }
  .e-mart-process { width: 100%; }
  .e-mart-description { margin: 16px 0 20px; font-size: 16px; }
  .e-mart-banner { min-height: 260px; border-radius: 16px; }
  .e-mart-banner-image { height: 260px; aspect-ratio: auto; object-position: center; }
  .e-mart-action-wrap { width: 76px; height: 70px; padding: 8px; border-radius: 22px 0 0 0; }
  .e-mart-action { width: 48px; height: 48px; font-size: 24px; }
}
