 .returns-header {
        text-align: center;
        margin-bottom: 40px;
      }
      
      .returns-header h1 {
        color: var(--primary);
        font-size: 2.5rem;
        margin-bottom: 10px;
      }
      
      .returns-info {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 20px;
        margin-bottom: 40px;
      }
      
      .info-card {
        background: var(--bg-card);
        padding: 20px;
        border-radius: 10px;
        text-align: center;
        box-shadow: var(--shadow);
      }
      
      .info-card i {
        font-size: 2.5rem;
        color: var(--primary);
        margin-bottom: 15px;
      }
      
      .info-card h3 {
        margin-bottom: 10px;
        color: var(--text-primary);
      }
      
      .returns-process {
        background: var(--gray-light);
        padding: 30px;
        border-radius: 10px;
        margin-bottom: 40px;
      }
      
      .process-steps {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 20px;
        margin-top: 20px;
      }
      
      .step {
        text-align: center;
        padding: 20px;
      }
      
      .step-number {
        display: inline-block;
        width: 40px;
        height: 40px;
        background: var(--primary);
        color: white;
        border-radius: 50%;
        line-height: 40px;
        font-weight: bold;
        margin-bottom: 15px;
      }
      
      .step h4 {
        margin-bottom: 10px;
        color: var(--text-primary);
      }
      
      .returns-orders {
        margin-top: 40px;
      }
      
      .order-card {
        background: var(--bg-card);
        border: 1px solid var(--border-color);
        border-radius: 10px;
        padding: 20px;
        margin-bottom: 20px;
        box-shadow: var(--shadow);
      }
      
      .order-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 15px;
      }
      
      .order-status {
        padding: 5px 15px;
        border-radius: 20px;
        font-size: 0.9rem;
        font-weight: 600;
      }
      
      .order-status.delivered {
        background: #4CAF50;
        color: white;
      }
      
      .order-items {
        border-top: 1px solid var(--border-color);
        border-bottom: 1px solid var(--border-color);
        padding: 15px 0;
        margin-bottom: 15px;
      }
      
      .order-item {
        display: flex;
        align-items: center;
        padding: 10px 0;
      }
      
      .btn-start-return {
        background: var(--primary);
        color: white;
        border: none;
        padding: 10px 20px;
        border-radius: 5px;
        cursor: pointer;
        font-weight: 600;
        transition: background 0.3s ease;
        width: 100%;
      }
      
      .btn-start-return:hover:not(:disabled) {
        background: var(--primary-dark);
      }
      
      .btn-start-return:disabled {
        background: var(--gray-light);
        color: var(--text-light);
        cursor: not-allowed;
      }
      
      .return-form {
        background: var(--bg-card);
        padding: 30px;
        border-radius: 10px;
        box-shadow: var(--shadow);
      }
      
      .form-section {
        margin-bottom: 25px;
      }
      
      .reason-options, .return-type {
        display: grid;
        gap: 10px;
      }
      
      .reason-option, .return-type-option {
        border: 1px solid var(--border-color);
        border-radius: 8px;
        padding: 15px;
        cursor: pointer;
        transition: all 0.3s ease;
      }
      
      .reason-option:hover, .return-type-option:hover {
        border-color: var(--primary);
        background: var(--gray-light);
      }
      
      .reason-option input[type="radio"]:checked ~ .reason-title,
      .return-type-option input[type="radio"]:checked ~ .type-title {
        color: var(--primary);
        font-weight: 600;
      }
      
      .form-actions {
        display: flex;
        gap: 15px;
        justify-content: flex-end;
        margin-top: 30px;
      }
      
      .btn-cancel, .btn-submit-return {
        padding: 12px 25px;
        border-radius: 5px;
        font-weight: 600;
        cursor: pointer;
        transition: all 0.3s ease;
      }
      
      .btn-cancel {
        background: var(--gray-light);
        color: var(--text-primary);
        border: 1px solid var(--border-color);
      }
      
      .btn-submit-return {
        background: var(--primary);
        color: white;
        border: none;
      }
      
      .btn-submit-return:hover {
        background: var(--primary-dark);
      }
      
      .return-status {
        padding: 15px;
        border-radius: 8px;
        margin: 20px 0;
        display: flex;
        align-items: center;
        gap: 10px;
      }
      
      .return-status.info {
        background: #e3f2fd;
        color: #1976d2;
        border: 1px solid #90caf9;
      }
      
      .return-status.success {
        background: #e8f5e9;
        color: #2e7d32;
        border: 1px solid #a5d6a7;
      }
      
      .selected-product {
        display: flex;
        align-items: center;
        gap: 20px;
        padding: 15px;
        background: var(--gray-light);
        border-radius: 8px;
      }
      
      .product-image {
        width: 60px;
        height: 60px;
        background: var(--primary);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        font-size: 1.5rem;
      }
      
      .no-orders {
        text-align: center;
        padding: 40px;
        color: var(--text-light);
      }
      
      .no-orders i {
        font-size: 3rem;
        margin-bottom: 15px;
        color: var(--border-color);
      }
      
      .custom-modal {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 9999;
        display: flex;
        align-items: center;
        justify-content: center;
      }
      
      .modal-overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0,0,0,0.5);
      }
      
      .modal-content {
        background: var(--bg-card);
        border-radius: 15px;
        padding: 30px;
        width: 90%;
        max-width: 500px;
        position: relative;
        z-index: 10000;
        box-shadow: 0 20px 60px rgba(0,0,0,0.3);
      }
      
      @media (max-width: 768px) {
        .returns-header h1 {
          font-size: 2rem;
        }
        
        .process-steps {
          grid-template-columns: 1fr;
        }
        
        .return-form {
          padding: 20px;
        }
        
        .form-actions {
          flex-direction: column;
        }
      }