body {
      background: #f5f5f5;
    }

    /* Main Container */
    .order-wrapper {
      padding: 40px 0;
    }

    .order-card {
      background: #fff;
      border-radius: 12px;
      padding: 25px;
      box-shadow: 0 4px 14px rgba(0,0,0,0.08);
    }

    /* Order Header */
    .order-header {
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    .order-status {
      padding: 6px 12px;
      border-radius: 6px;
      font-weight: 600;
      font-size: 14px;
    }

    .status-green { background: #0a8f55; color: #fff; }
    .status-orange { background: #ff9800; color: #fff; }

    /* Product Box */
    .product-box {
      display: flex;
      gap: 15px;
      padding: 15px;
      border-radius: 10px;
      background: #fafafa;
      border: 1px solid #eee;
    }

    .product-img {
      width: 90px;
      height: 90px;
      border-radius: 8px;
      object-fit: cover;
    }

    /* TRACKING BAR */
    .tracking-container {
      margin-top: 30px;
    }

    .step {
      text-align: center;
      position: relative;
    }

    .step .circle {
      width: 34px;
      height: 34px;
      margin: auto;
      border-radius: 50%;
      background: #ddd;
      display: flex;
      justify-content: center;
      align-items: center;
      font-weight: 600;
      color: #555;
    }

    .step.active .circle {
      background: #0a8f55;
      color: #fff;
    }

    .step::after {
      content: "";
      position: absolute;
      width: 100%;
      height: 4px;
      background: #ddd;
      top: 16px;
      left: 50%;
      z-index: -1;
    }

    .step.active ~ .step::after {
      background: #ddd;
    }

    .step.active::after {
      background: #0a8f55;
    }

    .step:last-child::after {
      display: none;
    }

    /* TIMELINE */
    .timeline {
      border-left: 3px solid #0a8f55;
      padding-left: 20px;
      margin-top: 25px;
    }

    .timeline-item {
      margin-bottom: 20px;
    }

    .timeline-item h6 {
      font-weight: 600;
    }

    /* Buttons */
    .btn-main {
      background: #0a8f55;
      color: #fff;
      border-radius: 6px;
      padding: 10px 20px;
      border: none;
      font-weight: 600;
    }

    .btn-main:hover {
      background: #066b3f;
    }

    .btn-outline {
      border: 2px solid #0a8f55;
      border-radius: 6px;
      padding: 10px 20px;
      color: #0a8f55;
      background: transparent;
      font-weight: 600;
    }

    .btn-outline:hover {
      background: #0a8f55;
      color: #fff;
    }

    /* RESPONSIVE FIXES */
    @media (max-width: 576px) {
      .order-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
      }

      .product-box {
        flex-direction: column;
        text-align: center;
      }

      .product-img {
        margin: auto;
      }
    }