/* Domain Search Cart Styles */
.domain-cart-container {
  width: 100%;
  max-width: 100%;
  margin: 2rem auto;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  display: grid;
  gap: 1.5rem;
}

.domain-cart-page-title {
  margin-bottom: -0.5rem;
}

.domain-cart-page-title-text {
  margin: 0;
  font-size: 1.75rem;
  font-weight: 800;
  color: #0f172a;
  line-height: 1.2;
}

.domain-cart-card {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

@media (min-width: 992px) {
  .domain-cart-container {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    align-items: stretch;
  }

  .domain-cart-page-title {
    grid-column: 1 / -1;
  }

  .domain-cart-card {
    height: 100%;
  }
}

.domain-cart-card--domain .domain-cart-domain-section {
  margin: 0;
  border: none;
  border-radius: 0;
  box-shadow: none;
}

.domain-cart-header {
  padding: 1.5rem;
  border-bottom: 1px solid #f1f5f9;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.domain-cart-title {
  margin: 0;
  font-size: 1.1rem;
  font-weight: 700;
  color: #0f172a;
}


.domain-cart-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.domain-cart-main-section {
  padding: 1.5rem 1.5rem;
}

.domain-cart-section-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
}

.domain-cart-section-title {
  margin: 0 0 0.35rem;
  font-size: 1.1rem;
  font-weight: 700;
  color: #0f172a;
}

.domain-cart-section-text {
  margin: 0;
  color: #64748b;
  font-size: 0.92rem;
  line-height: 1.6;
}

.domain-cart-inline-action {
  border: 1px solid #bfdbfe;
  color: #1d4ed8;
  background: #eff6ff;
  border-radius: 999px;
  padding: 0.75rem 1rem;
  font-size: 0.875rem;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.2s ease;
}

.domain-cart-inline-action:hover {
  border-color: #93c5fd;
  background: #dbeafe;
}

.domain-cart-inline-action--primary {
  border-color: #1b8772;
  background: #1b8772;
  color: #fff;
}

.domain-cart-inline-action--primary:hover {
  border-color: #166b5a;
  background: #166b5a;
}

.domain-cart-item {
  padding: 1.125rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #f1f5f9;
  transition: background-color 0.2s;
}

.domain-cart-item:last-child {
  border-bottom: none;
}

.domain-cart-item--plan {
  background: #fbfdff;
  border: 1px solid #e7edf5;
  border-radius: 12px;
}

.domain-cart-plan-footer {
  padding-top: 0.875rem;
}

.domain-cart-item--nested {
  margin: 0.75rem 1rem 0;
  border: 1px solid #e7edf5;
  border-radius: 10px;
  padding: 1rem;
  background: #fff;
}

.domain-cart-plan-domains {
  padding-bottom: 1rem;
}

.domain-cart-subsection-title {
  font-size: 0.85rem;
  font-weight: 700;
  color: #475569;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin: 1rem 1.5rem 0.25rem;
}

.domain-cart-item-info {
  display: flex;
  align-items: center;
  gap: 1rem;
  min-width: 0;
  flex: 1 1 auto;
}

.domain-cart-item-icon {
  width: 48px;
  height: 48px;
  background: #dcfce7;
  /* Green tint */
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #16a34a;
  flex: 0 0 48px;
}

.domain-cart-item-icon--plan {
  background: #eff6ff;
  color: #2563eb;
  border-radius: 999px;
}

.domain-cart-item-details {
  display: flex;
  flex-direction: column;
  min-width: 0;
  flex: 1 1 auto;
}

.domain-cart-item-domain {
  font-weight: 700;
  color: #0f172a;
  font-size: 1.1rem;
  line-height: 1.3;
}

.domain-cart-item-meta {
  font-size: 0.875rem;
  color: #64748b;
  line-height: 1.5;
  word-break: break-word;
}

.domain-cart-item-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 1rem;
  flex: 0 0 auto;
  margin-left: 1rem;
}

.domain-cart-item-buttons {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.domain-cart-item-buttons--plan {
  gap: 0.75rem;
}

.domain-cart-item-price-block {
  text-align: right;
  min-width: 120px;
}

.domain-cart-item-price {
  display: block;
  font-weight: 700;
  color: #0f172a;
  font-size: 1.1rem;
  line-height: 1.3;
  white-space: nowrap;
}

.domain-cart-item-edit,
.domain-cart-item-remove {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  transition: color 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.domain-cart-item-edit {
  color: #94a3b8;
}

button.domain-cart-item-edit {
  box-shadow: none;
}

.domain-cart-item-edit:hover {
  color: #1b8772
    /* Blue hover for edit */
}

.domain-cart-item-remove {
  color: #94a3b8;
}

.domain-cart-item-remove:hover {
  color: #ef4444;
  /* Red hover for remove */
  box-shadow: none;
}

.domain-cart-link-domain-btn {
  border: 1px solid #1b8772;
  color: #1b8772;
  background: #fff;
  border-radius: 999px;
  padding: 0.4rem 0.85rem;
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.domain-cart-link-domain-btn:hover {
  background: #1b8772;
  color: #fff;
}

.domain-cart-link-domain-note {
  font-size: 0.75rem;
  color: #64748b;
  font-weight: 500;
  max-width: 180px;
  text-align: right;
}

.domain-cart-add-more {
  padding: 1.5rem;
  border-top: 1px solid #f1f5f9;
}

.domain-cart-add-more-actions {
  display: flex;
  gap: 0.75rem;
}

.domain-cart-add-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #0f172a;
  font-weight: 600;
  background: none;
  border: 1px solid #e2e8f0;
  padding: 0.75rem 1.5rem;
  border-radius: 999px;
  cursor: pointer;
  transition: all 0.2s;
  width: 100%;
  justify-content: center;
}

.domain-cart-add-btn:hover {
  border-color: #cbd5e1;
  background: #f8fafc;
}

.domain-cart-add-btn--hosting {
  border-color: #bfdbfe;
  color: #1d4ed8;
  background: #eff6ff;
}

.domain-cart-add-btn--hosting:hover {
  border-color: #93c5fd;
  background: #dbeafe;
}

.domain-cart-domain-section {
  margin: 0;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  overflow: hidden;
  background: #fff;
}

.domain-cart-card--domain .domain-cart-domain-section {
  border: none;
}

.domain-cart-card--domain .domain-cart-section-head {
  padding: 1.5rem;
  margin: 0;
  border-bottom: 1px solid #f1f5f9;
}

.domain-cart-domain-switcher {
  display: grid;
  grid-template-columns: 1fr;
  border-bottom: 1px solid #e2e8f0;
}

.domain-cart-domain-switch {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 1rem 1.25rem;
  font-weight: 700;
  color: #0f172a;
  cursor: pointer;
  transition: color 0.2s ease, background-color 0.2s ease;
}

.domain-cart-domain-switch+.domain-cart-domain-switch {
  border-left: 1px solid #e2e8f0;
}

.domain-cart-domain-switch input {
  display: none;
}

.domain-cart-domain-switch.is-active {
  color: #fff;
  background: #1b8772;
}

.domain-cart-domain-switch.is-active span {
  color: #fff;
}

.domain-cart-domain-switch span {
  display: block;
}

.domain-cart-domain-section.is-loading .domain-cart-domain-switcher {
  opacity: 0.65;
}

.domain-cart-domain-section.is-loading .domain-cart-domain-switch {
  cursor: wait;
  pointer-events: none;
}

.domain-cart-domain-section.is-attention .domain-cart-domain-switcher {
  border: 2px solid #f59e0b;
  border-radius: 14px;
  box-shadow: 0 0 0 0 rgba(245, 158, 11, 0.45);
  animation: domainCartAttentionPulse 0.65s ease-in-out 4;
}

.domain-cart-domain-section.is-attention .domain-cart-domain-switch {
  background-image: linear-gradient(0deg, rgba(245, 158, 11, 0.08), rgba(245, 158, 11, 0.08));
}

@keyframes domainCartAttentionPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(245, 158, 11, 0.45);
  }

  70% {
    box-shadow: 0 0 0 10px rgba(245, 158, 11, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(245, 158, 11, 0);
  }
}

.domain-cart-domain-panel {
  display: none;
  padding: 1.5rem;
}

.domain-cart-domain-panel.is-active {
  display: block;
}

.domain-cart-domain-title {
  margin: 0 0 0.35rem;
  color: #0f172a;
  font-size: 1.1rem;
  font-weight: 700;
}

.domain-cart-domain-text {
  margin: 0;
  color: #64748b;
  font-size: 0.95rem;
}

.domain-cart-domain-linker {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  margin: 1.25rem 0 1rem;
}

.domain-cart-domain-linker-label {
  font-size: 0.875rem;
  font-weight: 700;
  color: #0f172a;
}

.domain-cart-plan-select {
  width: 100%;
  min-height: 48px;
  border: 1px solid #dbe4f0;
  border-radius: 12px;
  padding: 0.85rem 1rem;
  background: #fff;
  color: #0f172a;
  font-weight: 600;
}

.domain-cart-plan-select--static {
  display: flex;
  align-items: center;
  background: #f8fafc;
}

.domain-cart-domain-register .domain-search-container {
  margin-top: 0.25rem;
}

.domain-cart-domain-register .domain-search-wrapper {
  margin-bottom: 0;
}

.domain-cart-domain-current {
  margin-top: 0.25rem;
}

.domain-cart-domain-existing-card,
.domain-cart-domain-empty {
  border: 1px solid #d7efe8;
  border-radius: 14px;
  background: #f8fffd;
  padding: 1.15rem 1.25rem;
}

.domain-cart-domain-existing-card strong,
.domain-cart-domain-empty strong {
  display: block;
  margin-bottom: 0.45rem;
  color: #0f172a;
  font-size: 1.05rem;
}

.domain-cart-domain-existing-card p,
.domain-cart-domain-empty p {
  margin: 0;
  color: #64748b;
  line-height: 1.6;
}

.domain-cart-domain-existing-card .domain-cart-inline-action {
  margin-top: 1rem;
}

.domain-cart-domain-existing-card--selected p {
  margin-bottom: 0.9rem;
}

.domain-cart-domain-existing-selected {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.95rem 1rem;
  border: 1px solid #d7efe8;
  border-radius: 12px;
  background: #fff;
}

.domain-cart-domain-existing-selected-name {
  font-size: 1rem;
  font-weight: 700;
  color: #0f172a;
  word-break: break-word;
}

.domain-cart-domain-existing-selected-actions {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  flex: 0 0 auto;
}

/* Responsiveness */
@media (max-width: 640px) {
  .domain-cart-main-section {
    padding: 1.25rem;
  }

  .domain-cart-add-more-actions {
    flex-direction: column;
  }

  .domain-cart-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.875rem;
    padding: 1rem;
  }

  .domain-cart-item-actions {
    width: 100%;
    justify-content: space-between;
    align-items: center;
    margin-left: 0;
    gap: 0.75rem;
  }

  .domain-cart-hosting-item {
    flex-direction: column;
    align-items: flex-start;
  }

  .domain-cart-section-head {
    flex-direction: column;
  }

  .domain-cart-inline-action {
    width: 100%;
    text-align: center;
  }

  .domain-cart-plan-footer .domain-cart-inline-action {
    width: 100%;
    justify-content: center;
  }

  .domain-cart-domain-section {
    margin: 0;
  }

  .domain-cart-domain-switcher {
    grid-template-columns: 1fr;
  }

  .domain-cart-domain-switch+.domain-cart-domain-switch {
    border-left: none;
    border-top: 1px solid #e2e8f0;
  }

  .domain-cart-domain-existing-selected {
    flex-direction: column;
    align-items: flex-start;
  }

  .domain-cart-domain-existing-selected-actions {
    align-self: flex-end;
  }

  .domain-cart-existing-form-actions {
    justify-content: stretch;
  }

  .domain-cart-existing-form-actions .domain-cart-inline-action {
    width: 100%;
  }

  .domain-cart-item-price-block {
    min-width: 0;
    text-align: left;
  }

  .domain-cart-item-price {
    font-size: 1rem;
  }

  .domain-cart-item-icon,
  .domain-cart-item-icon--plan {
    width: 44px;
    height: 44px;
    flex-basis: 44px;
  }
}

/* Modal Styles */
.domain-cart-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 999999;
  /* High Z-index */
  display: flex;
  align-items: center;
  justify-content: center;
}

.domain-cart-modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  /* Darker overlay */
  backdrop-filter: blur(4px);
}

.domain-cart-modal-content {
  background: #fff;
  border-radius: 16px;
  /* More rounded */
  width: 95%;
  max-width: 680px;
  position: relative;
  z-index: 1000000;
  /* High Z-index */
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  animation: domainCartModalSlideUp 0.3s ease-out;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
}

.domain-cart-modal-content--existing {
  max-width: 560px;
}

.domain-cart-modal-header {
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid #f1f5f9;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.domain-cart-modal-title-group {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.domain-cart-modal-icon {
  width: 40px;
  height: 40px;
  background: #d8ede9;
  /* Light pinkish background like reference or generic */
  color: #db2777;
  /* Pink/Red branding or generic primary */
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.domain-cart-modal-icon svg {
  width: 20px;
  height: 20px;
}

.domain-cart-modal-icon--existing {
  background: #dcfce7;
  color: #1b8772;
}

.domain-cart-modal-title {
  margin: 0;
  font-size: 1.125rem;
  font-weight: 700;
  color: #0f172a;
}

.domain-cart-modal-body {
  padding: 1.5rem;
  overflow-y: auto;
}

.domain-cart-modal-panel--existing {
  display: none;
}

.domain-cart-existing-form {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  padding-top: 0.35rem;
}

.domain-cart-existing-form-label {
  font-size: 0.9rem;
  font-weight: 700;
  color: #0f172a;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.domain-cart-existing-form-input {
  width: 100%;
  min-height: 52px;
  border: 1px solid #dbe4f0;
  border-radius: 12px;
  padding: 0.9rem 1rem;
  font-size: 0.95rem;
  color: #0f172a;
  background: #fff;
}

.domain-cart-existing-form-input:focus {
  outline: none;
  border-color: #1b8772;
  box-shadow: 0 0 0 3px rgba(27, 135, 114, 0.14);
}

.domain-cart-existing-form-hint {
  margin: 0;
  font-size: 0.875rem;
  line-height: 1.6;
  color: #64748b;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 0.9rem 1rem;
}

.domain-cart-existing-form-actions {
  display: flex;
  justify-content: flex-end;
  padding-top: 0.25rem;
}

.domain-cart-existing-form-actions .domain-cart-inline-action {
  min-width: 160px;
}

/* Close button inside header */
.domain-cart-modal-close {
  background: none;
  border: none;
  font-size: 18px;
  cursor: pointer;
  color: #94a3b8;
  padding: 0.5rem;
  transition: color 0.2s;
  width: auto;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.domain-cart-modal-close:hover {
  color: #0f172a;
  background-color: #f1f5f9;
}

.domain-cart-modal-content--hosting {
  max-width: 760px;
}

.domain-cart-modal-icon--hosting {
  background: #eff6ff;
  color: #2563eb;
}

.domain-cart-hosting-period-switcher {
  display: flex;
  gap: 0.5rem;
  overflow-x: auto;
  padding-bottom: 0.75rem;
  margin-bottom: 0.5rem;
}

.domain-cart-hosting-period-btn {
  border: 1px solid #e2e8f0;
  background: #fff;
  color: #334155;
  border-radius: 999px;
  padding: 0.5rem 0.9rem;
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
}

.domain-cart-hosting-period-btn.is-active {
  border-color: #1b8772;
  color: #fff;
  background: #1b8772;
}

.domain-cart-hosting-lists {
  margin-top: 0.25rem;
}

.domain-cart-hosting-list {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.domain-cart-hosting-item {
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  padding: 0.8rem 0.9rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.domain-cart-hosting-item-media {
  flex: 0 0 52px;
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.domain-cart-hosting-item-thumb,
.domain-cart-hosting-item-fallback {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #eef6ff;
}

.domain-cart-hosting-item-thumb {
  object-fit: cover;
  border: 1px solid #e5e7eb;
}

.domain-cart-hosting-item-fallback {
  color: #1b8772;
}

.domain-cart-hosting-item-fallback svg {
  width: 24px;
  height: 24px;
}

.domain-cart-hosting-item-info {
  flex: 1 1 auto;
  min-width: 0;
}

.domain-cart-hosting-item-name {
  display: block;
  font-size: 0.92rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 0.15rem;
}

.domain-cart-hosting-item-price {
  font-size: 0.85rem;
  color: #475569;
}

.domain-cart-hosting-select-btn {
  border: 1px solid #1b8772;
  color: #1b8772;
  background: #fff;
  border-radius: 999px;
  padding: 0.42rem 0.9rem;
  font-size: 0.78rem;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
}

.domain-cart-hosting-select-btn:hover {
  background: #1b8772;
  color: #fff;
}

.domain-cart-hosting-select-btn:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

@media (max-width: 640px) {
  .domain-cart-hosting-item {
    align-items: flex-start;
  }

  .domain-cart-hosting-item-media {
    flex: 0 0 44px;
    width: 44px;
    height: 44px;
  }

  .domain-cart-hosting-item-thumb,
  .domain-cart-hosting-item-fallback {
    width: 44px;
    height: 44px;
    border-radius: 10px;
  }
}

.domain-cart-hosting-empty {
  color: #64748b;
  font-size: 0.9rem;
  padding: 0.5rem 0.1rem;
}

/* Error message for duplicate domain validation */
.domain-edit-error-msg {
  color: #ef4444;
  font-size: 0.875rem;
  margin-top: 1rem;
  display: block;
  text-align: center;
  width: 100%;
}

/* Updated style for Manter domÃ­nio button to make it smaller/less intrusive */
.domain-btn-keep-detached {
  display: block;
  width: 100%;
  margin: 1rem auto 0 auto;
  background: transparent;
  color: #1b8772;
  border: 1px solid #1b8772;
  padding: 15px 20px;
  border-radius: 15px;
  cursor: pointer;
  font-weight: 500;
  font-size: 16px;
  text-align: center;
  transition: all 0.2s;
}

.domain-btn-keep-detached:hover {
  background: #1b8772;
  color: #ffffff;
  border-color: none;
}

.domain-cart-loading {
  opacity: 0.6;
  pointer-events: none;
  transition: opacity 0.2s;
}

@keyframes domainCartModalSlideUp {
  from {
    opacity: 0;
    transform: translateY(20px) scale(0.95);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* Domain Period Select */
.domain-period-select {
  padding: 0.25rem 0.5rem;
  border: 1px solid #cbd5e1;
  border-radius: 6px;
  font-size: 0.85rem;
  color: #475569;
  background-color: #fff;
  cursor: pointer;
  outline: none;
  margin-top: 0.25rem;
  max-width: 100%;
  min-width: 140px;
  line-height: 30px;
}

.domain-period-select:focus {
  border-color: #1b8772;
  box-shadow: 0 0 8px 0 rgba(249, 34, 123, 0.41)
}

.domain-cart-modal-text {
  color: #64748b;
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.domain-cart-modal .domain-search-form,
.domain-cart-modal .domain-cart-existing-form {
  display: flex !important;
  flex-direction: column !important;
  gap: 1rem !important;
  width: 100% !important;
  max-width: none !important;
  margin: 0 !important;
}

.domain-cart-modal .domain-input-group {
  display: flex !important;
  align-items: center !important;
  background: #f8fafc !important;
  border: 1px solid #cbd5e1 !important;
  border-radius: 12px !important;
  padding: 16px !important;
  transition: all 0.2s ease !important;
  width: 100% !important;
  box-sizing: border-box !important;
  height: 54px !important;
}

.domain-cart-modal .domain-input-group:focus-within {
  border-color: #1b8772 !important;
  box-shadow: 0 0 0 4px rgba(27, 135, 114, 0.1) !important;
  background: #fff !important;
}

.domain-cart-modal .domain-input-prefix {
  color: #94a3b8 !important;
  font-weight: 600 !important;
  margin-right: 8px !important;
  font-size: 1rem !important;
  user-select: none !important;
}

.domain-cart-modal .domain-input-group input {
  flex: 1 !important;
  border: none !important;
  background: transparent !important;
  padding: 0 !important;
  font-size: 1.1rem !important;
  color: #0f172a !important;
  outline: none !important;
  box-shadow: none !important;
  height: 100% !important;
  min-height: unset !important;
}

.domain-cart-modal .domain-cart-modal-submit {
  width: 100% !important;
  background: #1b8772 !important;
  color: #fff !important;
  border: none !important;
  border-radius: 12px !important;
  padding: 16px 24px !important;
  font-size: 1.1rem !important;
  font-weight: 700 !important;
  cursor: pointer !important;
  transition: all 0.2s ease !important;
  margin-top: 5px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  box-shadow: 0 4px 12px rgba(27, 135, 114, 0.2) !important;
}

.domain-cart-modal .domain-cart-modal-submit:hover {
  background: #166b5a !important;
  transform: translateY(-1px) !important;
  box-shadow: 0 6px 15px rgba(27, 135, 114, 0.3) !important;
}

.domain-cart-modal .domain-cart-modal-submit:active {
  transform: translateY(0) !important;
}

@media (max-width: 640px) {
  .domain-cart-modal-content {
    width: 92%;
    padding-bottom: 1rem;
  }
}