.mamita-order-mode-open {
  overflow: hidden;
}

.mamita-order-mode-overlay {
  position: fixed;
  inset: 0;
  z-index: 999999;
  display: grid;
  place-items: center;
  padding: 20px;
  background: rgba(15, 18, 20, .72);
  backdrop-filter: blur(5px);
}

.mamita-order-mode-overlay.is-hidden {
  display: none;
}

.mamita-order-mode-card {
  width: min(560px, 100%);
  max-height: calc(100vh - 40px);
  overflow: auto;
  box-sizing: border-box;
  padding: 24px;
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 24px 80px rgba(0, 0, 0, .28);
}

.mamita-order-mode-card h2 {
  margin: 0;
  font-size: clamp(25px, 5vw, 34px);
  line-height: 1.1;
}

.mamita-order-mode-intro {
  margin: 9px 0 20px;
  color: #5f6368;
}

.mamita-order-mode-options {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 13px;
}

.mamita-order-mode-option {
  width: 100%;
  min-height: 145px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 7px;
  padding: 20px;
  border: 2px solid #e7e7e7;
  border-radius: 18px;
  background: #fff;
  color: inherit;
  text-align: left;
  cursor: pointer;
  transition: transform .15s ease,
    border-color .15s ease,
    box-shadow .15s ease;
}

.mamita-order-mode-option:hover,
.mamita-order-mode-option:focus-visible {
  transform: translateY(-2px);
  border-color: currentColor;
  box-shadow: 0 10px 25px rgba(0, 0, 0, .08);
  outline: none;
}

.mamita-order-mode-icon {
  width: 54px;
  height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #f4f4f4;
  font-size: 27px;
  line-height: 1;
}

.mamita-order-mode-option strong {
  font-size: 20px;
}

.mamita-order-mode-option small {
  color: #646970;
  line-height: 1.35;
}

.mamita-order-mode-warning {
  margin-top: 15px;
  padding: 14px;
  border: 1px solid #e3b341;
  border-radius: 13px;
  background: #fff8df;
  color: #3d3100;
}

.mamita-order-mode-warning strong {
  display: block;
  margin-bottom: 5px;
}

.mamita-order-mode-warning p {
  margin: 0 0 6px;
}

@media (max-width: 620px) {
  .mamita-order-mode-card {
    padding: 20px;
  }

  .mamita-order-mode-options {
    grid-template-columns: 1fr;
  }

  .mamita-order-mode-option {
    min-height: 118px;
  }
}


.mamita-delivery-closed-notice {
  width: min(1120px, calc(100% - 32px));
  box-sizing: border-box;
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin: 16px auto;
  padding: 16px 18px;
  border: 1px solid #e3b341;
  border-radius: 15px;
  background: #fff8df;
  color: #3d3100;
  box-shadow: 0 4px 14px rgba(0, 0, 0, .06);
}

.mamita-delivery-closed-notice__icon {
  width: 40px;
  height: 40px;
  flex: 0 0 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #fff1b8;
  font-size: 20px;
}

.mamita-delivery-closed-notice__content strong {
  display: block;
  margin-bottom: 4px;
  font-size: 16px;
}

.mamita-delivery-closed-notice__content p {
  margin: 0;
  line-height: 1.45;
}

@media (max-width: 620px) {
  .mamita-delivery-closed-notice {
    width: calc(100% - 24px);
    margin: 12px auto;
    padding: 14px;
  }
}
