
/* ── Modal ── */
.cc_mk3yghcw_account_addresses .kombos-modal, .cc_mk3yghcw_product_detail_reviews .kombos-modal {
  position: fixed;
  inset: 0;
  z-index: var(--kombos-z-overlay);
  background: rgba(0, 0, 0, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s;
  padding: 1rem;
}

.cc_mk3yghcw_account_addresses .kombos-modal--open, .cc_mk3yghcw_product_detail_reviews .kombos-modal--open {
  opacity: 1;
}

.cc_mk3yghcw_account_addresses .kombos-modal__panel, .cc_mk3yghcw_product_detail_reviews .kombos-modal__panel {
  background: var(--kombos-white);
  border-radius: 6px;
  width: 100%;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  transform: translateY(1rem);
  transition: transform 0.3s;
}

.cc_mk3yghcw_account_addresses .kombos-modal--open .kombos-modal__panel, .cc_mk3yghcw_product_detail_reviews .kombos-modal--open .kombos-modal__panel {
  transform: translateY(0);
}

.cc_mk3yghcw_account_addresses .kombos-modal__header, .cc_mk3yghcw_product_detail_reviews .kombos-modal__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--kombos-white);
  padding: 1.5rem;
  border-bottom: 1px solid var(--kombos-gray-200);
  border-radius: 6px 6px 0 0;
}

.cc_mk3yghcw_account_addresses .kombos-modal__title, .cc_mk3yghcw_product_detail_reviews .kombos-modal__title {
  color: var(--kombos-gray-900);
}

.cc_mk3yghcw_account_addresses .kombos-modal__close, .cc_mk3yghcw_product_detail_reviews .kombos-modal__close {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  color: var(--kombos-gray-700);
  font-size: 1.25rem;
}

.cc_mk3yghcw_account_addresses .kombos-modal__body, .cc_mk3yghcw_product_detail_reviews .kombos-modal__body {
  padding: 1.5rem;
  overflow-y: auto;
}

.cc_mk3yghcw_account_addresses .kombos-modal__footer, .cc_mk3yghcw_product_detail_reviews .kombos-modal__footer {
  background: var(--kombos-white);
  padding: 1.5rem;
  border-top: 1px solid var(--kombos-gray-200);
  border-radius: 0 0 6px 6px;
  display: flex;
  gap: 0.75rem;
  justify-content: flex-end;
}
