/* ========== Processor Cards ========== */
.processor-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  max-width: 100%;
  width: 100%;
}
.processor-card {
  min-width: 0;
  overflow: hidden;
  padding: 10px 14px;
  border: 1.5px solid #d2d2d7;
  border-radius: 4px;
  background: transparent;
  cursor: pointer;
  transition: all 0.3s;
  user-select: none;
  position: relative;
  font-size: 12px;
}
.processor-card:hover {
  border-color: #86868b;
}
.processor-card.selected {
  background: rgba(0, 0, 0, 0.05);
  border-color: #1d1d1f;
}
.processor-card.selected::after {
  content: "";
  position: absolute;
  top: 6px;
  right: 6px;
  width: 18px;
  height: 18px;
  background: #1d1d1f;
  border-radius: 50%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-size: 12px;
  background-position: center;
  background-repeat: no-repeat;
}
.processor-card__name {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 14px;
  font-weight: 600;
  color: #1d1d1f;
  margin-bottom: 4px;
}
.processor-card__specs {
  min-width: 0;
  overflow-wrap: anywhere;
  font-size: 12px;
  color: #86868b;
  line-height: 1.5;
}
.cur-content {
  width: 520px !important;
  max-width: calc(100vw - 32px) !important;
  padding: 20px 24px !important;
  box-sizing: border-box;
}
.cur-content .tit {
  margin-bottom: 14px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(31, 41, 55, 0.12);
  color: var(--mf601-order-ink);
  font-weight: 700;
}
.cur-content .con {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 30px;
  row-gap: 10px;
}
.cur-content .c-item {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 6px;
  width: 100%;
  margin: 0;
  color: #86868b;
  font-size: 12px;
  line-height: 1.6;
}
.cur-content .l-txt {
  flex: 0 0 auto;
  overflow: visible;
  text-overflow: clip;
  white-space: nowrap;
}
/* ========== Memory Capsules ========== */
.memory-capsules {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: flex-start;
  width: 100%;
}
.memory-capsule {
  padding: 8px 18px;
  border: 1.5px solid #d2d2d7;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 400;
  color: #1d1d1f;
  cursor: pointer;
  transition: all 0.3s;
  background: transparent;
  user-select: none;
}
.memory-capsule:hover {
  border-color: #86868b;
}
.memory-capsule.selected {
  background: #1d1d1f;
  color: #ffffff;
  border-color: #1d1d1f;
  font-weight: 500;
}
/* ========== Line Capsules ========== */
.line-capsules {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: flex-start;
  width: 100%;
}
.line-capsule {
  padding: 8px 18px;
  border: 1.5px solid #d2d2d7;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 400;
  color: #1d1d1f;
  cursor: pointer;
  transition: all 0.3s;
  background: transparent;
  user-select: none;
}
.line-capsule:hover {
  border-color: #86868b;
}
.line-capsule.selected {
  background: #1d1d1f;
  color: #ffffff;
  border-color: #1d1d1f;
  font-weight: 500;
}
.mf-cloud .group-box {
  width: 100%;
}
.mf-cloud .group-box .el-form-item {
  margin-bottom: 0;
}
.mf-cloud .vpc .custom {
  margin-left: 0;
  margin-top: 10px;
}
.mf-cloud .vpc .custom .el-select,
.mf-cloud .vpc .custom .el-input-number {
  width: 89px;
}
/* ========== Image Cards (Apple Style) ========== */
.image-tabs {
  display: flex;
  gap: 0;
  width: 100%;
}
.image-tab {
  padding: 8px 16px;
  font-size: 12px;
  font-weight: 500;
  color: #86868b;
  cursor: pointer;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  transition: all 0.2s;
  user-select: none;
}
.image-tab:hover {
  color: #1d1d1f;
}
.image-tab.active {
  color: #1d1d1f;
  border-bottom-color: #1d1d1f;
  font-weight: 600;
}
.image-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  width: 100%;
}
.image-card {
  min-width: 0;
  overflow: hidden;
  border: 1.5px solid #d2d2d7;
  border-radius: 4px;
  padding: 10px 14px;
  background: transparent;
  cursor: pointer;
  transition: all 0.3s;
  flex-direction: column;
  text-align: center;
  gap: 8px;
  font-size: 12px;
  position: relative;
}
.image-card:hover {
  border-color: #86868b;
}
.image-card.selected {
  border-color: #1d1d1f;
  background: transparent;
}
.image-card__check {
  position: absolute;
  top: 6px;
  right: 6px;
  width: 18px;
  height: 18px;
  background: #1d1d1f;
  border-radius: 50%;
  display: none;
  align-items: center;
  justify-content: center;
}
.image-card.selected .image-card__check {
  display: flex;
}
.image-card__check svg {
  width: 12px;
  height: 12px;
  stroke: #fff;
  stroke-width: 2.5;
  fill: none;
}
.image-card__icon {
  font-size: 32px;
  flex-shrink: 0;
}
.image-card__info {
  min-width: 0;
}
.image-card__name {
  font-size: 12px;
  font-weight: 600;
  color: #1d1d1f;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.image-card__version {
  font-size: 11px;
  color: #86868b;
}
/* ========== Addon Section ========== */
.addon-section {
  margin-bottom: 20px;
}
.addon-section__title {
  font-size: 12px;
  font-weight: 600;
  color: #1d1d1f;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.addon-section__count {
  font-size: 12px;
  color: #86868b;
  font-weight: 400;
}
.addon-card {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-bottom: 0;
  padding: 0;
  background: transparent;
  border-radius: 0;
  border: none;
  animation: slideDown 0.3s ease;
  font-size: 12px;
  width: 100%;
}
.addon-card .disk-row {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  transition: gap 0.2s;
}
.addon-card:hover .disk-row {
  gap: 8px;
}
.addon-card .remove-disk-btn {
  opacity: 0;
  width: 0;
  min-width: 0;
  max-width: 0;
  padding: 0;
  margin: 0 -12px 0 0;
  border: none;
  overflow: hidden;
  transition: all 0.2s;
  flex: 0 0 0px;
}
.addon-card:hover .remove-disk-btn {
  opacity: 1;
  width: 28px;
  min-width: 28px;
  max-width: 28px;
  height: 28px;
  padding: 0;
  margin: 0;
  border: 1px solid rgba(255, 59, 48, 0.2);
  background: rgba(255, 59, 48, 0.06);
  color: #ef4444;
  font-size: 14px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  flex: 0 0 28px;
}
.addon-card:hover .remove-disk-btn:hover {
  background: rgba(255, 59, 48, 0.1);
  border-color: #ef4444;
}
.addon-card .custom-dropdown {
  flex: 1;
}
.addon-card .custom-select {
  flex: 1;
  min-width: 0;
}
.addon-add-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  width: 100%;
  padding: 10px;
  border: 2px dashed #d2d2d7;
  border-radius: 4px;
  background: transparent;
  margin-top: 12px;
  color: #1d1d1f;
  font-size: 12px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
  margin-bottom: 12px;
}
.addon-add-btn:hover {
  border-color: #1d1d1f;
  background: transparent;
}
.addon-add-btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}
.addon-add-btn:disabled:hover {
  border-color: #d2d2d7;
  background: transparent;
}
.remove-disk-btn {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid rgba(255, 59, 48, 0.2);
  background: rgba(255, 59, 48, 0.06);
  color: #ef4444;
  font-size: 14px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
  flex-shrink: 0;
}
.remove-disk-btn:hover {
  background: rgba(255, 59, 48, 0.1);
  border-color: #ef4444;
}
.data-disk-item {
  width: 100%;
  transition: transform 0.4s ease, opacity 0.4s ease, max-height 0.4s ease;
}
.data-disk-item.init {
  animation: none;
  opacity: 1;
}
.data-disk-item.removing {
  animation: diskSlideOut 0.4s ease-in forwards;
  pointer-events: none;
}
.data-disk-item.disk-animate-in {
  animation: diskSlideIn 0.4s ease-out forwards;
}
.data-disks-container {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
  transition: gap 0.3s ease;
}
.data-disk-row {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
}
.data-disk-row .custom-dropdown {
  flex: 0 0 140px;
}
.data-disk-row .custom-slider {
  flex: 1;
  transition: flex 0.2s ease;
}
.data-disk-remove-btn {
  display: none;
  width: 32px;
  height: 24px;
  border: 1px solid #1d1d1f;
  background: transparent;
  color: #1d1d1f;
  font-size: 12px;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  flex-shrink: 0;
}
.data-disk-item:hover .data-disk-remove-btn {
  display: flex;
}
.data-disk-item:hover .data-disk-remove-btn:hover {
  background: #1d1d1f;
  color: #ffffff;
}
/* ========== Auto Password Hint ========== */
.auto-password-hint {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  background: #f5f5f7;
  border-radius: 4px;
  font-size: 12px;
  color: #86868b;
}
/* ========== Collapsible Other Settings ========== */
.apple-collapse {
  border: 1.5px solid #d2d2d7;
  border-radius: 4px;
  background: transparent;
  overflow: hidden;
  width: 100%;
}
.apple-collapse__header {
  padding: 16px 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background 0.2s;
  user-select: none;
}
.apple-collapse__header:hover {
  background: #f5f5f7;
}
.apple-collapse__title {
  font-size: 20px;
  font-weight: 600;
  color: #1d1d1f;
  display: flex;
  align-items: center;
  gap: 8px;
}
.apple-collapse__arrow {
  width: 16px;
  height: 16px;
  transition: transform 0.3s ease;
  color: #86868b;
}
.apple-collapse.open .apple-collapse__arrow {
  transform: rotate(180deg);
}
.apple-collapse__body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.apple-collapse.open .apple-collapse__body {
  max-height: 400px;
}
.apple-collapse__content {
  padding: 0 20px 20px;
}
.apple-collapse__item {
  padding: 12px 0;
  border-bottom: 1px solid #f5f5f7;
}
.apple-collapse__item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.apple-collapse__item-label {
  font-size: 12px;
  color: #86868b;
  margin-bottom: 8px;
}
.apple-collapse__item-value {
  font-size: 12px;
  color: #1d1d1f;
}
/* ========== Cascade Section Disabled ========== */
.config-section.disabled {
  pointer-events: none;
  opacity: 0.4;
  filter: grayscale(0.5);
  transition: all 0.3s;
}
.config-section.disabled * {
  pointer-events: none;
}
.apple-action-bar__agreement {
  display: flex;
  align-items: center;
  gap: 6px;
}
.apple-action-bar__agreement input[type="checkbox"] {
  display: none;
}
.apple-action-bar__checkmark {
  width: 14px;
  height: 14px;
  border: 1.5px solid #d2d2d7;
  border-radius: 3px;
  cursor: pointer;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.apple-action-bar__agreement input:checked + .apple-action-bar__checkmark {
  background: #1d1d1f;
  border-color: #1d1d1f;
}
.apple-action-bar__agreement input:checked + .apple-action-bar__checkmark::after {
  content: "";
  width: 4px;
  height: 7px;
  border: solid #fff;
  border-width: 0 1.5px 1.5px 0;
  transform: rotate(45deg);
  margin-top: -1px;
}
.apple-action-bar__agreement-text {
  font-size: 11px;
  color: #86868b;
  white-space: nowrap;
}
.apple-action-bar__agreement-text a {
  color: #1d1d1f;
  text-decoration: none;
}
.apple-action-bar__agreement-text a:hover {
  text-decoration: underline;
}
/* Coupon buttons */
.apple-action-bar .order-coupon-btn {
  font-size: 11px;
  padding: 4px 10px;
  border-radius: 6px;
  border: 1px solid #d2d2d7;
  background: transparent;
  color: #1d1d1f;
  cursor: pointer;
  transition: all 0.2s;
  white-space: nowrap;
}
.apple-action-bar .order-coupon-btn:hover {
  background: rgba(0, 0, 0, 0.05);
  color: #1d1d1f;
  border-color: #1d1d1f;
}
/* ========== Responsive ========== */
@media (max-width: 768px) {
  .shop-layout {
    flex-direction: column;
    width: 100%;
    max-width: 100%;
    padding: 72px 0 0;
    gap: 18px;
    box-sizing: border-box;
  }
  .shop-layout__visual {
    position: relative;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    height: 340px;
    aspect-ratio: auto;
    top: auto;
  }
  .shop-layout__config {
    width: 100%;
    max-width: none;
  }
  .config-section {
    padding: 36px 0;
  }
  .config-section__title {
    font-size: 24px;
  }
  .processor-cards {
    grid-template-columns: 1fr;
  }
  .region-tags {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .image-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .apple-action-bar {
    padding: 10px 16px;
  }
  .apple-action-bar__inner {
    flex-wrap: wrap;
    gap: 10px;
  }
  .apple-action-bar__config {
    display: none;
  }
  .apple-action-bar__right {
    width: 100%;
    justify-content: space-between;
  }
  .apple-action-bar__purchase {
    flex-wrap: wrap;
    gap: 8px;
  }
  .apple-action-bar__price-row {
    flex-wrap: wrap;
    gap: 8px;
  }
  .memory-capsules,
  .line-capsules {
    gap: 8px;
  }
  .memory-capsule,
  .line-capsule {
    padding: 10px 20px;
    font-size: 14px;
  }
}
/* ========== Billing Mode Pill Toggle ========== */
.billing-toggle-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
  padding: 0;
  width: 100%;
}
.billing-toggle-row__label {
  font-size: 12px;
  color: #86868b;
}
.pill-toggle {
  position: relative;
  display: flex;
  align-items: center;
  background: rgba(0, 0, 0, 0.04);
  border-radius: 20px;
  padding: 3px;
  gap: 0;
}
.pill-toggle__slider {
  position: absolute;
  top: 3px;
  left: 3px;
  width: calc(50% - 3px);
  height: calc(100% - 6px);
  background: #1d1d1f;
  border-radius: 17px;
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 0;
  transform: translateX(100%);
}
.pill-toggle__btn {
  position: relative;
  z-index: 1;
  padding: 6px 24px;
  font-size: 12px;
  font-weight: 500;
  color: #86868b;
  cursor: pointer;
  transition: color 0.3s;
  background: transparent;
  border: none;
  user-select: none;
  white-space: nowrap;
  flex: 1;
  text-align: center;
  font-family: inherit;
}
.pill-toggle__btn.active {
  color: #ffffff;
  font-weight: 600;
}
.pill-toggle__btn:hover:not(.active) {
  color: #1d1d1f;
}
/* ========== Server Type Cards ========== */
.server-types {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin-bottom: 20px;
  width: 100%;
}
.server-type-card {
  background: transparent;
  border: 1.5px solid #d2d2d7;
  border-radius: 4px;
  padding: 16px 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-width: 0;
  overflow: hidden;
}
.server-type-card:hover {
  border-color: #86868b;
  transform: translateY(-1px);
}
.server-type-card.selected {
  border-color: #1d1d1f;
  background: rgba(0, 0, 0, 0.03);
}
.server-type-card__check {
  position: absolute;
  top: 6px;
  right: 6px;
  width: 18px;
  height: 18px;
  background: #1d1d1f;
  border-radius: 50%;
  display: none;
  align-items: center;
  justify-content: center;
}
.server-type-card.selected .server-type-card__check {
  display: flex;
}
.server-type-card__check svg {
  width: 12px;
  height: 12px;
  stroke: #fff;
  stroke-width: 2.5;
  fill: none;
}
.server-type-card__badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 10px;
  color: #e88d2a;
  background: rgba(255, 169, 78, 0.1);
  border: 1px solid rgba(255, 169, 78, 0.3);
  padding: 2px 8px;
  border-radius: 8px;
  margin-bottom: 8px;
}
.server-type-card__badge img {
  width: 12px;
  height: 12px;
}
.server-type-card__name {
  font-size: 13px;
  font-weight: 600;
  color: #1d1d1f;
  margin-bottom: 6px;
  text-align: center;
  width: 100%;
  padding: 0 4px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  box-sizing: border-box;
}
.server-type-card__desc {
  font-size: 11px;
  color: #86868b;
  line-height: 1.4;
  text-align: center;
  width: 100%;
  padding: 0 4px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  box-sizing: border-box;
}
/* ========== Quick Package Cards ========== */
.quick-packages {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  width: 100%;
}
.quick-package-card {
  min-width: 0;
  overflow: hidden;
  background: transparent;
  border: 1.5px solid #d2d2d7;
  border-radius: 4px;
  padding: 20px 16px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
  position: relative;
}
.quick-package-card:hover {
  border-color: #86868b;
  transform: translateY(-1px);
}
.quick-package-card.selected {
  border-color: #1d1d1f;
  background: rgba(0, 0, 0, 0.03);
}
.quick-package-card__check {
  position: absolute;
  top: 6px;
  right: 6px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #1d1d1f;
  display: none;
  align-items: center;
  justify-content: center;
}
.quick-package-card.selected .quick-package-card__check {
  display: flex;
}
.quick-package-card__check svg {
  width: 12px;
  height: 12px;
  stroke: #fff;
  stroke-width: 2.5;
  fill: none;
}
.quick-package-card__name {
  font-size: 14px;
  font-weight: 600;
  color: #1d1d1f;
  margin-bottom: 16px;
}
.quick-package-card__specs {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
}
.quick-package-card__spec {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: #86868b;
}
.quick-package-card__spec-value {
  color: #1d1d1f;
  font-weight: 500;
}
.quick-package-card__price {
  font-size: 20px;
  font-weight: 700;
  color: #1d1d1f;
}
.quick-package-card__price-unit {
  font-size: 12px;
  font-weight: 400;
  color: #86868b;
}
/* ========== Login Method (segmented button group) ========== */
.login-method-group {
  display: flex;
  gap: 0;
  margin-bottom: 12px;
  border: 1.5px solid #d2d2d7;
  border-radius: 4px;
  overflow: hidden;
  width: 100%;
}
.login-method-btn {
  padding: 8px 20px;
  font-size: 12px;
  font-weight: 500;
  color: #86868b;
  cursor: pointer;
  transition: all 0.2s;
  background: transparent;
  border: none;
  border-right: 1px solid #d2d2d7;
  user-select: none;
  font-family: inherit;
}
.login-method-btn:last-child {
  border-right: none;
}
.login-method-btn.active {
  background: #1d1d1f;
  color: #ffffff;
}
.login-method-btn:hover:not(.active) {
  background: rgba(0, 0, 0, 0.04);
  color: #1d1d1f;
}
/* ========== Auto Password Hint ========== */
.auto-password-hint {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  background: rgba(0, 0, 0, 0.02);
  border: 1px solid #d2d2d7;
  border-radius: 4px;
  font-size: 12px;
  color: #86868b;
}
/* ========== SSH Key Form ========== */
.ssh-key-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
}
.ssh-key-row {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
}
.ssh-key-label {
  font-size: 12px;
  color: #1d1d1f;
  font-weight: 500;
  flex-shrink: 0;
  width: 56px;
}
.ssh-key-hint {
  font-size: 12px;
  color: #86868b;
}
.ssh-key-hint a {
  color: #1d1d1f;
  text-decoration: underline;
}
/* ========== Net Form Row (for quick config) ========== */
.net-form-row {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 0;
  align-items: flex-start;
  width: 100%;
}
.net-form-row__label {
  font-size: 12px;
  color: #1d1d1f;
  font-weight: 500;
}
/* ========== Form Row / Form Group ========== */
.form-row {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
}
.form-group {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.form-group__label {
  font-size: 12px;
  font-weight: 500;
  color: #1d1d1f;
}
/* ========== Custom Input ========== */
.custom-input {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid #d2d2d7;
  border-radius: 4px;
  font-size: 12px;
  color: #1d1d1f;
  background: transparent;
  outline: none;
  transition: border-color 0.2s;
  font-family: inherit;
}
.custom-input:focus {
  border-color: #1d1d1f;
  box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.05);
}
/* ========== Hidden utility ========== */
.hidden {
  display: none !important;
}
/* MF601 configurable left panel and product selector */
.mf601-visual-copy {
  position: absolute;
  top: clamp(48px, 8vw, 96px);
  left: clamp(36px, 7vw, 88px);
  max-width: min(420px, 70%);
  color: #1d1d1f;
  z-index: 2;
}
.mf601-visual-copy h1 {
  font-size: clamp(34px, 4vw, 54px);
  line-height: 1.16;
  font-weight: 800;
  margin: 0 0 18px;
}
.mf601-visual-copy__subtitle {
  font-size: clamp(22px, 2.4vw, 34px);
  line-height: 1.25;
  font-weight: 700;
  margin: 0 0 24px;
}
.mf601-visual-copy__desc {
  color: rgba(29, 29, 31, 0.34);
  font-size: 14px;
  line-height: 1.6;
  text-transform: uppercase;
  margin: 0 0 28px;
}
.mf601-visual-copy__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 270px;
  height: 29px;
  padding: 0 18px;
  border-radius: 3px;
  background: #303033;
  color: #fff;
  font-size: 13px;
  text-decoration: none;
}
.mf601-product-selector__list:empty::before {
  content: "No products selected";
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 108px;
  width: 100%;
  border: 1px dashed rgba(29, 29, 31, 0.18);
  border-radius: 6px;
  color: rgba(29, 29, 31, 0.45);
  font-size: 13px;
}
.mf601-product-card {
  cursor: pointer;
}
.mf601-product-card.selected,
.mf601-product-card:hover {
  border-color: rgba(29, 29, 31, 0.46);
  box-shadow: 0 10px 26px rgba(20, 23, 31, 0.08);
}
@media (max-width: 900px) {
  .mf601-visual-copy {
    position: static;
    max-width: none;
    padding: 24px 22px 0;
  }
  .mf601-visual-copy__button {
    min-width: 0;
    width: 100%;
  }
}
