  * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    body {
      font-family: Arial, Helvetica, sans-serif;
      background: #f4f5f7;
      color: #222;
      padding: 30px 15px;
    }

    .container {
      max-width: 1200px;
      margin: 0 auto;
    }

    .page-title {
      font-size: 28px;
      font-weight: 700;
      margin-bottom: 25px;
      color: #111;
    }

    .order-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 25px;
    }

    .card {
      background: #fff;
      border-radius: 16px;
      box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
      overflow: hidden;
      border: 1px solid #ececec;
    }

    .card-header {
      display: flex;
      align-items: center;
      gap: 12px;
      padding: 18px 22px;
      background: linear-gradient(135deg, #ff4fa3, #ff7a00);
      color: #fff;
    }

    .card-header .icon {
      width: 42px;
      height: 42px;
      border-radius: 12px;
      background: rgba(255, 255, 255, 0.18);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 20px;
      font-weight: bold;
      flex-shrink: 0;
    }

    .card-header h3 {
      font-size: 21px;
      font-weight: 700;
    }

    .card-body {
      padding: 22px;
    }

    .form-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 16px;
    }

    .full {
      grid-column: 1 / -1;
    }

    .field {
      display: flex;
      flex-direction: column;
    }

    .field label {
      font-size: 14px;
      font-weight: 600;
      margin-bottom: 8px;
      color: #444;
    }

    .field input,
    .field select,
    .field textarea {
      width: 100%;
      height: 50px;
      border: 1px solid #ddd;
      border-radius: 12px;
      padding: 0 15px;
      font-size: 15px;
      outline: none;
      transition: 0.25s ease;
      background: #fafafa;
    }

    .field textarea {
      height: 110px;
      padding: 14px 15px;
      resize: vertical;
    }

    .field input[type="file"] {
      height: auto;
      padding: 12px 15px;
      line-height: 1.4;
    }

    .field input:focus,
    .field select:focus,
    .field textarea:focus {
      border-color: #ff4fa3;
      background: #fff;
      box-shadow: 0 0 0 4px rgba(255, 79, 163, 0.10);
    }

    .photo-upload-box {
      border: 2px dashed #ffd0e6;
      border-radius: 16px;
      background: linear-gradient(135deg, #fff7fb, #fffaf5);
      padding: 24px;
    }

    .photo-upload-note {
      margin-top: 10px;
      font-size: 14px;
      color: #666;
      line-height: 1.6;
    }

    .bank-box {
      background: linear-gradient(135deg, #fff7fb, #fffaf5);
      border: 1px solid #ffd7ea;
      border-radius: 16px;
      padding: 18px;
    }

    .bank-title {
      font-size: 18px;
      font-weight: 700;
      color: #222;
      margin-bottom: 14px;
    }

    .bank-list {
      display: grid;
      gap: 12px;
    }

    .bank-item {
      background: #fff;
      border: 1px solid #eee;
      border-radius: 12px;
      padding: 14px 16px;
    }

    .bank-item strong {
      display: block;
      font-size: 14px;
      color: #666;
      margin-bottom: 6px;
    }

    .bank-item span {
      font-size: 16px;
      font-weight: 700;
      color: #222;
      word-break: break-word;
    }

    .bank-note {
      margin-top: 14px;
      font-size: 14px;
      color: #666;
      line-height: 1.6;
    }

    .submit-area {
      margin-top: 28px;
      display: flex;
      justify-content: flex-end;
    }

    .submit-btn {
      border: none;
      background: linear-gradient(135deg, #ff4fa3, #ff7a00);
      color: #fff;
      font-size: 16px;
      font-weight: 700;
      padding: 15px 28px;
      border-radius: 14px;
      cursor: pointer;
      transition: 0.25s ease;
      box-shadow: 0 8px 20px rgba(255, 79, 163, 0.25);
    }

    .submit-btn:hover {
      transform: translateY(-2px);
      box-shadow: 0 12px 26px rgba(255, 79, 163, 0.32);
    }

    @media (max-width: 991px) {
      .order-grid {
        grid-template-columns: 1fr;
      }
    }

    @media (max-width: 640px) {
      .page-title {
        font-size: 24px;
      }

      .card-header {
        padding: 16px;
      }

      .card-header h3 {
        font-size: 18px;
      }

      .card-body {
        padding: 16px;
      }

      .form-grid {
        grid-template-columns: 1fr;
      }

      .submit-area {
        justify-content: stretch;
      }

      .submit-btn {
        width: 100%;
      }
    }

    .message-picker-box {
      display: flex;
      flex-direction: column;
      gap: 12px;
    }

    .message-picker-btn {
      height: 52px;
      border: none;
      border-radius: 14px;
      padding: 0 20px;
      font-size: 15px;
      font-weight: 700;
      color: #fff;
      cursor: pointer;
      background: linear-gradient(135deg, #ff4fa3, #ff7a00);
      box-shadow: 0 8px 20px rgba(255, 79, 163, 0.20);
      transition: 0.25s ease;
    }

    .message-picker-btn:hover:not(:disabled) {
      transform: translateY(-2px);
      box-shadow: 0 12px 26px rgba(255, 79, 163, 0.28);
    }

    .message-picker-btn:disabled {
      cursor: not-allowed;
      opacity: 0.55;
      box-shadow: none;
    }

    .selected-message-info {
      background: #fafafa;
      border: 1px solid #ececec;
      border-radius: 14px;
      padding: 14px 16px;
      color: #666;
      font-size: 14px;
      line-height: 1.6;
      min-height: 54px;
    }

    .message-modal {
      position: fixed;
      inset: 0;
      z-index: 9999;
      display: none;
    }

    .message-modal.active {
      display: block;
    }

    .message-modal-overlay {
      position: absolute;
      inset: 0;
      background: rgba(19, 18, 26, 0.55);
      backdrop-filter: blur(4px);
      opacity: 0;
      transition: opacity 0.25s ease;
    }

    .message-modal.active .message-modal-overlay {
      opacity: 1;
    }

    .message-modal-dialog {
      position: relative;
      width: min(960px, calc(100% - 30px));
      max-height: 85vh;
      overflow: hidden;
      margin: 50px auto;
      background: #fff;
      border-radius: 24px;
      box-shadow: 0 24px 60px rgba(0, 0, 0, 0.22);
      display: flex;
      flex-direction: column;
      transform: translateY(18px) scale(0.98);
      opacity: 0;
      transition: transform 0.28s ease, opacity 0.28s ease;
    }

    .message-modal.active .message-modal-dialog {
      transform: translateY(0) scale(1);
      opacity: 1;
    }

    .message-modal-header {
      display: flex;
      align-items: flex-start;
      justify-content: space-between;
      gap: 20px;
      padding: 24px 24px 18px;
      border-bottom: 1px solid #f0f0f0;
    }

    .message-modal-header-left {
      display: flex;
      flex-direction: column;
      gap: 6px;
      flex: 1;
    }

    .sheet-handle {
      display: none;
    }

    .message-modal-header h3 {
      font-size: 24px;
      color: #222;
      margin: 0;
    }

    .message-modal-header p {
      font-size: 14px;
      color: #777;
      line-height: 1.6;
      margin: 0;
    }

    .message-modal-close {
      width: 44px;
      height: 44px;
      border: none;
      border-radius: 14px;
      background: #f7f7f7;
      color: #333;
      font-size: 28px;
      cursor: pointer;
      transition: 0.2s ease;
      flex-shrink: 0;
    }

    .message-modal-close:hover {
      background: #f0f0f0;
    }

    .message-modal-body {
      padding: 24px;
      overflow-y: auto;
    }

    .message-cards {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 16px;
    }

    .message-card {
      position: relative;
      border: 1px solid #ececec;
      border-radius: 18px;
      background: #fff;
      padding: 18px;
      cursor: pointer;
      transition: 0.25s ease;
      min-height: 150px;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      gap: 16px;
    }

    .message-card:hover {
      transform: translateY(-3px);
      border-color: #ffc9e2;
      box-shadow: 0 14px 28px rgba(255, 79, 163, 0.10);
    }

    .message-card.active {
      border-color: #ff4fa3;
      background: linear-gradient(135deg, #fff7fb, #fffaf5);
      box-shadow: 0 16px 32px rgba(255, 79, 163, 0.16);
    }

    .message-card-top {
      display: flex;
      justify-content: space-between;
      align-items: flex-start;
      gap: 14px;
    }

    .message-card-badge {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-width: 38px;
      height: 38px;
      border-radius: 12px;
      background: rgba(255, 79, 163, 0.10);
      font-size: 18px;
    }

    .message-card-check {
      width: 26px;
      height: 26px;
      border-radius: 50%;
      background: #fff;
      border: 1px solid #e8e8e8;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 13px;
      color: transparent;
      transition: 0.2s ease;
    }

    .message-card.active .message-card-check {
      background: #ff4fa3;
      color: #fff;
      border-color: #ff4fa3;
    }

    .message-card-text {
      font-size: 15px;
      color: #444;
      line-height: 1.8;
    }

    .message-card-action {
      font-size: 13px;
      color: #ff4fa3;
      font-weight: 700;
    }

    .message-modal-footer {
      padding: 18px 24px 24px;
      border-top: 1px solid #f0f0f0;
      display: flex;
      justify-content: flex-end;
    }

    .message-cancel-btn {
      height: 48px;
      border: 1px solid #e8e8e8;
      background: #fff;
      color: #333;
      border-radius: 14px;
      padding: 0 20px;
      font-size: 15px;
      font-weight: 700;
      cursor: pointer;
    }

    .message-cancel-btn:hover {
      background: #fafafa;
    }

    #cardNote {
      min-height: 140px;
      line-height: 1.7;
    }

    @media (max-width: 768px) {
      .message-modal-dialog {
        width: 100%;
        max-width: 100%;
        max-height: 88vh;
        margin: 0;
        position: absolute;
        left: 0;
        right: 0;
        bottom: 0;
        top: auto;
        border-radius: 22px 22px 0 0;
        transform: translateY(100%);
        opacity: 1;
        box-shadow: 0 -12px 40px rgba(0, 0, 0, 0.22);
      }

      .message-modal.active .message-modal-dialog {
        transform: translateY(0);
      }

      .sheet-handle {
        display: block;
        width: 54px;
        height: 6px;
        border-radius: 999px;
        background: #dfdfdf;
        margin: 0 auto 14px;
      }

      .message-modal-header {
        padding: 14px 16px 14px;
      }

      .message-modal-body {
        padding: 0 16px 16px;
      }

      .message-modal-footer {
        padding: 14px 16px 18px;
      }

      .message-cards {
        grid-template-columns: 1fr;
        gap: 12px;
      }

      .message-card {
        min-height: auto;
        padding: 16px;
      }

      .message-modal-header h3 {
        font-size: 20px;
      }

      .message-modal-close {
        width: 40px;
        height: 40px;
        border-radius: 12px;
        font-size: 24px;
      }
    }
   .copy-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.copy-btn {
  width: 40px;
  height: 40px;
  border: none;
  background: #ff4fa3;
  color: #fff;
  border-radius: 10px;
  cursor: pointer;
  font-size: 15px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: 0.2s ease;
  flex-shrink: 0;
}

.copy-btn:hover {
  background: #ff2e8a;
  transform: translateY(-1px);
}

.copy-btn i {
  pointer-events: none;
}
/* TOAST */
.copy-toast {
  position: fixed;
  bottom: 25px;
  right: 25px;
  background: #222;
  color: #fff;
  padding: 12px 18px;
  border-radius: 12px;
  font-size: 14px;
  opacity: 0;
  transform: translateY(20px);
  transition: 0.3s ease;
  z-index: 99999;
}

.copy-toast.show {
  opacity: 1;
  transform: translateY(0);
}
.flatpickr-calendar {
  border-radius: 16px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.15);
  border: none;
  font-family: Arial, sans-serif;
}

.flatpickr-day.selected {
  background: linear-gradient(135deg, #ff4fa3, #ff7a00);
  border: none;
}

.flatpickr-day:hover {
  background: #ffe3f1;
  color: #ff4fa3;
}

.flatpickr-months .flatpickr-month {
  background: linear-gradient(135deg, #ff4fa3, #ff7a00);
  color: #fff;
  border-radius: 16px 16px 0 0;
}

.flatpickr-current-month input.cur-year {
  color: #fff;
}

.flatpickr-weekdays {
  background: #fafafa;
}

.flatpickr-weekday {
  color: #888;
  font-weight: 600;
}
.photo-preview-box {
  margin-top: 16px;
  padding: 14px;
  border: 1px solid #ffd7ea;
  border-radius: 16px;
  background: #fff;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 8px 20px rgba(255, 79, 163, 0.08);
}

.photo-preview-box img {
  width: 100%;
  max-width: 320px;
  max-height: 320px;
  object-fit: cover;
  border-radius: 14px;
  border: 1px solid #eee;
  background: #fafafa;
}

.remove-photo-btn {
  width: fit-content;
  min-height: 42px;
  border: none;
  border-radius: 12px;
  padding: 0 16px;
  background: #f84f7f;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: 0.2s ease;
}

.remove-photo-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 18px rgba(248, 79, 127, 0.22);
}

@media (max-width: 640px) {
  .photo-preview-box img {
    max-width: 100%;
    max-height: 260px;
  }

  .remove-photo-btn {
    width: 100%;
    justify-content: center;
  }
}
.field,
.field.full,
.form-grid,
.card-body {
  min-width: 0;
}

.field textarea,
.field input,
.field select {
  max-width: 100%;
  min-width: 0;
}

#cardNote {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  min-height: 140px;
  height: 140px;
  line-height: 1.7;
  display: block;
  resize: vertical;
  overflow-y: auto;
  overflow-x: hidden;
  word-break: break-word;
  white-space: pre-wrap;
}

.selected-message-info {
  word-break: break-word;
  overflow-wrap: anywhere;
}

@media (max-width: 768px) {
  .field input,
  .field select,
  .field textarea,
  .message-picker-btn,
  .message-cancel-btn {
    font-size: 16px;
  }

  #cardNote {
    min-height: 130px;
    height: 130px;
    resize: none;
    -webkit-appearance: none;
    appearance: none;
  }

  .message-modal-body,
  .card-body,
  .photo-upload-box,
  .bank-box {
    overflow-x: hidden;
  }
}
.page-hero {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 25px;
  padding: 22px 24px;
  border-radius: 22px;
  background: linear-gradient(135deg, #ff4fa3, #ff7a00);
  color: #fff;
  box-shadow: 0 14px 34px rgba(255, 79, 163, 0.22);
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: "";
  position: absolute;
  top: -40px;
  right: -40px;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.10);
}

.page-hero::after {
  content: "";
  position: absolute;
  bottom: -55px;
  right: 60px;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
}

.page-hero-icon {
  width: 72px;
  height: 72px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.16);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  flex-shrink: 0;
  backdrop-filter: blur(4px);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.18);
}

.page-hero-content {
  position: relative;
  z-index: 1;
}

.page-title {
  font-size: 30px;
  font-weight: 800;
  margin: 0 0 6px;
  color: #fff;
  letter-spacing: -0.3px;
}

.page-subtitle {
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.92);
}

@media (max-width: 640px) {
  .page-hero {
    padding: 18px;
    gap: 14px;
    border-radius: 18px;
    align-items: flex-start;
  }

  .page-hero-icon {
    width: 58px;
    height: 58px;
    border-radius: 16px;
    font-size: 24px;
  }

  .page-title {
    font-size: 24px;
  }

  .page-subtitle {
    font-size: 13px;
  }
}
.card-header .icon i,
.message-card-badge i,
.page-hero-icon i {
  line-height: 1;
}

.card-header .icon {
  font-size: 18px;
}

.message-card-badge {
  font-size: 16px;
}
.success-page {
  min-height: calc(100vh - 60px);
  display: flex;
  align-items: center;
  justify-content: center;
}

.success-card {
  width: 100%;
  max-width: 900px;
  background: #fff;
  border-radius: 28px;
  border: 1px solid #ececec;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  padding: 34px;
}

.success-top {
  text-align: center;
  margin-bottom: 30px;
}

.success-icon-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 18px;
}

.success-icon {
  width: 92px;
  height: 92px;
  border-radius: 28px;
  background: linear-gradient(135deg, #22c55e, #16a34a);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 38px;
  box-shadow: 0 18px 34px rgba(34, 197, 94, 0.22);
}

.success-title {
  font-size: 34px;
  font-weight: 800;
  color: #1d1d1d;
  margin-bottom: 10px;
}

.success-text {
  max-width: 620px;
  margin: 0 auto;
  font-size: 16px;
  line-height: 1.8;
  color: #666;
}

.success-info-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: 24px;
}

.success-info-box {
  background: linear-gradient(135deg, #fff7fb, #fffaf5);
  border: 1px solid #ffd7ea;
  border-radius: 18px;
  padding: 18px;
}

.success-info-label {
  display: block;
  font-size: 13px;
  color: #777;
  margin-bottom: 8px;
  font-weight: 600;
}

.success-info-value {
  display: block;
  font-size: 20px;
  color: #222;
  font-weight: 800;
}

.status-waiting {
  color: #ff7a00;
}

.success-message-box {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: #fffaf0;
  border: 1px solid #ffe0b8;
  border-radius: 18px;
  padding: 18px;
  margin-bottom: 26px;
}

.success-message-icon {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: rgba(255, 122, 0, 0.12);
  color: #ff7a00;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}

.success-message-content h3 {
  font-size: 18px;
  color: #222;
  margin-bottom: 6px;
}

.success-message-content p {
  font-size: 14px;
  color: #666;
  line-height: 1.7;
}

.success-steps {
  display: grid;
  gap: 14px;
  margin-bottom: 28px;
}

.success-step {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 16px 18px;
  border: 1px solid #eee;
  border-radius: 18px;
  background: #fafafa;
}

.step-badge {
  width: 48px;
  height: 48px;
  border-radius: 15px;
  background: linear-gradient(135deg, #ff4fa3, #ff7a00);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}

.step-content h4 {
  font-size: 16px;
  color: #222;
  margin-bottom: 4px;
}

.step-content p {
  font-size: 14px;
  color: #666;
  line-height: 1.7;
}

.success-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

.success-btn {
  min-height: 52px;
  padding: 0 22px;
  border-radius: 14px;
  text-decoration: none;
  font-size: 15px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: 0.25s ease;
}

.primary-btn {
  background: linear-gradient(135deg, #ff4fa3, #ff7a00);
  color: #fff;
  box-shadow: 0 10px 24px rgba(255, 79, 163, 0.22);
}

.primary-btn:hover {
  transform: translateY(-2px);
}

.secondary-btn {
  background: #fff;
  color: #333;
  border: 1px solid #e6e6e6;
}

.secondary-btn:hover {
  background: #fafafa;
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .success-card {
    padding: 22px 18px;
    border-radius: 22px;
  }

  .success-title {
    font-size: 26px;
  }

  .success-text {
    font-size: 15px;
  }

  .success-info-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .success-page {
    min-height: auto;
  }

  .success-actions {
    flex-direction: column;
  }

  .success-btn {
    width: 100%;
  }

  .success-icon {
    width: 78px;
    height: 78px;
    font-size: 30px;
    border-radius: 24px;
  }
}
.waiting-icon {
  background: linear-gradient(135deg, #f59e0b, #f97316);
  box-shadow: 0 18px 34px rgba(245, 158, 11, 0.24);
}

.status-pending {
  color: #f97316;
}

.payment-waiting-card {
  border: 1px solid #ffe1c2;
}

.payment-bank-box {
  background: linear-gradient(135deg, #fffaf3, #fffdf8);
  border: 1px solid #ffe1c2;
  border-radius: 20px;
  padding: 20px;
  margin-bottom: 24px;
}

.payment-bank-header {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 18px;
}

.payment-bank-icon {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  background: rgba(249, 115, 22, 0.12);
  color: #f97316;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}

.payment-bank-header h3 {
  font-size: 18px;
  color: #222;
  margin-bottom: 4px;
}

.payment-bank-header p {
  font-size: 14px;
  color: #666;
  line-height: 1.7;
}

.payment-bank-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.payment-bank-item {
  background: #fff;
  border: 1px solid #f3e5d4;
  border-radius: 16px;
  padding: 16px;
}

.payment-bank-item span {
  display: block;
  font-size: 13px;
  color: #777;
  margin-bottom: 8px;
  font-weight: 600;
}

.payment-bank-item strong {
  display: block;
  font-size: 18px;
  color: #222;
  font-weight: 800;
  word-break: break-word;
}

.full-width {
  grid-column: 1 / -1;
}

.payment-warning-box {
  background: #fff7ed;
  border-color: #fed7aa;
}

.payment-warning-icon {
  background: rgba(249, 115, 22, 0.12);
  color: #f97316;
}

.waiting-step-badge {
  background: linear-gradient(135deg, #f59e0b, #f97316);
}

.payment-primary-btn {
  background: linear-gradient(135deg, #f59e0b, #f97316);
  box-shadow: 0 10px 24px rgba(249, 115, 22, 0.24);
}

@media (max-width: 768px) {
  .payment-bank-grid {
    grid-template-columns: 1fr;
  }
}
/* TAMAMLANDI (YEŞİL) */
.step-completed {
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
}

.step-completed .step-badge {
  background: linear-gradient(135deg, #22c55e, #16a34a);
  box-shadow: 0 8px 18px rgba(34, 197, 94, 0.25);
}

/* AKTİF (TURUNCU) */
.step-active {
  background: #fff7ed;
  border: 1px solid #fed7aa;
}

.step-active .step-badge {
  background: linear-gradient(135deg, #f59e0b, #f97316);
  box-shadow: 0 8px 18px rgba(249, 115, 22, 0.25);
}

/* PASİF (GRİ) */
.step-pending {
  background: #f5f5f5;
  border: 1px solid #e5e5e5;
  opacity: 0.7;
}

.step-pending .step-badge {
  background: #d1d5db;
  color: #fff;
}

/* PASİF TEXT */
.step-pending h4,
.step-pending p {
  color: #888;
}
.step-completed:last-child .step-badge {
  background: linear-gradient(135deg, #16a34a, #15803d);
}

.step-completed:last-child {
  background: #ecfdf5;
  border-color: #86efac;
}
.tracking-box {
  background: linear-gradient(135deg, #f8fbff, #fdfcff);
  border: 1px solid #dbeafe;
  border-radius: 20px;
  padding: 20px;
  margin-bottom: 24px;
}

.tracking-box-header {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 16px;
}

.tracking-box-icon {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  background: rgba(59, 130, 246, 0.10);
  color: #2563eb;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}

.tracking-box-header h3 {
  font-size: 18px;
  color: #222;
  margin-bottom: 4px;
}

.tracking-box-header p {
  font-size: 14px;
  color: #666;
  line-height: 1.7;
}

.tracking-link-row {
  display: flex;
  gap: 10px;
  align-items: center;
}

.tracking-link-row input {
  flex: 1;
  height: 48px;
  border: 1px solid #dbeafe;
  border-radius: 14px;
  padding: 0 14px;
  font-size: 14px;
  background: #fff;
  color: #333;
  outline: none;
}

.whatsapp-btn {
  background: linear-gradient(135deg, #25d366, #16a34a);
  color: #fff;
  box-shadow: 0 10px 24px rgba(37, 211, 102, 0.24);
}

.whatsapp-btn:hover {
  transform: translateY(-2px);
}

@media (max-width: 640px) {
  .tracking-link-row {
    flex-direction: column;
  }

  .tracking-link-row input,
  .tracking-link-row .copy-btn {
    width: 100%;
  }

  .tracking-link-row .copy-btn {
    height: 48px;
  }
}
.customer-detail-box {
  background: linear-gradient(135deg, #fff7fb, #fffaf5);
  border: 1px solid #ffd7ea;
  border-radius: 20px;
  padding: 20px;
  margin-bottom: 24px;
}

.customer-detail-header {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 18px;
}

.customer-detail-icon {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  background: rgba(255, 79, 163, 0.10);
  color: #ff4fa3;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}

.customer-detail-header h3 {
  font-size: 18px;
  color: #222;
  margin-bottom: 4px;
}

.customer-detail-header p {
  font-size: 14px;
  color: #666;
  line-height: 1.7;
}

.customer-detail-content {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 18px;
  align-items: start;
}

.customer-photo-area img {
  width: 100%;
  max-width: 280px;
  border-radius: 16px;
  border: 1px solid #eee;
  background: #fff;
  display: block;
  object-fit: cover;
}

.customer-request-area {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 16px;
  padding: 16px;
}

.customer-request-area strong {
  display: block;
  font-size: 15px;
  color: #222;
  margin-bottom: 10px;
}

.customer-request-area p {
  font-size: 14px;
  color: #666;
  line-height: 1.8;
  white-space: pre-wrap;
  word-break: break-word;
}

@media (max-width: 768px) {
  .customer-detail-content {
    grid-template-columns: 1fr;
  }

  .customer-photo-area img {
    max-width: 100%;
  }
}