/* --- General --- */
  .order-section {
    background: linear-gradient(180deg, #f0fdfa 0%, #f9fafb 35%, #f3f4f6 100%);
    padding: 72px 0 48px;
    font-family: 'Inter', system-ui, sans-serif;
  }

  .order-container {
    max-width: 1080px;
    margin: auto;
  }

  .order-page-header {
    margin-bottom: 1.5rem;
  }

  .order-page-header h1 {
    font-size: 1.35rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 0.35rem;
  }

  .order-page-header p {
    color: #6b7280;
    font-size: 0.875rem;
    margin: 0;
  }

  /* --- Progress flow --- */
  .order-flow {
    display: flex;
    align-items: center;
    gap: 0;
    margin-bottom: 1.25rem;
    padding: 0.65rem 0.85rem;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 0.75rem;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
  }

  .order-flow__step {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.75rem;
    font-weight: 600;
    color: #9ca3af;
    white-space: nowrap;
  }

  .order-flow__step.is-complete { color: #0D9488; }
  .order-flow__step.is-current { color: #111827; }

  .order-flow__dot {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.65rem;
    font-weight: 700;
    background: #f3f4f6;
    color: #9ca3af;
    flex-shrink: 0;
  }

  .order-flow__step.is-complete .order-flow__dot {
    background: #ccfbf1;
    color: #0D9488;
  }

  .order-flow__step.is-current .order-flow__dot {
    background: #0D9488;
    color: #fff;
    box-shadow: 0 0 0 3px rgba(13, 148, 136, 0.2);
  }

  .order-flow__line {
    flex: 1;
    height: 2px;
    background: #e5e7eb;
    margin: 0 0.5rem;
    min-width: 12px;
  }

  .order-flow__step.is-complete + .order-flow__line,
  .order-flow__line.is-active {
    background: linear-gradient(90deg, #0D9488, #e5e7eb);
  }

  /* --- Step cards --- */
  .plan-details-card {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
  }

  .order-step {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 0.875rem;
    padding: 1rem 1.15rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
  }

  .order-step__head {
    display: flex;
    align-items: flex-start;
    gap: 0.65rem;
    margin-bottom: 0.85rem;
  }

  .order-step__num {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: #0D9488;
    color: #fff;
    font-size: 0.75rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }

  .order-step__title {
    font-size: 0.9375rem;
    font-weight: 700;
    color: #111827;
    margin: 0;
    line-height: 1.2;
  }

  .order-step__sub {
    font-size: 0.75rem;
    color: #9ca3af;
    margin: 0.1rem 0 0;
  }

  /* --- Plan card (step 1) --- */
  .plan-card {
    background: #f9fafb;
    border: 1px solid #f3f4f6;
    border-radius: 0.625rem;
    padding: 0.85rem;
  }

  .plan-card__row {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
  }

  .plan-card__icon {
    width: 40px;
    height: 40px;
    border-radius: 0.5rem;
    background: linear-gradient(135deg, #0D9488, #14b8a6);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
  }

  .plan-card__name {
    font-size: 1rem;
    font-weight: 700;
    color: #111827;
    margin: 0 0 0.2rem;
  }

  .plan-card__desc {
    font-size: 0.8125rem;
    color: #6b7280;
    margin: 0;
    line-height: 1.45;
  }

  .plan-specs {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    margin-top: 0.75rem;
    align-items: center;
  }

  .plan-spec {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    font-size: 0.72rem;
    font-weight: 600;
    color: #475569;
    background: #fff;
    border: 1px solid #e5e7eb;
    padding: 0.25rem 0.55rem;
    border-radius: 999px;
  }

  .plan-spec i {
    color: #0D9488;
    font-size: 0.65rem;
  }

  .plan-spec--accent {
    background: #ecfdf5;
    border-color: #a7f3d0;
    color: #047857;
  }

  .plan-spec--accent i { color: #047857; }

  .plan-more-btn {
    margin-left: auto;
    font-size: 0.72rem;
    font-weight: 600;
    color: #0D9488;
    background: none;
    border: none;
    padding: 0.25rem 0.4rem;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
  }

  .plan-more-btn:hover { color: #0f766e; }

  .plan-more-btn[aria-expanded="true"] i {
    transform: rotate(180deg);
    transition: transform 0.2s;
  }

  .plan-more-btn i { transition: transform 0.2s; }

  .plan-features-panel {
    margin-top: 0.65rem;
    padding-top: 0.65rem;
    border-top: 1px dashed #e5e7eb;
  }

  .features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.35rem 0.75rem;
    list-style: none;
    padding: 0;
    margin: 0;
  }

  .features-grid li {
    font-size: 0.75rem;
    color: #4b5563;
    display: flex;
    align-items: center;
    gap: 0.4rem;
  }

  .features-grid li i {
    color: #0D9488;
    width: 14px;
    text-align: center;
    font-size: 0.7rem;
  }

  @media (max-width: 480px) {
    .features-grid { grid-template-columns: 1fr; }
    .order-flow__step span:not(.order-flow__dot) { display: none; }
    .order-flow__line { margin: 0 0.25rem; }
  }

  /* --- Domain step (step 2) --- */
  .domain-segment {
    display: flex;
    gap: 0.35rem;
    padding: 0.25rem;
    background: #f3f4f6;
    border-radius: 0.5rem;
    margin-bottom: 0.55rem;
  }

  .domain-choice-btn {
    flex: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.35rem;
    padding: 0.4rem 0.6rem;
    border: none;
    border-radius: 0.375rem;
    background: transparent;
    color: #6b7280;
    font-size: 0.78rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.15s;
  }

  .domain-choice-btn:hover { color: #374151; }

  .domain-choice-btn.active {
    background: #fff;
    color: #0D9488;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.06);
  }

  .domain-choice-btn .choice-icon { font-size: 0.7rem; }

  .domain-hint {
    font-size: 0.78rem;
    color: #9ca3af;
    margin: 0 0 0.65rem;
    padding: 0.45rem 0.6rem;
    background: #f9fafb;
    border-radius: 0.375rem;
    border-left: 2px solid #99f6e4;
    line-height: 1.4;
  }

  .domain-hint i { color: #0D9488; margin-right: 0.2rem; }

  .domain-panel { display: none; }
  .domain-panel.active { display: block; }

  .domain-search-box {
    display: flex;
    border-radius: 0.5rem;
    overflow: hidden;
    border: 1px solid #e5e7eb;
    background: #fff;
    transition: border-color 0.2s, box-shadow 0.2s;
  }

  .domain-search-box:focus-within {
    border-color: #0D9488;
    box-shadow: 0 0 0 3px rgba(13, 148, 136, 0.1);
  }

  .form-input {
    flex: 1;
    padding: 0.55rem 0.75rem;
    border: none;
    outline: none;
    font-size: 0.875rem;
    background: transparent;
  }

  .submit-button {
    background: #0D9488;
    padding: 0 0.85rem;
    color: #fff;
    font-weight: 600;
    font-size: 0.78rem;
    border: none;
    transition: background 0.2s;
  }

  .submit-button:hover { background: #0f766e; }

  .free-domain-chip {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    font-size: 0.72rem;
    font-weight: 600;
    color: #047857;
    background: #ecfdf5;
    padding: 0.2rem 0.5rem;
    border-radius: 999px;
    margin-bottom: 0.5rem;
  }

  .selected-domain-badge {
    display: none;
    align-items: center;
    gap: 0.35rem;
    padding: 0.35rem 0.6rem;
    background: #ecfdf5;
    border: 1px solid #a7f3d0;
    border-radius: 0.375rem;
    color: #047857;
    font-size: 0.78rem;
    font-weight: 600;
    margin-bottom: 0.55rem;
  }

  .selected-domain-badge.show { display: inline-flex; }

  .dns-details {
    margin-top: 0.65rem;
    font-size: 0.78rem;
  }

  .dns-details summary {
    color: #6b7280;
    cursor: pointer;
    list-style: none;
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    font-weight: 500;
  }

  .dns-details summary::-webkit-details-marker { display: none; }
  .dns-details summary:hover { color: #0D9488; }
  .dns-details[open] summary { color: #0D9488; margin-bottom: 0.4rem; }

  .dns-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.3rem;
  }

  .dns-tags code {
    background: #f1f5f9;
    color: #475569;
    padding: 0.12rem 0.4rem;
    border-radius: 0.25rem;
    font-size: 0.72rem;
    border: 1px solid #e2e8f0;
  }

  #domain-loader {
    font-size: 0.78rem;
    color: #9ca3af;
    padding: 0.35rem 0;
  }

  /* Domain search results */
  #domain-search-results .results-card {
    border: 1px solid #e5e7eb;
    border-radius: 0.5rem;
    padding: 0.55rem 0.75rem;
    margin-top: 0.45rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
    background: #fff;
    transition: border-color 0.15s, background 0.15s;
  }

  #domain-search-results .results-card.is-available {
    border-left: 3px solid #16a34a;
  }

  #domain-search-results .results-card.is-available:hover {
    background: #f0fdf4;
    border-color: #bbf7d0;
  }

  #domain-search-results .results-card.is-unavailable {
    border-left: 3px solid #ef4444;
    opacity: 0.75;
  }

  #domain-search-results .domain-name {
    font-weight: 600;
    font-size: 0.875rem;
    color: #111827;
  }

  #domain-search-results .domain-status {
    font-size: 0.72rem;
    color: #9ca3af;
    display: block;
  }

  #domain-search-results .price-tag {
    font-weight: 700;
    font-size: 0.8125rem;
    color: #0D9488;
  }

  #domain-search-results .domain-select-btn {
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.3rem 0.65rem;
    border-radius: 0.375rem;
  }

  #domain-search-results .other-results-title {
    font-size: 0.75rem;
    font-weight: 600;
    color: #9ca3af;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin: 0.65rem 0 0.25rem;
  }

  #existing-domain-message .alert {
    font-size: 0.78rem;
    padding: 0.35rem 0.6rem;
    margin-bottom: 0;
  }

  /* --- Receipt Ticket (Résumé) --- */
  .receipt-wrapper {
    position: sticky;
    top: 96px;
    max-width: 340px;
    margin-left: auto;
    margin-right: auto;
  }

  .receipt-ticket {
    background: #fffef5;
    font-family: 'Courier New', Courier, 'Lucida Console', monospace;
    color: #1a1a1a;
    filter: drop-shadow(0 6px 20px rgba(0, 0, 0, 0.09));
    transition: filter 0.3s ease, transform 0.3s ease;
    animation: receiptPrint 0.45s ease-out;
  }

  @keyframes receiptPrint {
    from { opacity: 0; transform: translateY(12px); }
    to { opacity: 1; transform: translateY(0); }
  }

  .receipt-wrapper.is-floating .receipt-ticket {
    filter: drop-shadow(0 12px 28px rgba(0, 0, 0, 0.14));
    transform: translateY(-2px);
  }

  .receipt-edge {
    height: 10px;
    background-color: #fffef5;
    background-image: radial-gradient(circle at 5px 0, #f9fafb 5px, #fffef5 5px);
    background-size: 10px 10px;
    background-position: 0 0;
  }

  .receipt-edge--bottom {
    transform: rotate(180deg);
  }

  .receipt-body {
    padding: 0.85rem 1.15rem 0.65rem;
  }

  .receipt-header {
    text-align: center;
    margin-bottom: 0.65rem;
  }

  .receipt-logo {
    font-size: 1rem;
    font-weight: 800;
    letter-spacing: 0.18em;
    color: #0D9488;
    margin-bottom: 0.15rem;
  }

  .receipt-subtitle {
    font-size: 0.7rem;
    letter-spacing: 0.06em;
    color: #6b7280;
    text-transform: uppercase;
  }

  .receipt-meta {
    font-size: 0.68rem;
    color: #9ca3af;
    margin-top: 0.35rem;
    line-height: 1.5;
  }

  .receipt-divider {
    text-align: center;
    font-size: 0.65rem;
    color: #d1d5db;
    letter-spacing: 0.05em;
    margin: 0.5rem 0;
    overflow: hidden;
    white-space: nowrap;
  }

  .receipt-divider--dashed {
    border: none;
    border-top: 1px dashed #d1d5db;
    height: 0;
    margin: 0.55rem 0;
  }

  .receipt-client {
    font-size: 0.72rem;
    line-height: 1.55;
    color: #4b5563;
    margin-bottom: 0.35rem;
  }

  .receipt-client strong {
    color: #111827;
  }

  .receipt-billing {
    margin: 0.5rem 0 0.65rem;
    font-family: 'Inter', system-ui, sans-serif;
  }

  .receipt-billing label {
    display: block;
    font-size: 0.68rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #9ca3af;
    margin-bottom: 0.3rem;
  }

  .receipt-billing select {
    width: 100%;
    font-size: 0.8125rem;
    font-weight: 600;
    padding: 0.45rem 1.75rem 0.45rem 0.6rem;
    border: 1px dashed #d1d5db;
    border-radius: 0.25rem;
    background: #fff;
    color: #111827;
    appearance: none;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%239ca3af' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M6 8l4 4 4-4'/%3e%3c/svg%3e");
    background-position: right 0.4rem center;
    background-repeat: no-repeat;
    background-size: 1.1em;
  }

  .receipt-billing select:focus {
    outline: none;
    border-color: #0D9488;
  }

  .receipt-note {
    font-family: 'Inter', system-ui, sans-serif;
    font-size: 0.68rem;
    color: #0284c7;
    background: #f0f9ff;
    border-left: 2px solid #0284c7;
    padding: 0.35rem 0.5rem;
    margin-top: 0.45rem;
    line-height: 1.4;
  }

  .receipt-items {
    margin: 0.35rem 0;
  }

  .receipt-line {
    display: flex;
    align-items: baseline;
    gap: 0.2rem;
    font-size: 0.78rem;
    line-height: 1.45;
    margin-bottom: 0.3rem;
  }

  .receipt-line__label {
    flex-shrink: 0;
    max-width: 58%;
    word-break: break-word;
  }

  .receipt-line__dots {
    flex: 1;
    border-bottom: 1px dotted #c4c4c4;
    min-width: 0.5rem;
    margin-bottom: 0.15rem;
    opacity: 0.7;
  }

  .receipt-line__price {
    flex-shrink: 0;
    font-weight: 700;
    text-align: right;
  }

  .receipt-line--discount .receipt-line__price {
    color: #16a34a;
  }

  .receipt-line--discount .receipt-line__label {
    color: #16a34a;
  }

  .receipt-promo {
    font-family: 'Inter', system-ui, sans-serif;
    margin: 0.5rem 0;
  }

  .receipt-promo-toggle {
    font-size: 0.72rem;
    color: #0D9488;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
  }

  .receipt-promo-toggle:hover {
    color: #0f766e;
  }

  .receipt-promo-input {
    display: flex;
    gap: 0.35rem;
    margin-top: 0.45rem;
  }

  .receipt-promo-input input {
    flex: 1;
    font-size: 0.75rem;
    padding: 0.35rem 0.5rem;
    border: 1px dashed #d1d5db;
    border-radius: 0.2rem;
    font-family: 'Courier New', monospace;
    text-transform: uppercase;
  }

  .receipt-promo-input button {
    font-size: 0.72rem;
    padding: 0.35rem 0.55rem;
    background: #0D9488;
    color: #fff;
    border: none;
    border-radius: 0.2rem;
    font-weight: 600;
    white-space: nowrap;
  }

  #promo-message {
    font-size: 0.68rem;
    margin-top: 0.3rem;
  }

  .receipt-total-block {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    padding: 0.55rem 0 0.15rem;
    border-top: 2px double #1a1a1a;
    margin-top: 0.35rem;
  }

  .receipt-total-label {
    font-size: 0.95rem;
    font-weight: 800;
    letter-spacing: 0.12em;
  }

  .receipt-total-price {
    font-size: 1.35rem;
    font-weight: 800;
    color: #0D9488;
    transition: transform 0.2s ease;
  }

  .receipt-total-price.is-updated {
    animation: totalPulse 0.35s ease;
  }

  @keyframes totalPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.06); }
  }

  .receipt-footer {
    text-align: center;
    padding: 0.5rem 0 0.15rem;
  }

  .receipt-footer p {
    font-size: 0.62rem;
    color: #9ca3af;
    letter-spacing: 0.04em;
    margin: 0.15rem 0;
    line-height: 1.4;
  }

  .receipt-barcode {
    display: flex;
    justify-content: center;
    gap: 2px;
    margin: 0.45rem auto 0;
    height: 28px;
    align-items: flex-end;
    opacity: 0.35;
  }

  .receipt-barcode span {
    display: block;
    width: 2px;
    background: #1a1a1a;
  }

  .receipt-cta {
    margin-top: 0.85rem;
    font-family: 'Inter', system-ui, sans-serif;
  }

  .receipt-cta .btn {
    font-size: 0.9rem;
    font-weight: 700;
    padding: 0.75rem;
    border-radius: 0.5rem;
    letter-spacing: 0.02em;
  }

  #final-add-to-cart-btn:not(:disabled) {
    background: linear-gradient(135deg, #0D9488, #14b8a6);
    border: none;
    box-shadow: 0 4px 14px rgba(13, 148, 136, 0.35);
  }

  #final-add-to-cart-btn:not(:disabled):hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 18px rgba(13, 148, 136, 0.4);
  }

  #final-add-to-cart-btn:disabled {
    opacity: 0.55;
    background: #9ca3af;
    border-color: #9ca3af;
  }

  @media (max-width: 991px) {
    .receipt-wrapper {
      max-width: 100%;
      position: static;
    }
  }

  #promo-message.text-success {
    color: #16a34a !important;
  }
  #promo-message.text-danger {
      color: #dc2626 !important;
  }

/* --- Domain status (cPanel revendeur) --- */
.domain-status {
  display: none;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.78rem;
  margin-top: 0.45rem;
  padding: 0.4rem 0.6rem;
  border-radius: 0.375rem;
}
.domain-status.show { display: flex; }
.domain-status.available { background: #ecfdf5; color: #047857; }
.domain-status.unavailable { background: #fef2f2; color: #b91c1c; }
.domain-status.loading { background: #f9fafb; color: #6b7280; }

/* --- Billing cards (radio) --- */
.billing-cards {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.billing-card {
  position: relative;
}
.billing-card input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.billing-card label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.75rem 0.85rem;
  border: 1.5px solid #e5e7eb;
  border-radius: 0.625rem;
  cursor: pointer;
  transition: border-color 0.15s, background 0.15s;
  background: #f9fafb;
}
.billing-card input:checked + label {
  border-color: #0D9488;
  background: #f0fdfa;
  box-shadow: 0 0 0 3px rgba(13, 148, 136, 0.12);
}
.billing-card__name { font-size: 0.875rem; font-weight: 700; color: #111827; }
.billing-card__hint { font-size: 0.72rem; color: #9ca3af; margin-top: 0.1rem; }
.billing-card__price { text-align: right; flex-shrink: 0; }
.billing-card__price strong { display: block; font-size: 1rem; color: #0D9488; }
.billing-card__price small { font-size: 0.68rem; color: #9ca3af; }

/* --- Mobile sticky bar --- */
.order-mobile-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0.75rem 1rem;
  background: #fff;
  border-top: 1px solid #e5e7eb;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.order-mobile-bar__total strong {
  display: block;
  font-size: 1.2rem;
  font-weight: 800;
  color: #0D9488;
  line-height: 1.1;
}
.order-mobile-bar__total small {
  font-size: 0.68rem;
  color: #9ca3af;
  text-transform: uppercase;
  font-weight: 600;
}
.order-mobile-bar .btn {
  flex-shrink: 0;
  font-size: 0.85rem;
  font-weight: 700;
  padding: 0.7rem 1.1rem;
  white-space: nowrap;
}

@media (max-width: 767px) {
  .order-section { padding: 30px 0 100px; }
  .order-mobile-bar { display: flex; }
  .receipt-cta .btn { font-size: 0.85rem; padding: 0.65rem; }
}

/* --- Software renewal --- */
.software-renewal-search {
  max-width: 520px;
  margin: 0 auto;
}

.software-renewal-search .form-control {
  flex: 1;
  padding: 0.55rem 0.75rem;
  border: none;
  outline: none;
  font-size: 0.875rem;
  background: transparent;
}

.software-renewal-search .input-group {
  display: flex;
  border-radius: 0.5rem;
  overflow: hidden;
  border: 1px solid #e5e7eb;
  background: #fff;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.software-renewal-search .input-group:focus-within {
  border-color: #0D9488;
  box-shadow: 0 0 0 3px rgba(13, 148, 136, 0.1);
}

.software-renewal-search .input-group-text {
  background: #f9fafb;
  border: none;
  color: #9ca3af;
  padding: 0 0.75rem;
}

.renewal-meta {
  display: grid;
  gap: 0;
  font-size: 0.8125rem;
}

.renewal-meta__row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.75rem;
  padding: 0.5rem 0;
  border-bottom: 1px dashed #e5e7eb;
}

.renewal-meta__row:last-child { border-bottom: none; }

.renewal-meta__label {
  color: #6b7280;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.renewal-meta__value {
  font-weight: 600;
  color: #111827;
  text-align: right;
}

.renewal-meta__value--danger { color: #dc2626; }
.renewal-meta__value--success { color: #16a34a; }

.operator-badge {
  display: inline-flex;
  align-items: center;
  font-size: 0.72rem;
  font-weight: 600;
  background: #ecfdf5;
  color: #047857;
  padding: 0.2rem 0.55rem;
  border-radius: 999px;
  margin-left: 0.35rem;
}

@keyframes slideInLeft {
  from { opacity: 0; transform: translateX(-8px); }
  to { opacity: 1; transform: translateX(0); }
}

.renewal-phone-field label {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  color: #374151;
  margin-bottom: 0.45rem;
}

.renewal-phone-field .domain-search-box {
  margin-bottom: 0.35rem;
}

.renewal-phone-field .form-input {
  font-size: 0.9375rem;
}

#phone-error-msg {
  font-size: 0.78rem;
  color: #dc2626;
  margin-top: 0.35rem;
}

#renewal-submit-btn:disabled {
  opacity: 0.55;
  background: #9ca3af;
  border-color: #9ca3af;
}

.order-search-icon {
  width: 48px;
  height: 48px;
  border-radius: 0.75rem;
  background: linear-gradient(135deg, #0D9488, #14b8a6);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  margin: 0 auto 1rem;
}

