html, body {
  background: #ffffff;
}

.el-menu-demo .menu-model {
  flex: 1;
  overflow-x: auto;
  overflow-y: hidden;
  scrollbar-width: none;
}

.el-menu-demo .menu-model::-webkit-scrollbar {
  display: none;
}

.mesimgo-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
}

.mesimgo-hero {
  padding: 34px 0 18px;
}

.mesimgo-hero-title {
  font-size: 34px;
  line-height: 42px;
  font-weight: 700;
  color: #111827;
  margin: 0;
}

.mesimgo-hero-subtitle {
  margin: 10px 0 0;
  color: #6b7280;
  font-size: 14px;
  line-height: 22px;
}

.mesimgo-searchbar {
  margin-top: 18px;
  display: flex;
  gap: 12px;
  align-items: center;
}

.mesimgo-section {
  padding: 18px 0;
}

.mesimgo-section-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin: 0 0 12px;
}

.mesimgo-section-title h2 {
  margin: 0;
  font-size: 18px;
  font-weight: 700;
  color: #111827;
}

.mesimgo-country-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 12px;
}

.mesimgo-country-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  border: 1px solid #eef2f7;
  border-radius: 999px;
  background: #ffffff;
  cursor: pointer;
  transition: background .15s ease, border-color .15s ease;
}

.mesimgo-country-chip:hover {
  border-color: #dbeafe;
  background: #f8fafc;
}

.mesimgo-country-flag {
  width: 22px;
  height: 22px;
  border-radius: 999px;
  object-fit: cover;
  border: 1px solid rgba(17, 24, 39, .08);
}

.mesimgo-country-name {
  font-size: 13px;
  color: #111827;
  line-height: 18px;
  white-space: nowrap;
}

.mesimgo-products-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

@media (max-width: 1024px) {
  .mesimgo-products-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .mesimgo-products-grid {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
}

.mesimgo-product-card {
  border: 1px solid #eef2f7;
  border-radius: 14px;
  background: #ffffff;
  padding: 14px;
  cursor: pointer;
  transition: transform .15s ease, border-color .15s ease, box-shadow .15s ease;
}

.mesimgo-product-card:hover {
  transform: translateY(-1px);
  border-color: #dbeafe;
  box-shadow: 0 10px 20px rgba(17, 24, 39, .06);
}

.mesimgo-product-name {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 700;
  color: #111827;
  margin: 0;
}

.mesimgo-product-desc {
  margin: 8px 0 0;
  color: #6b7280;
  font-size: 13px;
  line-height: 20px;
}

.mesimgo-plan-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

@media (max-width: 1024px) {
  .mesimgo-plan-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .mesimgo-plan-grid {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
}

.mesimgo-plan-card {
  border: 1px solid #eef2f7;
  border-radius: 16px;
  background: #ffffff;
  padding: 18px 16px 16px;
  transition: transform .15s ease, border-color .15s ease, box-shadow .15s ease, background .15s ease;
}

.mesimgo-plan-card:hover {
  transform: translateY(-1px);
  border-color: #dbeafe;
  box-shadow: 0 14px 26px rgba(17, 24, 39, .08);
}

.mesimgo-plan-card.is-active {
  background: #0ea5a4;
  border-color: rgba(14, 165, 164, .35);
}

.mesimgo-plan-top {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
  margin-bottom: 12px;
}

.mesimgo-plan-icon {
  width: 66px;
  height: 66px;
  border-radius: 18px;
  background: #0ea5a4;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 18px rgba(14, 165, 164, .2);
}

.mesimgo-plan-card.is-active .mesimgo-plan-icon {
  background: #ffffff;
  box-shadow: none;
}

.mesimgo-plan-icon svg {
  width: 34px;
  height: 34px;
  color: #ffffff;
}

.mesimgo-plan-card.is-active .mesimgo-plan-icon svg {
  color: #0ea5a4;
}

.mesimgo-plan-name {
  text-align: center;
  font-weight: 700;
  color: #111827;
  font-size: 15px;
  margin: 0;
}

.mesimgo-plan-card.is-active .mesimgo-plan-name {
  color: #ffffff;
}

.mesimgo-plan-price {
  text-align: center;
  margin-top: 10px;
  margin-bottom: 10px;
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 4px;
}

.mesimgo-plan-price .amount {
  font-size: 34px;
  font-weight: 800;
  letter-spacing: -.02em;
  color: #0ea5a4;
  line-height: 1;
}

.mesimgo-plan-card.is-active .mesimgo-plan-price .amount {
  color: #ffffff;
}

.mesimgo-plan-price .unit {
  font-size: 13px;
  color: #6b7280;
}

.mesimgo-plan-card.is-active .mesimgo-plan-price .unit {
  color: rgba(255, 255, 255, .9);
}

.mesimgo-plan-spec {
  margin: 12px 0 14px;
  padding: 0;
  list-style: none;
  border-top: 1px dashed rgba(107, 114, 128, .35);
}

.mesimgo-plan-card.is-active .mesimgo-plan-spec {
  border-top-color: rgba(255, 255, 255, .35);
}

.mesimgo-plan-spec li {
  padding: 10px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px dashed rgba(107, 114, 128, .35);
  font-size: 13px;
  color: #111827;
}

.mesimgo-plan-card.is-active .mesimgo-plan-spec li {
  border-bottom-color: rgba(255, 255, 255, .35);
  color: #ffffff;
}

.mesimgo-plan-spec .k {
  color: #6b7280;
}

.mesimgo-plan-card.is-active .mesimgo-plan-spec .k {
  color: rgba(255, 255, 255, .9);
}

.mesimgo-plan-btn {
  display: flex;
  justify-content: center;
}

.mesimgo-plan-card.is-active .el-button {
  background: #ffffff;
  border-color: #ffffff;
  color: #0ea5a4;
}
